From 5716aec7d3bbb1e9edc2c7fe5658fe7bb2de6789 Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Sun, 21 Mar 2021 18:53:59 +0100 Subject: [PATCH] hardware: restructure module --- .../euro-yesman-1u}/euro-yesman/.cargo/config | 0 .../euro-yesman-1u}/euro-yesman/.gitignore | 0 .../euro-yesman-1u}/euro-yesman/.projectile | 0 .../euro-yesman-1u}/euro-yesman/Cargo.lock | 0 .../euro-yesman-1u}/euro-yesman/Cargo.toml | 0 .../euro-yesman-1u}/euro-yesman/README.md | 0 .../breadlib.pretty/1B3W-9.kicad_mod | 0 .../breadlib.pretty/yesman-logo.kicad_mod | 0 .../board/yesman-board/fp-info-cache | 0 .../yesman-board/generated/yesman-board.net | 0 .../board/yesman-board/yesman-board-cache.lib | 0 .../board/yesman-board/yesman-board.kicad_pcb | 0 .../yesman-board/yesman-board.kicad_pcb-bak | 0 .../board/yesman-board/yesman-board.pro | 0 .../board/yesman-board/yesman-board.sch | 0 .../board/yesman-board/yesman-board.sch-bak | 0 .../euro-yesman-1u}/euro-yesman/logo.png | Bin .../euro-yesman-1u}/euro-yesman/memory.x | 0 .../euro-yesman-1u}/euro-yesman/openocd.cfg | 0 .../euro-yesman-1u}/euro-yesman/openocd.gdb | 0 .../euro-yesman/panel/solvespace-example.slvs | 0 .../euro-yesman/panel/switch.slvs | 919 +++- .../euro-yesman/panel/yesman_panel.scad | 0 .../euro-yesman-1u}/euro-yesman/pcb_logo.svg | 0 .../euro-yesman-1u}/euro-yesman/shell.nix | 0 .../euro-yesman-1u}/euro-yesman/src/main.rs | 0 .../euro-yesman-1u}/euro-yesman/src/seq.rs | 0 .../devices/euro-yesman-1u/panel/switch.slvs | 3907 +++++++++++++++++ 28 files changed, 4645 insertions(+), 181 deletions(-) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/.cargo/config (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/.gitignore (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/.projectile (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/Cargo.lock (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/Cargo.toml (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/README.md (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/breadlib.pretty/1B3W-9.kicad_mod (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/breadlib.pretty/yesman-logo.kicad_mod (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/fp-info-cache (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/generated/yesman-board.net (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/yesman-board-cache.lib (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/yesman-board.kicad_pcb (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/yesman-board.kicad_pcb-bak (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/yesman-board.pro (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/yesman-board.sch (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/board/yesman-board/yesman-board.sch-bak (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/logo.png (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/memory.x (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/openocd.cfg (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/openocd.gdb (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/panel/solvespace-example.slvs (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/panel/switch.slvs (56%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/panel/yesman_panel.scad (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/pcb_logo.svg (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/shell.nix (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/src/main.rs (100%) rename hardware/{ => devices/euro-yesman-1u}/euro-yesman/src/seq.rs (100%) create mode 100644 hardware/devices/euro-yesman-1u/panel/switch.slvs diff --git a/hardware/euro-yesman/.cargo/config b/hardware/devices/euro-yesman-1u/euro-yesman/.cargo/config similarity index 100% rename from hardware/euro-yesman/.cargo/config rename to hardware/devices/euro-yesman-1u/euro-yesman/.cargo/config diff --git a/hardware/euro-yesman/.gitignore b/hardware/devices/euro-yesman-1u/euro-yesman/.gitignore similarity index 100% rename from hardware/euro-yesman/.gitignore rename to hardware/devices/euro-yesman-1u/euro-yesman/.gitignore diff --git a/hardware/euro-yesman/.projectile b/hardware/devices/euro-yesman-1u/euro-yesman/.projectile similarity index 100% rename from hardware/euro-yesman/.projectile rename to hardware/devices/euro-yesman-1u/euro-yesman/.projectile diff --git a/hardware/euro-yesman/Cargo.lock b/hardware/devices/euro-yesman-1u/euro-yesman/Cargo.lock similarity index 100% rename from hardware/euro-yesman/Cargo.lock rename to hardware/devices/euro-yesman-1u/euro-yesman/Cargo.lock diff --git a/hardware/euro-yesman/Cargo.toml b/hardware/devices/euro-yesman-1u/euro-yesman/Cargo.toml similarity index 100% rename from hardware/euro-yesman/Cargo.toml rename to hardware/devices/euro-yesman-1u/euro-yesman/Cargo.toml diff --git a/hardware/euro-yesman/README.md b/hardware/devices/euro-yesman-1u/euro-yesman/README.md similarity index 100% rename from hardware/euro-yesman/README.md rename to hardware/devices/euro-yesman-1u/euro-yesman/README.md diff --git a/hardware/euro-yesman/board/yesman-board/breadlib.pretty/1B3W-9.kicad_mod b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/breadlib.pretty/1B3W-9.kicad_mod similarity index 100% rename from hardware/euro-yesman/board/yesman-board/breadlib.pretty/1B3W-9.kicad_mod rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/breadlib.pretty/1B3W-9.kicad_mod diff --git a/hardware/euro-yesman/board/yesman-board/breadlib.pretty/yesman-logo.kicad_mod b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/breadlib.pretty/yesman-logo.kicad_mod similarity index 100% rename from hardware/euro-yesman/board/yesman-board/breadlib.pretty/yesman-logo.kicad_mod rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/breadlib.pretty/yesman-logo.kicad_mod diff --git a/hardware/euro-yesman/board/yesman-board/fp-info-cache b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/fp-info-cache similarity index 100% rename from hardware/euro-yesman/board/yesman-board/fp-info-cache rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/fp-info-cache diff --git a/hardware/euro-yesman/board/yesman-board/generated/yesman-board.net b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/generated/yesman-board.net similarity index 100% rename from hardware/euro-yesman/board/yesman-board/generated/yesman-board.net rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/generated/yesman-board.net diff --git a/hardware/euro-yesman/board/yesman-board/yesman-board-cache.lib b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board-cache.lib similarity index 100% rename from hardware/euro-yesman/board/yesman-board/yesman-board-cache.lib rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board-cache.lib diff --git a/hardware/euro-yesman/board/yesman-board/yesman-board.kicad_pcb b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.kicad_pcb similarity index 100% rename from hardware/euro-yesman/board/yesman-board/yesman-board.kicad_pcb rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.kicad_pcb diff --git a/hardware/euro-yesman/board/yesman-board/yesman-board.kicad_pcb-bak b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.kicad_pcb-bak similarity index 100% rename from hardware/euro-yesman/board/yesman-board/yesman-board.kicad_pcb-bak rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.kicad_pcb-bak diff --git a/hardware/euro-yesman/board/yesman-board/yesman-board.pro b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.pro similarity index 100% rename from hardware/euro-yesman/board/yesman-board/yesman-board.pro rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.pro diff --git a/hardware/euro-yesman/board/yesman-board/yesman-board.sch b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.sch similarity index 100% rename from hardware/euro-yesman/board/yesman-board/yesman-board.sch rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.sch diff --git a/hardware/euro-yesman/board/yesman-board/yesman-board.sch-bak b/hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.sch-bak similarity index 100% rename from hardware/euro-yesman/board/yesman-board/yesman-board.sch-bak rename to hardware/devices/euro-yesman-1u/euro-yesman/board/yesman-board/yesman-board.sch-bak diff --git a/hardware/euro-yesman/logo.png b/hardware/devices/euro-yesman-1u/euro-yesman/logo.png similarity index 100% rename from hardware/euro-yesman/logo.png rename to hardware/devices/euro-yesman-1u/euro-yesman/logo.png diff --git a/hardware/euro-yesman/memory.x b/hardware/devices/euro-yesman-1u/euro-yesman/memory.x similarity index 100% rename from hardware/euro-yesman/memory.x rename to hardware/devices/euro-yesman-1u/euro-yesman/memory.x diff --git a/hardware/euro-yesman/openocd.cfg b/hardware/devices/euro-yesman-1u/euro-yesman/openocd.cfg similarity index 100% rename from hardware/euro-yesman/openocd.cfg rename to hardware/devices/euro-yesman-1u/euro-yesman/openocd.cfg diff --git a/hardware/euro-yesman/openocd.gdb b/hardware/devices/euro-yesman-1u/euro-yesman/openocd.gdb similarity index 100% rename from hardware/euro-yesman/openocd.gdb rename to hardware/devices/euro-yesman-1u/euro-yesman/openocd.gdb diff --git a/hardware/euro-yesman/panel/solvespace-example.slvs b/hardware/devices/euro-yesman-1u/euro-yesman/panel/solvespace-example.slvs similarity index 100% rename from hardware/euro-yesman/panel/solvespace-example.slvs rename to hardware/devices/euro-yesman-1u/euro-yesman/panel/solvespace-example.slvs diff --git a/hardware/euro-yesman/panel/switch.slvs b/hardware/devices/euro-yesman-1u/euro-yesman/panel/switch.slvs similarity index 56% rename from hardware/euro-yesman/panel/switch.slvs rename to hardware/devices/euro-yesman-1u/euro-yesman/panel/switch.slvs index f7220eddc78..0076f1ba93b 100644 --- a/hardware/euro-yesman/panel/switch.slvs +++ b/hardware/devices/euro-yesman-1u/euro-yesman/panel/switch.slvs @@ -14,6 +14,7 @@ Group.suppress=0 Group.relaxConstraints=0 Group.allowRedundant=0 Group.allDimsReference=0 +Group.scale=1.00000000000000000000 Group.remap={ } AddGroup @@ -36,6 +37,7 @@ Group.suppress=0 Group.relaxConstraints=0 Group.allowRedundant=0 Group.allDimsReference=0 +Group.scale=1.00000000000000000000 Group.remap={ } AddGroup @@ -116,11 +118,33 @@ Group.color=00646464 Group.subtype=6001 Group.skipFirst=0 Group.predef.origin.v=00060001 -Group.predef.entityB.v=80030011 -Group.predef.entityC.v=00050000 +Group.predef.entityB.v=00060000 +Group.predef.entityC.v=80030011 +Group.predef.swapUV=1 +Group.predef.negateU=1 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ +} +AddGroup + +Group.h.v=00000005 +Group.type=5100 +Group.order=4 +Group.name=extrude +Group.opA.v=00000004 +Group.color=00646464 +Group.subtype=7000 +Group.skipFirst=0 +Group.predef.entityB.v=80040000 Group.predef.swapUV=0 Group.predef.negateU=0 -Group.predef.negateV=1 +Group.predef.negateV=0 Group.visible=1 Group.suppress=0 Group.relaxConstraints=0 @@ -128,6 +152,51 @@ Group.allowRedundant=0 Group.allDimsReference=0 Group.scale=1.00000000000000000000 Group.remap={ + 1 00090000 1002 + 2 00090001 1002 + 3 00090002 1002 + 4 00090000 1001 + 5 00090001 1001 + 6 00090002 1001 + 7 00090000 1004 + 8 00090001 1003 + 9 00090002 1003 + 10 000a0000 1002 + 11 000a0001 1002 + 12 000a0002 1002 + 13 000a0000 1001 + 14 000a0001 1001 + 15 000a0002 1001 + 16 000a0000 1004 + 17 000a0001 1003 + 18 000a0002 1003 + 19 000b0000 1002 + 20 000b0001 1002 + 21 000b0002 1002 + 22 000b0000 1001 + 23 000b0001 1001 + 24 000b0002 1001 + 25 000b0000 1004 + 26 000b0001 1003 + 27 000b0002 1003 + 28 000c0000 1002 + 29 000c0001 1002 + 30 000c0002 1002 + 31 000c0000 1001 + 32 000c0001 1001 + 33 000c0002 1001 + 34 000c0000 1004 + 35 000c0001 1003 + 36 000c0002 1003 + 37 80040000 1002 + 38 80040000 1001 + 39 80040001 1002 + 40 80040002 1002 + 41 80040001 1001 + 42 80040002 1001 + 43 80040002 1003 + 44 00000000 1001 + 45 00000000 1002 } AddGroup @@ -260,93 +329,87 @@ Param.h.v.=00080014 AddParam Param.h.v.=00090010 -Param.val=0.20000000000000017764 +Param.val=2.25000000000000000000 AddParam Param.h.v.=00090011 -Param.val=-2.56548093457582826460 +Param.val=-5.25099264200706361549 AddParam Param.h.v.=00090013 -Param.val=0.20000000000000001110 +Param.val=2.25000000000000000000 AddParam Param.h.v.=00090014 +Param.val=-0.75099264200706350447 AddParam Param.h.v.=000a0010 -Param.val=-0.20000000000000017764 +Param.val=-2.25000000000000000000 AddParam Param.h.v.=000a0011 -Param.val=-2.56548093457582826460 +Param.val=-5.25099264200706361549 AddParam Param.h.v.=000a0013 -Param.val=0.20000000000000017764 +Param.val=2.25000000000000000000 AddParam Param.h.v.=000a0014 -Param.val=-2.56548093457582826460 +Param.val=-5.25099264200706361549 AddParam Param.h.v.=000b0010 -Param.val=-0.20000000000000001110 +Param.val=-2.25000000000000000000 AddParam Param.h.v.=000b0011 +Param.val=-0.75099264200706350447 AddParam Param.h.v.=000b0013 -Param.val=-0.20000000000000017764 +Param.val=-2.25000000000000000000 AddParam Param.h.v.=000b0014 -Param.val=-2.56548093457582826460 +Param.val=-5.25099264200706361549 AddParam Param.h.v.=000c0010 -Param.val=0.20000000000000001110 +Param.val=2.25000000000000000000 AddParam Param.h.v.=000c0011 +Param.val=-0.75099264200706350447 AddParam Param.h.v.=000c0013 -Param.val=-0.20000000000000001110 +Param.val=-2.25000000000000000000 AddParam Param.h.v.=000c0014 +Param.val=-0.75099264200706350447 AddParam -Param.h.v.=000d0010 -Param.val=-2.39684262700497052734 -AddParam - -Param.h.v.=000d0011 -Param.val=0.79634377723406579719 -AddParam - -Param.h.v.=000e0010 -Param.val=-3.46950471721135489389 +Param.h.v.=80030000 AddParam -Param.h.v.=000e0011 -Param.val=-2.11866144841779302510 +Param.h.v.=80030001 AddParam -Param.h.v.=40000015 -Param.val=0.46721311475409832425 +Param.h.v.=80030002 +Param.val=3.04999999999999982236 AddParam -Param.h.v.=80030000 +Param.h.v.=80050000 AddParam -Param.h.v.=80030001 +Param.h.v.=80050001 +Param.val=1.17500000000000004441 AddParam -Param.h.v.=80030002 -Param.val=3.04999999999999982236 +Param.h.v.=80050002 AddParam Request.h.v=00000001 @@ -423,20 +486,6 @@ Request.group.v=00000004 Request.construction=0 AddRequest -Request.h.v=0000000d -Request.type=101 -Request.workplane.v=80040000 -Request.group.v=00000004 -Request.construction=0 -AddRequest - -Request.h.v=0000000e -Request.type=101 -Request.workplane.v=80040000 -Request.group.v=00000004 -Request.construction=0 -AddRequest - Entity.h.v=00010000 Entity.type=10000 Entity.construction=0 @@ -622,9 +671,9 @@ Entity.h.v=00090001 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=0.00000000000000004441 -Entity.actPoint.y=2.28451906542417138013 -Entity.actPoint.z=0.20000000000000017764 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -632,9 +681,9 @@ Entity.h.v=00090002 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=0.00000000000000004441 +Entity.actPoint.x=0.75099264200706350447 Entity.actPoint.y=4.84999999999999964473 -Entity.actPoint.z=0.20000000000000001110 +Entity.actPoint.z=-2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -651,9 +700,9 @@ Entity.h.v=000a0001 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=-0.00000000000000004441 -Entity.actPoint.y=2.28451906542417138013 -Entity.actPoint.z=-0.20000000000000017764 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -661,9 +710,9 @@ Entity.h.v=000a0002 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=0.00000000000000004441 -Entity.actPoint.y=2.28451906542417138013 -Entity.actPoint.z=0.20000000000000017764 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -680,9 +729,9 @@ Entity.h.v=000b0001 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=-0.00000000000000004441 +Entity.actPoint.x=0.75099264200706350447 Entity.actPoint.y=4.84999999999999964473 -Entity.actPoint.z=-0.20000000000000001110 +Entity.actPoint.z=2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -690,9 +739,9 @@ Entity.h.v=000b0002 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=-0.00000000000000004441 -Entity.actPoint.y=2.28451906542417138013 -Entity.actPoint.z=-0.20000000000000017764 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -709,9 +758,9 @@ Entity.h.v=000c0001 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=0.00000000000000004441 +Entity.actPoint.x=0.75099264200706350447 Entity.actPoint.y=4.84999999999999964473 -Entity.actPoint.z=0.20000000000000001110 +Entity.actPoint.z=-2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -719,29 +768,9 @@ Entity.h.v=000c0002 Entity.type=2001 Entity.construction=0 Entity.workplane.v=80040000 -Entity.actPoint.x=-0.00000000000000004441 +Entity.actPoint.x=0.75099264200706350447 Entity.actPoint.y=4.84999999999999964473 -Entity.actPoint.z=-0.20000000000000001110 -Entity.actVisible=1 -AddEntity - -Entity.h.v=000d0000 -Entity.type=2001 -Entity.construction=0 -Entity.workplane.v=80040000 -Entity.actPoint.x=-0.00000000000000053221 -Entity.actPoint.y=5.64634377723406544192 -Entity.actPoint.z=-2.39684262700497052734 -Entity.actVisible=1 -AddEntity - -Entity.h.v=000e0000 -Entity.type=2001 -Entity.construction=0 -Entity.workplane.v=80040000 -Entity.actPoint.x=-0.00000000000000077038 -Entity.actPoint.y=2.73133855158220661963 -Entity.actPoint.z=-3.46950471721135489389 +Entity.actPoint.z=2.25000000000000000000 Entity.actVisible=1 AddEntity @@ -750,7 +779,7 @@ Entity.type=10000 Entity.construction=0 Entity.point[0].v=80020002 Entity.normal.v=80020001 -Entity.actVisible=1 +Entity.actVisible=0 AddEntity Entity.h.v=80020001 @@ -1116,15 +1145,17 @@ Entity.type=10000 Entity.construction=0 Entity.point[0].v=80040002 Entity.normal.v=80040001 -Entity.actVisible=1 +Entity.actVisible=0 AddEntity Entity.h.v=80040001 Entity.type=3010 Entity.construction=0 Entity.point[0].v=80040002 -Entity.actNormal.w=0.70710678118654757274 -Entity.actNormal.vy=-0.70710678118654746172 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=-0.50000000000000000000 +Entity.actNormal.vy=0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 Entity.actVisible=1 AddEntity @@ -1135,6 +1166,380 @@ Entity.actPoint.y=4.84999999999999964473 Entity.actVisible=1 AddEntity +Entity.h.v=80050001 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050002 +Entity.point[1].v=80050003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050002 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050003 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050004 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050005 +Entity.point[1].v=80050006 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050005 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050006 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050007 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vz=0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050008 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050005 +Entity.point[1].v=80050002 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050009 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050006 +Entity.point[1].v=80050003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000b +Entity.point[1].v=8005000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000b +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000c +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000d +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000e +Entity.point[1].v=8005000f +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000f +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050010 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vx=-0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050011 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000e +Entity.point[1].v=8005000b +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050012 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000f +Entity.point[1].v=8005000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050013 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050014 +Entity.point[1].v=80050015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050014 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050015 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050016 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050017 +Entity.point[1].v=80050018 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050017 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050018 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.25099264200706361549 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050019 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vz=-0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050017 +Entity.point[1].v=80050014 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001b +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050018 +Entity.point[1].v=80050015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001c +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005001d +Entity.point[1].v=8005001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001d +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001f +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050020 +Entity.point[1].v=80050021 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050020 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050021 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=7.19999999999999928946 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050022 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.75099264200706350447 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vx=0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050023 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050020 +Entity.point[1].v=8005001d +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050024 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050021 +Entity.point[1].v=8005001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050027 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=80050028 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=-0.50000000000000000000 +Entity.actNormal.vy=0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050028 +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.y=4.84999999999999964473 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050029 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=8005002a +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=-0.50000000000000000000 +Entity.actNormal.vy=0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002a +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.y=7.19999999999999928946 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002b +Entity.type=11000 +Entity.construction=1 +Entity.point[0].v=8005002a +Entity.point[1].v=80050028 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002c +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=8005002a +Entity.actPoint.y=7.19999999999999928946 +Entity.actNormal.vy=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002d +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=80050028 +Entity.actPoint.y=4.84999999999999964473 +Entity.actNormal.vy=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + Constraint.h.v=00000001 Constraint.type=20 Constraint.group.v=00000002 @@ -1316,68 +1721,64 @@ Constraint.other2=0 Constraint.reference=0 AddConstraint -Constraint.h.v=00000015 -Constraint.type=42 +Constraint.h.v=00000011 +Constraint.type=61 Constraint.group.v=00000004 Constraint.workplane.v=80040000 -Constraint.valP.v=40000015 Constraint.ptA.v=000c0001 -Constraint.entityA.v=80030011 +Constraint.ptB.v=000c0002 Constraint.other=0 Constraint.other2=0 Constraint.reference=0 AddConstraint -Constraint.h.v=00000017 +Constraint.h.v=00000012 Constraint.type=61 Constraint.group.v=00000004 Constraint.workplane.v=80040000 -Constraint.ptA.v=000c0001 -Constraint.ptB.v=000c0002 +Constraint.ptA.v=000a0002 +Constraint.ptB.v=000b0002 Constraint.other=0 Constraint.other2=0 Constraint.reference=0 AddConstraint -Constraint.h.v=00000018 -Constraint.type=61 +Constraint.h.v=00000013 +Constraint.type=121 Constraint.group.v=00000004 Constraint.workplane.v=80040000 -Constraint.ptA.v=000b0002 -Constraint.ptB.v=000a0002 +Constraint.entityA.v=000b0000 +Constraint.entityB.v=00090000 Constraint.other=0 Constraint.other2=0 Constraint.reference=0 AddConstraint -Constraint.h.v=00000019 +Constraint.h.v=00000014 Constraint.type=30 Constraint.group.v=00000004 Constraint.workplane.v=80040000 -Constraint.valA=0.20000000000000001110 -Constraint.ptA.v=000c0001 -Constraint.ptB.v=80040002 +Constraint.valA=4.50000000000000000000 +Constraint.ptA.v=000c0002 +Constraint.ptB.v=000b0002 Constraint.other=0 Constraint.other2=0 Constraint.reference=0 -Constraint.disp.offset.x=0.00000000000000008923 -Constraint.disp.offset.y=0.16900406813520285620 -Constraint.disp.offset.z=0.40187019023051367972 +Constraint.disp.offset.x=-0.03572256844525158181 +Constraint.disp.offset.z=1.55617283627907387888 AddConstraint -Constraint.h.v=0000001a -Constraint.type=120 -Constraint.group.v=00000004 -Constraint.workplane.v=80040000 -Constraint.valA=90.00000000000000000000 -Constraint.entityA.v=000a0000 -Constraint.entityB.v=00090000 -Constraint.other=1 +Constraint.h.v=00000015 +Constraint.type=30 +Constraint.group.v=00000005 +Constraint.valA=2.35000000000000008882 +Constraint.ptA.v=80050021 +Constraint.ptB.v=8005001e +Constraint.other=0 Constraint.other2=0 Constraint.reference=0 -Constraint.disp.offset.x=0.00620082124400686378 -Constraint.disp.offset.y=0.22942467068966440613 -Constraint.disp.offset.z=0.22322384944565717979 +Constraint.disp.offset.x=-0.56535174740652460734 +Constraint.disp.offset.z=-0.56535174740652505143 AddConstraint Surface 00000001 00646464 8003002d 1 1 @@ -1385,60 +1786,120 @@ SCtrl 0 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 SCtrl 0 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 -TrimBy 00000002 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 -TrimBy 0000000a 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 -TrimBy 00000003 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000004 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 0000000a 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 TrimBy 00000001 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 00000007 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 AddSurface Surface 00000002 00646464 8003002c 1 1 SCtrl 0 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 0 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -TrimBy 00000005 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -TrimBy 00000004 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -TrimBy 0000000b 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -TrimBy 00000007 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000008 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 0000000b 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000002 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 00000005 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 AddSurface Surface 00000003 00646464 80030022 1 1 SCtrl 0 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 0 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 -TrimBy 00000004 0 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 TrimBy 00000001 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 -TrimBy 00000006 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -TrimBy 00000008 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 00000002 0 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 00000003 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 0000000c 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 AddSurface Surface 00000004 00646464 80030019 1 1 SCtrl 0 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 0 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -TrimBy 0000000b 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -TrimBy 0000000a 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 -TrimBy 00000008 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -TrimBy 0000000c 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000004 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 00000005 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000006 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000003 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 AddSurface Surface 00000005 00646464 80030010 1 1 SCtrl 0 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 0 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -TrimBy 00000007 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -TrimBy 00000003 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 -TrimBy 0000000c 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000007 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000008 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 TrimBy 00000009 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000006 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 0000001c 0 5.25099264200706361549 4.84999999999999875655 -2.24999999999999955591 0.75099264200706361549 4.84999999999999964473 -2.25000000000000000000 +TrimBy 00000019 0 5.25099264200706272732 4.84999999999999964473 2.25000000000000177636 5.25099264200706361549 4.84999999999999875655 -2.24999999999999955591 +TrimBy 0000001a 0 0.75099264200706361549 4.84999999999999964473 2.25000000000000177636 5.25099264200706272732 4.84999999999999964473 2.25000000000000177636 +TrimBy 0000001b 0 0.75099264200706361549 4.84999999999999964473 -2.25000000000000000000 0.75099264200706361549 4.84999999999999964473 2.25000000000000177636 AddSurface Surface 00000006 00646464 80030007 1 1 SCtrl 0 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 0 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 SCtrl 1 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 -TrimBy 00000005 0 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -TrimBy 00000002 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 0000000a 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 0000000b 0 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 0000000c 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 TrimBy 00000009 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -TrimBy 00000006 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +AddSurface +Surface 00000007 00646464 8005002c 1 1 +SCtrl 0 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.75099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 0.75099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000016 0 0.75099264200706361549 7.19999999999999928946 -2.25000000000000000000 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 +TrimBy 00000010 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 0.75099264200706361549 7.19999999999999928946 2.25000000000000000000 +TrimBy 00000013 0 0.75099264200706361549 7.19999999999999928946 2.25000000000000000000 0.75099264200706361549 7.19999999999999928946 -2.25000000000000000000 +TrimBy 0000000d 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 +AddSurface +Surface 00000008 00646464 8005002d 1 1 +SCtrl 0 0 0.75099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.75099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +AddSurface +Surface 00000009 00646464 80050010 1 1 +SCtrl 0 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 0000000f 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 +TrimBy 0000000d 1 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 +TrimBy 00000018 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 +TrimBy 0000000e 0 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +AddSurface +Surface 0000000a 00646464 80050019 1 1 +SCtrl 0 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000012 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 +TrimBy 00000010 1 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 +TrimBy 0000000f 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +TrimBy 00000011 0 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +AddSurface +Surface 0000000b 00646464 80050022 1 1 +SCtrl 0 0 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000015 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 +TrimBy 00000013 1 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 +TrimBy 00000012 0 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +TrimBy 00000014 0 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +AddSurface +Surface 0000000c 00646464 80050007 1 1 +SCtrl 0 0 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000018 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 +TrimBy 00000016 1 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 +TrimBy 00000015 0 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +TrimBy 00000017 0 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 AddSurface Curve 00000001 1 1 00000001 00000003 CCtrl 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 @@ -1446,69 +1907,165 @@ CCtrl 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 We CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 CurvePt 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 AddCurve -Curve 00000002 1 1 00000001 00000006 -CCtrl 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 -CCtrl 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 -CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 -CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 -AddCurve -Curve 00000003 1 1 00000001 00000005 -CCtrl 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 -CCtrl 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 -CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 -CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 -AddCurve -Curve 00000004 1 1 00000002 00000003 +Curve 00000002 1 1 00000002 00000003 CCtrl 0 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 CCtrl 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 CurvePt 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 AddCurve -Curve 00000005 1 1 00000002 00000006 -CCtrl 0 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -CCtrl 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 -CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -AddCurve -Curve 00000006 1 1 00000006 00000003 -CCtrl 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 -CCtrl 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 -CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 -CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 -AddCurve -Curve 00000007 1 1 00000002 00000005 -CCtrl 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -CCtrl 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -AddCurve -Curve 00000008 1 1 00000003 00000004 +Curve 00000003 1 1 00000003 00000004 CCtrl 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 CCtrl 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 CurvePt 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 CurvePt 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 AddCurve -Curve 00000009 1 1 00000005 00000006 -CCtrl 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 -CCtrl 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 -CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 -CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 -AddCurve -Curve 0000000a 1 1 00000001 00000004 +Curve 00000004 1 1 00000001 00000004 CCtrl 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 CCtrl 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 CurvePt 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 AddCurve -Curve 0000000b 1 1 00000002 00000004 +Curve 00000005 1 1 00000002 00000004 CCtrl 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 CCtrl 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 CurvePt 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 AddCurve -Curve 0000000c 1 1 00000004 00000005 +Curve 00000006 1 1 00000004 00000005 CCtrl 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 CCtrl 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 AddCurve +Curve 00000007 1 1 00000001 00000005 +CCtrl 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +AddCurve +Curve 00000008 1 1 00000002 00000005 +CCtrl 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +AddCurve +Curve 00000009 1 1 00000005 00000006 +CCtrl 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +AddCurve +Curve 0000000a 1 1 00000001 00000006 +CCtrl 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +AddCurve +Curve 0000000b 1 1 00000002 00000006 +CCtrl 0 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddCurve +Curve 0000000c 1 1 00000006 00000003 +CCtrl 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddCurve +Curve 0000000d 1 1 00000007 00000009 +CCtrl 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 +CurvePt 1 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 +AddCurve +Curve 0000000e 1 1 00000008 00000009 +CCtrl 0 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +AddCurve +Curve 0000000f 1 1 00000009 0000000a +CCtrl 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +AddCurve +Curve 00000010 1 1 00000007 0000000a +CCtrl 0 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 7.19999999999999928946 2.25000000000000000000 +CurvePt 1 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 +AddCurve +Curve 00000011 1 1 00000008 0000000a +CCtrl 0 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +AddCurve +Curve 00000012 1 1 0000000a 0000000b +CCtrl 0 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +AddCurve +Curve 00000013 1 1 00000007 0000000b +CCtrl 0 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 7.19999999999999928946 2.25000000000000000000 +CurvePt 1 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 +AddCurve +Curve 00000014 1 1 00000008 0000000b +CCtrl 0 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +AddCurve +Curve 00000015 1 1 0000000b 0000000c +CCtrl 0 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +AddCurve +Curve 00000016 1 1 00000007 0000000c +CCtrl 0 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 7.19999999999999928946 -2.25000000000000000000 +CurvePt 1 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 +AddCurve +Curve 00000017 1 1 00000008 0000000c +CCtrl 0 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 +AddCurve +Curve 00000018 1 1 0000000c 00000009 +CCtrl 0 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 7.19999999999999928946 -2.25000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 +AddCurve +Curve 00000019 1 1 00000005 00000009 +CCtrl 0 5.25099264200706361549 4.84999999999999875655 2.25000000000000133227 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706361549 4.84999999999999875655 -2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 +AddCurve +Curve 0000001a 1 1 00000005 0000000a +CCtrl 0 0.75099264200706195016 4.84999999999999875655 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.25099264200706183914 4.84999999999999875655 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 2.25000000000000000000 +AddCurve +Curve 0000001b 1 1 00000005 0000000b +CCtrl 0 0.75099264200706350447 4.84999999999999875655 -2.25000000000000133227 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706350447 4.84999999999999875655 2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 2.25000000000000000000 +AddCurve +Curve 0000001c 1 1 00000005 0000000c +CCtrl 0 5.25099264200706361549 4.84999999999999875655 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.75099264200706328243 4.84999999999999875655 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.25099264200706361549 4.84999999999999964473 -2.25000000000000000000 +CurvePt 1 0.75099264200706350447 4.84999999999999964473 -2.25000000000000000000 +AddCurve diff --git a/hardware/euro-yesman/panel/yesman_panel.scad b/hardware/devices/euro-yesman-1u/euro-yesman/panel/yesman_panel.scad similarity index 100% rename from hardware/euro-yesman/panel/yesman_panel.scad rename to hardware/devices/euro-yesman-1u/euro-yesman/panel/yesman_panel.scad diff --git a/hardware/euro-yesman/pcb_logo.svg b/hardware/devices/euro-yesman-1u/euro-yesman/pcb_logo.svg similarity index 100% rename from hardware/euro-yesman/pcb_logo.svg rename to hardware/devices/euro-yesman-1u/euro-yesman/pcb_logo.svg diff --git a/hardware/euro-yesman/shell.nix b/hardware/devices/euro-yesman-1u/euro-yesman/shell.nix similarity index 100% rename from hardware/euro-yesman/shell.nix rename to hardware/devices/euro-yesman-1u/euro-yesman/shell.nix diff --git a/hardware/euro-yesman/src/main.rs b/hardware/devices/euro-yesman-1u/euro-yesman/src/main.rs similarity index 100% rename from hardware/euro-yesman/src/main.rs rename to hardware/devices/euro-yesman-1u/euro-yesman/src/main.rs diff --git a/hardware/euro-yesman/src/seq.rs b/hardware/devices/euro-yesman-1u/euro-yesman/src/seq.rs similarity index 100% rename from hardware/euro-yesman/src/seq.rs rename to hardware/devices/euro-yesman-1u/euro-yesman/src/seq.rs diff --git a/hardware/devices/euro-yesman-1u/panel/switch.slvs b/hardware/devices/euro-yesman-1u/panel/switch.slvs new file mode 100644 index 00000000000..7634d8c229b --- /dev/null +++ b/hardware/devices/euro-yesman-1u/panel/switch.slvs @@ -0,0 +1,3907 @@ +±²³SolveSpaceREVa + + +Group.h.v=00000001 +Group.type=5000 +Group.name=#references +Group.color=ff000000 +Group.skipFirst=0 +Group.predef.swapUV=0 +Group.predef.negateU=0 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ +} +AddGroup + +Group.h.v=00000002 +Group.type=5001 +Group.order=1 +Group.name=sketch-in-plane +Group.activeWorkplane.v=80020000 +Group.color=ff000000 +Group.subtype=6000 +Group.skipFirst=0 +Group.predef.q.w=1.00000000000000000000 +Group.predef.origin.v=00010001 +Group.predef.swapUV=0 +Group.predef.negateU=0 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ +} +AddGroup + +Group.h.v=00000003 +Group.type=5100 +Group.order=2 +Group.name=extrude +Group.opA.v=00000002 +Group.color=00646464 +Group.subtype=7001 +Group.skipFirst=0 +Group.predef.entityB.v=80020000 +Group.predef.swapUV=0 +Group.predef.negateU=0 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ + 1 00050000 1002 + 2 00050001 1002 + 3 00050002 1002 + 4 00050000 1001 + 5 00050001 1001 + 6 00050002 1001 + 7 00050000 1004 + 8 00050001 1003 + 9 00050002 1003 + 10 00060000 1002 + 11 00060001 1002 + 12 00060002 1002 + 13 00060000 1001 + 14 00060001 1001 + 15 00060002 1001 + 16 00060000 1004 + 17 00060001 1003 + 18 00060002 1003 + 19 00070000 1002 + 20 00070001 1002 + 21 00070002 1002 + 22 00070000 1001 + 23 00070001 1001 + 24 00070002 1001 + 25 00070000 1004 + 26 00070001 1003 + 27 00070002 1003 + 28 00080000 1002 + 29 00080001 1002 + 30 00080002 1002 + 31 00080000 1001 + 32 00080001 1001 + 33 00080002 1001 + 34 00080000 1004 + 35 00080001 1003 + 36 00080002 1003 + 37 80020000 1002 + 38 80020000 1001 + 39 80020001 1002 + 40 80020002 1002 + 41 80020001 1001 + 42 80020002 1001 + 43 80020002 1003 + 44 00000000 1001 + 45 00000000 1002 +} +AddGroup + +Group.h.v=00000004 +Group.type=5001 +Group.order=3 +Group.name=sketch-in-plane +Group.activeWorkplane.v=80040000 +Group.color=00646464 +Group.subtype=6001 +Group.skipFirst=0 +Group.predef.origin.v=80020002 +Group.predef.entityB.v=80030024 +Group.predef.entityC.v=00080000 +Group.predef.swapUV=0 +Group.predef.negateU=0 +Group.predef.negateV=1 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ +} +AddGroup + +Group.h.v=00000005 +Group.type=5100 +Group.order=4 +Group.name=extrude +Group.opA.v=00000004 +Group.color=00646464 +Group.subtype=7000 +Group.skipFirst=0 +Group.predef.entityB.v=80040000 +Group.predef.swapUV=0 +Group.predef.negateU=0 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ + 1 00090000 1002 + 2 00090001 1002 + 3 00090002 1002 + 4 00090000 1001 + 5 00090001 1001 + 6 00090002 1001 + 7 00090000 1004 + 8 00090001 1003 + 9 00090002 1003 + 10 000a0000 1002 + 11 000a0001 1002 + 12 000a0002 1002 + 13 000a0000 1001 + 14 000a0001 1001 + 15 000a0002 1001 + 16 000a0000 1004 + 17 000a0001 1003 + 18 000a0002 1003 + 19 000b0000 1002 + 20 000b0001 1002 + 21 000b0002 1002 + 22 000b0000 1001 + 23 000b0001 1001 + 24 000b0002 1001 + 25 000b0000 1004 + 26 000b0001 1003 + 27 000b0002 1003 + 28 000c0000 1002 + 29 000c0001 1002 + 30 000c0002 1002 + 31 000c0000 1001 + 32 000c0001 1001 + 33 000c0002 1001 + 34 000c0000 1004 + 35 000c0001 1003 + 36 000c0002 1003 + 37 80040000 1002 + 38 80040000 1001 + 39 80040001 1002 + 40 80040002 1002 + 41 80040001 1001 + 42 80040002 1001 + 43 80040002 1003 + 44 00000000 1001 + 45 00000000 1002 +} +AddGroup + +Group.h.v=00000006 +Group.type=5001 +Group.order=5 +Group.name=sketch-in-plane +Group.activeWorkplane.v=80060000 +Group.color=00646464 +Group.subtype=6001 +Group.skipFirst=0 +Group.predef.origin.v=80050021 +Group.predef.entityB.v=80050016 +Group.predef.entityC.v=8005001f +Group.predef.swapUV=1 +Group.predef.negateU=0 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ +} +AddGroup + +Group.h.v=00000007 +Group.type=5100 +Group.order=6 +Group.name=extrude +Group.opA.v=00000006 +Group.color=00646464 +Group.subtype=7000 +Group.skipFirst=0 +Group.predef.entityB.v=80060000 +Group.predef.swapUV=0 +Group.predef.negateU=0 +Group.predef.negateV=0 +Group.visible=1 +Group.suppress=0 +Group.relaxConstraints=0 +Group.allowRedundant=0 +Group.allDimsReference=0 +Group.scale=1.00000000000000000000 +Group.remap={ + 1 000e0000 1002 + 2 000e0001 1002 + 3 000e0002 1002 + 4 000e0000 1001 + 5 000e0001 1001 + 6 000e0002 1001 + 7 000e0000 1004 + 8 000e0001 1003 + 9 000e0002 1003 + 10 000f0000 1002 + 11 000f0001 1002 + 12 000f0002 1002 + 13 000f0000 1001 + 14 000f0001 1001 + 15 000f0002 1001 + 16 000f0000 1004 + 17 000f0001 1003 + 18 000f0002 1003 + 19 00100000 1002 + 20 00100001 1002 + 21 00100002 1002 + 22 00100000 1001 + 23 00100001 1001 + 24 00100002 1001 + 25 00100000 1004 + 26 00100001 1003 + 27 00100002 1003 + 28 00110000 1002 + 29 00110001 1002 + 30 00110002 1002 + 31 00110000 1001 + 32 00110001 1001 + 33 00110002 1001 + 34 00110000 1004 + 35 00110001 1003 + 36 00110002 1003 + 37 00120000 1002 + 38 00120001 1002 + 39 00120002 1002 + 40 00120000 1001 + 41 00120001 1001 + 42 00120002 1001 + 43 00120000 1004 + 44 00120001 1003 + 45 00120002 1003 + 46 00130000 1002 + 47 00130001 1002 + 48 00130002 1002 + 49 00130000 1001 + 50 00130001 1001 + 51 00130002 1001 + 52 00130000 1004 + 53 00130001 1003 + 54 00130002 1003 + 55 00140000 1002 + 56 00140001 1002 + 57 00140002 1002 + 58 00140000 1001 + 59 00140001 1001 + 60 00140002 1001 + 61 00140000 1004 + 62 00140001 1003 + 63 00140002 1003 + 64 00150000 1002 + 65 00150001 1002 + 66 00150002 1002 + 67 00150000 1001 + 68 00150001 1001 + 69 00150002 1001 + 70 00150000 1004 + 71 00150001 1003 + 72 00150002 1003 + 73 80060000 1002 + 74 80060000 1001 + 75 80060001 1002 + 76 80060002 1002 + 77 80060001 1001 + 78 80060002 1001 + 79 80060002 1003 + 80 00000000 1001 + 81 00000000 1002 +} +AddGroup + +Param.h.v.=00010010 +AddParam + +Param.h.v.=00010011 +AddParam + +Param.h.v.=00010012 +AddParam + +Param.h.v.=00010020 +Param.val=1.00000000000000000000 +AddParam + +Param.h.v.=00010021 +AddParam + +Param.h.v.=00010022 +AddParam + +Param.h.v.=00010023 +AddParam + +Param.h.v.=00020010 +AddParam + +Param.h.v.=00020011 +AddParam + +Param.h.v.=00020012 +AddParam + +Param.h.v.=00020020 +Param.val=0.50000000000000000000 +AddParam + +Param.h.v.=00020021 +Param.val=0.50000000000000000000 +AddParam + +Param.h.v.=00020022 +Param.val=0.50000000000000000000 +AddParam + +Param.h.v.=00020023 +Param.val=0.50000000000000000000 +AddParam + +Param.h.v.=00030010 +AddParam + +Param.h.v.=00030011 +AddParam + +Param.h.v.=00030012 +AddParam + +Param.h.v.=00030020 +Param.val=0.50000000000000000000 +AddParam + +Param.h.v.=00030021 +Param.val=-0.50000000000000000000 +AddParam + +Param.h.v.=00030022 +Param.val=-0.50000000000000000000 +AddParam + +Param.h.v.=00030023 +Param.val=-0.50000000000000000000 +AddParam + +Param.h.v.=00050010 +AddParam + +Param.h.v.=00050011 +AddParam + +Param.h.v.=00050013 +AddParam + +Param.h.v.=00050014 +Param.val=4.84999999999999964473 +AddParam + +Param.h.v.=00060010 +AddParam + +Param.h.v.=00060011 +Param.val=4.84999999999999964473 +AddParam + +Param.h.v.=00060013 +Param.val=6.00000000000000000000 +AddParam + +Param.h.v.=00060014 +Param.val=4.84999999999999964473 +AddParam + +Param.h.v.=00070010 +Param.val=6.00000000000000000000 +AddParam + +Param.h.v.=00070011 +Param.val=4.84999999999999964473 +AddParam + +Param.h.v.=00070013 +Param.val=6.00000000000000000000 +AddParam + +Param.h.v.=00070014 +AddParam + +Param.h.v.=00080010 +Param.val=6.00000000000000000000 +AddParam + +Param.h.v.=00080011 +AddParam + +Param.h.v.=00080013 +AddParam + +Param.h.v.=00080014 +AddParam + +Param.h.v.=00090010 +Param.val=2.25000000000000000000 +AddParam + +Param.h.v.=00090011 +Param.val=-5.28220275066850142309 +AddParam + +Param.h.v.=00090013 +Param.val=2.25000000000000000000 +AddParam + +Param.h.v.=00090014 +Param.val=-0.78220275066850131207 +AddParam + +Param.h.v.=000a0010 +Param.val=-2.25000000000000000000 +AddParam + +Param.h.v.=000a0011 +Param.val=-5.28220275066850142309 +AddParam + +Param.h.v.=000a0013 +Param.val=2.25000000000000000000 +AddParam + +Param.h.v.=000a0014 +Param.val=-5.28220275066850142309 +AddParam + +Param.h.v.=000b0010 +Param.val=-2.25000000000000000000 +AddParam + +Param.h.v.=000b0011 +Param.val=-0.78220275066850131207 +AddParam + +Param.h.v.=000b0013 +Param.val=-2.25000000000000000000 +AddParam + +Param.h.v.=000b0014 +Param.val=-5.28220275066850142309 +AddParam + +Param.h.v.=000c0010 +Param.val=2.25000000000000000000 +AddParam + +Param.h.v.=000c0011 +Param.val=-0.78220275066850131207 +AddParam + +Param.h.v.=000c0013 +Param.val=-2.25000000000000000000 +AddParam + +Param.h.v.=000c0014 +Param.val=-0.78220275066850131207 +AddParam + +Param.h.v.=000d0010 +Param.val=2.95120247974813398883 +AddParam + +Param.h.v.=000d0011 +Param.val=-2.35000000000000008882 +AddParam + +Param.h.v.=000d0012 +Param.val=2.25000000000000000000 +AddParam + +Param.h.v.=000d0013 +Param.val=2.96334818058595983459 +AddParam + +Param.h.v.=000d0014 +Param.val=-2.35000000000000008882 +AddParam + +Param.h.v.=000d0015 +Param.val=-2.25000000000000000000 +AddParam + +Param.h.v.=000e0010 +AddParam + +Param.h.v.=000e0011 +AddParam + +Param.h.v.=000e0013 +AddParam + +Param.h.v.=000e0014 +Param.val=0.59999993203976487166 +AddParam + +Param.h.v.=000f0010 +AddParam + +Param.h.v.=000f0011 +Param.val=0.59999993203976487166 +AddParam + +Param.h.v.=000f0013 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=000f0014 +Param.val=0.59999993203976487166 +AddParam + +Param.h.v.=00100010 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00100011 +Param.val=0.59999993203976487166 +AddParam + +Param.h.v.=00100013 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00100014 +AddParam + +Param.h.v.=00110010 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00110011 +AddParam + +Param.h.v.=00110013 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00110014 +Param.val=-4.50000000000000000000 +AddParam + +Param.h.v.=00120010 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00120011 +Param.val=-4.50000000000000000000 +AddParam + +Param.h.v.=00120013 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00120014 +Param.val=-5.09999993203976487166 +AddParam + +Param.h.v.=00130010 +Param.val=4.50000000000000000000 +AddParam + +Param.h.v.=00130011 +Param.val=-5.09999993203976487166 +AddParam + +Param.h.v.=00130013 +Param.val=-0.00124478646764489167 +AddParam + +Param.h.v.=00130014 +Param.val=-5.09999993203976487166 +AddParam + +Param.h.v.=00140010 +Param.val=-0.00124478646764489167 +AddParam + +Param.h.v.=00140011 +Param.val=-5.09999993203976487166 +AddParam + +Param.h.v.=00140013 +AddParam + +Param.h.v.=00140014 +Param.val=-4.50000000000000000000 +AddParam + +Param.h.v.=00150010 +AddParam + +Param.h.v.=00150011 +Param.val=-4.50000000000000000000 +AddParam + +Param.h.v.=00150013 +AddParam + +Param.h.v.=00150014 +AddParam + +Param.h.v.=4000001b +Param.val=0.51800006020452604716 +AddParam + +Param.h.v.=4000001c +Param.val=0.48469898442610193090 +AddParam + +Param.h.v.=80030000 +AddParam + +Param.h.v.=80030001 +AddParam + +Param.h.v.=80030002 +Param.val=3.04999999999999982236 +AddParam + +Param.h.v.=80050000 +Param.val=0.00000000000000000000 +AddParam + +Param.h.v.=80050001 +Param.val=-1.17500000000000004441 +AddParam + +Param.h.v.=80050002 +AddParam + +Param.h.v.=80070000 +AddParam + +Param.h.v.=80070001 +Param.val=-0.50000000000000000000 +AddParam + +Param.h.v.=80070002 +AddParam + +Request.h.v=00000001 +Request.type=100 +Request.group.v=00000001 +Request.construction=0 +AddRequest + +Request.h.v=00000002 +Request.type=100 +Request.group.v=00000001 +Request.construction=0 +AddRequest + +Request.h.v=00000003 +Request.type=100 +Request.group.v=00000001 +Request.construction=0 +AddRequest + +Request.h.v=00000005 +Request.type=200 +Request.workplane.v=80020000 +Request.group.v=00000002 +Request.construction=0 +AddRequest + +Request.h.v=00000006 +Request.type=200 +Request.workplane.v=80020000 +Request.group.v=00000002 +Request.construction=0 +AddRequest + +Request.h.v=00000007 +Request.type=200 +Request.workplane.v=80020000 +Request.group.v=00000002 +Request.construction=0 +AddRequest + +Request.h.v=00000008 +Request.type=200 +Request.workplane.v=80020000 +Request.group.v=00000002 +Request.construction=0 +AddRequest + +Request.h.v=00000009 +Request.type=200 +Request.workplane.v=80040000 +Request.group.v=00000004 +Request.construction=0 +AddRequest + +Request.h.v=0000000a +Request.type=200 +Request.workplane.v=80040000 +Request.group.v=00000004 +Request.construction=0 +AddRequest + +Request.h.v=0000000b +Request.type=200 +Request.workplane.v=80040000 +Request.group.v=00000004 +Request.construction=0 +AddRequest + +Request.h.v=0000000c +Request.type=200 +Request.workplane.v=80040000 +Request.group.v=00000004 +Request.construction=0 +AddRequest + +Request.h.v=0000000d +Request.type=200 +Request.group.v=00000005 +Request.construction=0 +AddRequest + +Request.h.v=0000000e +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=0000000f +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=00000010 +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=00000011 +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=00000012 +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=00000013 +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=00000014 +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Request.h.v=00000015 +Request.type=200 +Request.workplane.v=80060000 +Request.group.v=00000006 +Request.construction=0 +AddRequest + +Entity.h.v=00010000 +Entity.type=10000 +Entity.construction=0 +Entity.point[0].v=00010001 +Entity.normal.v=00010020 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00010001 +Entity.type=2000 +Entity.construction=1 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00010020 +Entity.type=3000 +Entity.construction=0 +Entity.point[0].v=00010001 +Entity.actNormal.w=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00020000 +Entity.type=10000 +Entity.construction=0 +Entity.point[0].v=00020001 +Entity.normal.v=00020020 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00020001 +Entity.type=2000 +Entity.construction=1 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00020020 +Entity.type=3000 +Entity.construction=0 +Entity.point[0].v=00020001 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00030000 +Entity.type=10000 +Entity.construction=0 +Entity.point[0].v=00030001 +Entity.normal.v=00030020 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00030001 +Entity.type=2000 +Entity.construction=1 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00030020 +Entity.type=3000 +Entity.construction=0 +Entity.point[0].v=00030001 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=-0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=-0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00050000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00050001 +Entity.point[1].v=00050002 +Entity.workplane.v=80020000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00050001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00050002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00060000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00060001 +Entity.point[1].v=00060002 +Entity.workplane.v=80020000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00060001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00060002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00070000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00070001 +Entity.point[1].v=00070002 +Entity.workplane.v=80020000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00070001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00070002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actPoint.x=6.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00080000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00080001 +Entity.point[1].v=00080002 +Entity.workplane.v=80020000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00080001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actPoint.x=6.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00080002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80020000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00090000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00090001 +Entity.point[1].v=00090002 +Entity.workplane.v=80040000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00090001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00090002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000a0000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=000a0001 +Entity.point[1].v=000a0002 +Entity.workplane.v=80040000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000a0001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000a0002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000b0000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=000b0001 +Entity.point[1].v=000b0002 +Entity.workplane.v=80040000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000b0001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000b0002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000c0000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=000c0001 +Entity.point[1].v=000c0002 +Entity.workplane.v=80040000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000c0001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000c0002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80040000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000d0000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=000d0001 +Entity.point[1].v=000d0002 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000d0001 +Entity.type=2000 +Entity.construction=0 +Entity.actPoint.x=2.95120247974813398883 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000d0002 +Entity.type=2000 +Entity.construction=0 +Entity.actPoint.x=2.96334818058595983459 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000e0000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=000e0001 +Entity.point[1].v=000e0002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000e0001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000e0002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000f0000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=000f0001 +Entity.point[1].v=000f0002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000f0001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=000f0002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00100000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00100001 +Entity.point[1].v=00100002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00100001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00100002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00110000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00110001 +Entity.point[1].v=00110002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00110001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00110002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00120000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00120001 +Entity.point[1].v=00120002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00120001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00120002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00130000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00130001 +Entity.point[1].v=00130002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00130001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00130002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00140000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00140001 +Entity.point[1].v=00140002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00140001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00140002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00150000 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=00150001 +Entity.point[1].v=00150002 +Entity.workplane.v=80060000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00150001 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=00150002 +Entity.type=2001 +Entity.construction=0 +Entity.workplane.v=80060000 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80020000 +Entity.type=10000 +Entity.construction=0 +Entity.point[0].v=80020002 +Entity.normal.v=80020001 +Entity.actVisible=0 +AddEntity + +Entity.h.v=80020001 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=80020002 +Entity.actNormal.w=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80020002 +Entity.type=2012 +Entity.construction=1 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030001 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030002 +Entity.point[1].v=80030003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030002 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030003 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030004 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030005 +Entity.point[1].v=80030006 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030005 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030006 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030007 +Entity.type=5001 +Entity.construction=0 +Entity.actNormal.vx=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030008 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030005 +Entity.point[1].v=80030002 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030009 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030006 +Entity.point[1].v=80030003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003000a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8003000b +Entity.point[1].v=8003000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003000b +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003000c +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003000d +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8003000e +Entity.point[1].v=8003000f +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003000e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003000f +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030010 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.y=4.84999999999999964473 +Entity.actNormal.vy=0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030011 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8003000e +Entity.point[1].v=8003000b +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030012 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8003000f +Entity.point[1].v=8003000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030013 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030014 +Entity.point[1].v=80030015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030014 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030015 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030016 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030017 +Entity.point[1].v=80030018 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030017 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030018 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030019 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.y=4.84999999999999964473 +Entity.actNormal.vx=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003001a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030017 +Entity.point[1].v=80030014 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003001b +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030018 +Entity.point[1].v=80030015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003001c +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8003001d +Entity.point[1].v=8003001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003001d +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003001e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003001f +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030020 +Entity.point[1].v=80030021 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030020 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030021 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030022 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=6.00000000000000000000 +Entity.actNormal.vy=-0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030023 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030020 +Entity.point[1].v=8003001d +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030024 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80030021 +Entity.point[1].v=8003001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030027 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=80030028 +Entity.actNormal.w=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030028 +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80030029 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=8003002a +Entity.actNormal.w=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003002a +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.z=3.04999999999999982236 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003002b +Entity.type=11000 +Entity.construction=1 +Entity.point[0].v=8003002a +Entity.point[1].v=80030028 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003002c +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=8003002a +Entity.actPoint.z=3.04999999999999982236 +Entity.actNormal.vz=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8003002d +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=80030028 +Entity.actPoint.z=-3.04999999999999982236 +Entity.actNormal.vz=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80040000 +Entity.type=10000 +Entity.construction=0 +Entity.point[0].v=80040002 +Entity.normal.v=80040001 +Entity.actVisible=0 +AddEntity + +Entity.h.v=80040001 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=80040002 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80040002 +Entity.type=2012 +Entity.construction=1 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050001 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050002 +Entity.point[1].v=80050003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050002 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050003 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050004 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050005 +Entity.point[1].v=80050006 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050005 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050006 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050007 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vz=-0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050008 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050005 +Entity.point[1].v=80050002 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050009 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050006 +Entity.point[1].v=80050003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000b +Entity.point[1].v=8005000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000b +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000c +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000d +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000e +Entity.point[1].v=8005000f +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005000f +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050010 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vx=-0.99999999999999988898 +Entity.actNormal.vy=-0.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050011 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000e +Entity.point[1].v=8005000b +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050012 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005000f +Entity.point[1].v=8005000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050013 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050014 +Entity.point[1].v=80050015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050014 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050015 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050016 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050017 +Entity.point[1].v=80050018 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050017 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050018 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050019 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vz=0.99999999999999988898 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050017 +Entity.point[1].v=80050014 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001b +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050018 +Entity.point[1].v=80050015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001c +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8005001d +Entity.point[1].v=8005001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001d +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005001f +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050020 +Entity.point[1].v=80050021 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050020 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050021 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050022 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vx=0.99999999999999988898 +Entity.actNormal.vy=0.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050023 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050020 +Entity.point[1].v=8005001d +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050024 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80050021 +Entity.point[1].v=8005001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050027 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=80050028 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050028 +Entity.type=2010 +Entity.construction=1 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80050029 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=8005002a +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002a +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.x=0.00000000000000000000 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002b +Entity.type=11000 +Entity.construction=1 +Entity.point[0].v=8005002a +Entity.point[1].v=80050028 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002c +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=8005002a +Entity.actPoint.x=0.00000000000000000000 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actNormal.vy=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8005002d +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=80050028 +Entity.actNormal.vy=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80060000 +Entity.type=10000 +Entity.construction=0 +Entity.point[0].v=80060002 +Entity.normal.v=80060001 +Entity.actVisible=0 +AddEntity + +Entity.h.v=80060001 +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=80060002 +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80060002 +Entity.type=2012 +Entity.construction=1 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070001 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070002 +Entity.point[1].v=80070003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070002 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070003 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070004 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070005 +Entity.point[1].v=80070006 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070005 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070006 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070007 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vz=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070008 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070005 +Entity.point[1].v=80070002 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070009 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070006 +Entity.point[1].v=80070003 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007000a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007000b +Entity.point[1].v=8007000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007000b +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007000c +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007000d +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007000e +Entity.point[1].v=8007000f +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007000e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007000f +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070010 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vx=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070011 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007000e +Entity.point[1].v=8007000b +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070012 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007000f +Entity.point[1].v=8007000c +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070013 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070014 +Entity.point[1].v=80070015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070014 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070015 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070016 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070017 +Entity.point[1].v=80070018 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070017 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070018 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070019 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.18220281862873644041 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vz=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007001a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070017 +Entity.point[1].v=80070014 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007001b +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070018 +Entity.point[1].v=80070015 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007001c +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007001d +Entity.point[1].v=8007001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007001d +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007001e +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007001f +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070020 +Entity.point[1].v=80070021 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070020 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070021 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070022 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vz=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070023 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070020 +Entity.point[1].v=8007001d +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070024 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070021 +Entity.point[1].v=8007001e +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070025 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070026 +Entity.point[1].v=80070027 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070026 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070027 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070028 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070029 +Entity.point[1].v=8007002a +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070029 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007002a +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007002b +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vz=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007002c +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070029 +Entity.point[1].v=80070026 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007002d +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007002a +Entity.point[1].v=80070027 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007002e +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007002f +Entity.point[1].v=80070030 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007002f +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070030 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070031 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070032 +Entity.point[1].v=80070033 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070032 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070033 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070034 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=2.25000000000000000000 +Entity.actNormal.vx=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070035 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070032 +Entity.point[1].v=8007002f +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070036 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070033 +Entity.point[1].v=80070030 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070037 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070038 +Entity.point[1].v=80070039 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070038 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070039 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007003a +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007003b +Entity.point[1].v=8007003c +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007003b +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007003c +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007003d +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.88220268270826629475 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25124478646764503154 +Entity.actNormal.vx=-0.00207463988295562190 +Entity.actNormal.vz=-0.99999784793236234925 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007003e +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007003b +Entity.point[1].v=80070038 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007003f +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=8007003c +Entity.point[1].v=80070039 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070040 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070041 +Entity.point[1].v=80070042 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070041 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070042 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070043 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070044 +Entity.point[1].v=80070045 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070044 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070045 +Entity.type=2010 +Entity.construction=0 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070046 +Entity.type=5001 +Entity.construction=0 +Entity.actPoint.x=5.28220275066850142309 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vz=-1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070047 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070044 +Entity.point[1].v=80070041 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070048 +Entity.type=11000 +Entity.construction=0 +Entity.point[0].v=80070045 +Entity.point[1].v=80070042 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007004b +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=8007004c +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007004c +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007004d +Entity.type=3010 +Entity.construction=0 +Entity.point[0].v=8007004e +Entity.actNormal.w=0.50000000000000000000 +Entity.actNormal.vx=0.50000000000000000000 +Entity.actNormal.vy=-0.50000000000000000000 +Entity.actNormal.vz=0.50000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007004e +Entity.type=2010 +Entity.construction=1 +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=8007004f +Entity.type=11000 +Entity.construction=1 +Entity.point[0].v=8007004e +Entity.point[1].v=8007004c +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070050 +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=8007004e +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-3.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vy=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Entity.h.v=80070051 +Entity.type=5000 +Entity.construction=0 +Entity.point[0].v=8007004c +Entity.actPoint.x=0.78220275066850131207 +Entity.actPoint.y=-2.35000000000000008882 +Entity.actPoint.z=-2.25000000000000000000 +Entity.actNormal.vy=1.00000000000000000000 +Entity.actVisible=1 +AddEntity + +Constraint.h.v=00000001 +Constraint.type=20 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.ptA.v=80020002 +Constraint.ptB.v=00050001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000002 +Constraint.type=81 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.entityA.v=00050000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000003 +Constraint.type=20 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.ptA.v=00050002 +Constraint.ptB.v=00060001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000004 +Constraint.type=80 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.entityA.v=00060000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000005 +Constraint.type=20 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.ptA.v=00060002 +Constraint.ptB.v=00070001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000006 +Constraint.type=81 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.entityA.v=00070000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000007 +Constraint.type=20 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.ptA.v=00070002 +Constraint.ptB.v=00080001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000008 +Constraint.type=20 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.ptA.v=80020002 +Constraint.ptB.v=00080002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000009 +Constraint.type=80 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.entityA.v=00080000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000000a +Constraint.type=30 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.valA=4.84999999999999964473 +Constraint.ptA.v=00050001 +Constraint.ptB.v=00050002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=-0.60250678390155520958 +Constraint.disp.offset.y=-1.46583607558438688834 +AddConstraint + +Constraint.h.v=0000000b +Constraint.type=30 +Constraint.group.v=00000002 +Constraint.workplane.v=80020000 +Constraint.valA=6.00000000000000000000 +Constraint.ptA.v=00080001 +Constraint.ptB.v=00080002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=-1.91840076474651088922 +Constraint.disp.offset.y=-0.59160535189482577056 +AddConstraint + +Constraint.h.v=0000000c +Constraint.type=30 +Constraint.group.v=00000003 +Constraint.valA=6.09999999999999964473 +Constraint.ptA.v=80030020 +Constraint.ptB.v=8003001d +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=1.34921145898084660075 +Constraint.disp.offset.y=-0.01819467407320556410 +Constraint.disp.offset.z=0.27763239174530229825 +AddConstraint + +Constraint.h.v=0000000d +Constraint.type=20 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.ptA.v=00090001 +Constraint.ptB.v=000a0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000000e +Constraint.type=20 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.ptA.v=000a0001 +Constraint.ptB.v=000b0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000000f +Constraint.type=20 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.ptA.v=000b0001 +Constraint.ptB.v=000c0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000010 +Constraint.type=20 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.ptA.v=000c0001 +Constraint.ptB.v=00090002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000015 +Constraint.type=30 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.valA=4.50000000000000000000 +Constraint.ptA.v=000b0001 +Constraint.ptB.v=000b0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.z=-0.55522780528107174014 +AddConstraint + +Constraint.h.v=00000016 +Constraint.type=30 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.valA=4.50000000000000000000 +Constraint.ptA.v=000c0001 +Constraint.ptB.v=000c0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=-0.55522780528107174014 +AddConstraint + +Constraint.h.v=00000017 +Constraint.type=61 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.ptA.v=000c0001 +Constraint.ptB.v=000c0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000018 +Constraint.type=61 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.ptA.v=000b0002 +Constraint.ptB.v=000a0002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000019 +Constraint.type=121 +Constraint.group.v=00000004 +Constraint.workplane.v=80040000 +Constraint.entityA.v=000b0000 +Constraint.entityB.v=00090000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000001a +Constraint.type=30 +Constraint.group.v=00000005 +Constraint.valA=2.35000000000000008882 +Constraint.ptA.v=80050020 +Constraint.ptB.v=8005001d +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=-0.47112643581659358061 +Constraint.disp.offset.z=0.47112643581659335856 +AddConstraint + +Constraint.h.v=0000001b +Constraint.type=42 +Constraint.group.v=00000005 +Constraint.valP.v=4000001b +Constraint.ptA.v=000d0001 +Constraint.entityA.v=80050004 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000001c +Constraint.type=42 +Constraint.group.v=00000005 +Constraint.valP.v=4000001c +Constraint.ptA.v=000d0002 +Constraint.entityA.v=80050016 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000001d +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=80060002 +Constraint.ptB.v=000e0001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000001e +Constraint.type=81 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.entityA.v=000e0000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000001f +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=000e0002 +Constraint.ptB.v=000f0001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000020 +Constraint.type=80 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.entityA.v=000f0000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000021 +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=000f0002 +Constraint.ptB.v=00100001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000022 +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=80050020 +Constraint.ptB.v=00100002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000023 +Constraint.type=81 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.entityA.v=00100000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000024 +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=00100002 +Constraint.ptB.v=00110001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000025 +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=8005000f +Constraint.ptB.v=00110002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000026 +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=00110002 +Constraint.ptB.v=00120001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000027 +Constraint.type=81 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.entityA.v=00120000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000028 +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=00120002 +Constraint.ptB.v=00130001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=00000029 +Constraint.type=80 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.entityA.v=00130000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000002a +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=00130002 +Constraint.ptB.v=00140001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000002b +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=80050018 +Constraint.ptB.v=00140002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000002c +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=00140002 +Constraint.ptB.v=00150001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000002d +Constraint.type=20 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.ptA.v=80060002 +Constraint.ptB.v=00150002 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000002e +Constraint.type=50 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.entityA.v=000e0000 +Constraint.entityB.v=00120000 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +AddConstraint + +Constraint.h.v=0000002f +Constraint.type=30 +Constraint.group.v=00000006 +Constraint.workplane.v=80060000 +Constraint.valA=5.70000000000000017764 +Constraint.ptA.v=000f0001 +Constraint.ptB.v=00140001 +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=-0.00008567676016346913 +Constraint.disp.offset.y=0.39987187288287601161 +Constraint.disp.offset.z=-0.39978619612271254491 +AddConstraint + +Constraint.h.v=00000030 +Constraint.type=30 +Constraint.group.v=00000007 +Constraint.valA=1.00000000000000000000 +Constraint.ptA.v=8007000e +Constraint.ptB.v=8007000b +Constraint.other=0 +Constraint.other2=0 +Constraint.reference=0 +Constraint.disp.offset.x=0.09969980856195950758 +Constraint.disp.offset.y=0.89934597919368619579 +Constraint.disp.offset.z=-0.99904578775564567561 +AddConstraint + +Surface 00000001 00646464 8003002d 1 1 +SCtrl 0 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 0 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +TrimBy 0000000a 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 00000004 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000007 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000001 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +AddSurface +Surface 00000002 00646464 8003002c 1 1 +SCtrl 0 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 0 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +TrimBy 00000005 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 00000008 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 0000000b 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000002 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddSurface +Surface 00000003 00646464 80030022 1 1 +SCtrl 0 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 0 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +TrimBy 00000002 0 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 00000001 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 0000000c 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 00000003 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 0000001b 0 0.78220275066850131207 0.00000000000000000000 2.25000000000000177636 0.78220275066850120105 0.00000000000000000000 -2.24999999999999955591 +TrimBy 0000001c 0 5.28220275066850142309 0.00000000000000000000 2.25000000000000133227 0.78220275066850131207 0.00000000000000000000 2.25000000000000177636 +TrimBy 00000019 0 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 5.28220275066850142309 0.00000000000000000000 2.25000000000000133227 +TrimBy 0000001a 0 0.78220275066850120105 0.00000000000000000000 -2.24999999999999955591 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +AddSurface +Surface 00000004 00646464 80030019 1 1 +SCtrl 0 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 0 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +TrimBy 00000005 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000004 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +TrimBy 00000003 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 00000006 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +AddSurface +Surface 00000005 00646464 80030010 1 1 +SCtrl 0 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 0 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +TrimBy 00000008 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000007 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000006 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 00000009 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +AddSurface +Surface 00000006 00646464 80030007 1 1 +SCtrl 0 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 0 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +SCtrl 1 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +TrimBy 0000000b 0 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +TrimBy 0000000a 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +TrimBy 00000009 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +TrimBy 0000000c 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +AddSurface +Surface 00000007 00646464 8005002c 1 1 +SCtrl 0 0 0.78220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.78220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +AddSurface +Surface 00000008 00646464 8005002d 1 1 +SCtrl 0 0 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.78220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 0.78220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +AddSurface +Surface 00000009 00646464 80050010 1 1 +SCtrl 0 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000018 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +TrimBy 0000000f 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +TrimBy 0000000e 0 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +TrimBy 0000000d 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +AddSurface +Surface 0000000a 00646464 80050019 1 1 +SCtrl 0 0 5.40880274967586505142 -3.47659999900736416123 -2.24999999999999911182 Weight 1.00000000000000000000 +SCtrl 0 1 5.40880274967586505142 0.12659999900736385037 -2.24999999999999911182 Weight 1.00000000000000000000 +SCtrl 1 0 0.05560281962137259004 -3.47659999900736416123 -2.24999999999999911182 Weight 1.00000000000000000000 +SCtrl 1 1 0.05560281962137259004 0.12659999900736385037 -2.24999999999999911182 Weight 1.00000000000000000000 +TrimBy 0000000f 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +TrimBy 00000012 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +TrimBy 00000011 0 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +TrimBy 00000032 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 +TrimBy 0000001f 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +TrimBy 0000001e 0 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 +TrimBy 00000033 0 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 +TrimBy 00000031 0 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 +AddSurface +Surface 0000000b 00646464 80050022 1 1 +SCtrl 0 0 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000012 0 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +TrimBy 00000015 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +TrimBy 00000014 0 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +TrimBy 00000013 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +AddSurface +Surface 0000000c 00646464 80050007 1 1 +SCtrl 0 0 0.04360282098057727262 -3.48859999764815942314 2.24999999999999911182 Weight 1.00000000000000000000 +SCtrl 0 1 0.04360282098057727262 0.13859999764815916778 2.24999999999999911182 Weight 1.00000000000000000000 +SCtrl 1 0 6.02080268035642518498 -3.48859999764815942314 2.24999999999999911182 Weight 1.00000000000000000000 +SCtrl 1 1 6.02080268035642518498 0.13859999764815916778 2.24999999999999911182 Weight 1.00000000000000000000 +TrimBy 00000015 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +TrimBy 00000018 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +TrimBy 00000017 0 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +TrimBy 00000026 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 +TrimBy 00000025 0 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 +TrimBy 00000027 0 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 +TrimBy 0000002a 0 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 +TrimBy 0000002d 0 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 +TrimBy 0000002e 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 +TrimBy 0000002c 1 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +AddSurface +Surface 0000000d 00646464 80070051 1 1 +SCtrl 0 0 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.18220281862873655143 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764458745 Weight 1.00000000000000000000 +SCtrl 1 1 0.18220281862873655143 -2.35000000000000008882 -2.25124478646764458745 Weight 1.00000000000000000000 +TrimBy 00000020 0 5.28220275066850142309 -2.35000000000000008882 -2.24999999999999822364 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764458745 +TrimBy 00000023 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764458745 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 +TrimBy 00000026 0 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 5.28220275066850053491 -2.35000000000000008882 2.25000000000000000000 +TrimBy 0000002c 0 0.78220275066850109003 -2.35000000000000008882 2.25000000000000000000 0.18220281862873655143 -2.35000000000000008882 2.25000000000000000000 +TrimBy 0000002f 0 0.18220281862873655143 -2.35000000000000008882 2.25000000000000000000 0.18220281862873655143 -2.35000000000000008882 -2.24999999999999822364 +TrimBy 00000032 0 0.18220281862873655143 -2.35000000000000008882 -2.24999999999999822364 0.78220275066850109003 -2.35000000000000008882 -2.24999999999999822364 +TrimBy 00000037 1 5.28220275066850053491 -2.35000000000000008882 2.25000000000000000000 5.28220275066850142309 -2.35000000000000008882 -2.24999999999999822364 +TrimBy 0000003b 1 0.78220275066850109003 -2.35000000000000008882 -2.24999999999999822364 0.78220275066850109003 -2.35000000000000008882 2.25000000000000000000 +AddSurface +Surface 0000000e 00646464 80070050 1 1 +SCtrl 0 0 0.18220281862873655143 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.18220281862873655143 -3.35000000000000008882 -2.25124478646764458745 Weight 1.00000000000000000000 +SCtrl 1 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764458745 Weight 1.00000000000000000000 +TrimBy 00000033 1 0.78220275066850131207 -3.35000000000000008882 -2.24999999999999822364 0.18220281862873644041 -3.35000000000000008882 -2.24999999999999822364 +TrimBy 0000001e 1 5.28220275066850142309 -3.35000000000000008882 -2.24999999999999822364 0.78220275066850131207 -3.35000000000000008882 -2.24999999999999822364 +TrimBy 00000021 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764458745 5.28220275066850142309 -3.35000000000000008882 -2.24999999999999822364 +TrimBy 00000024 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764458745 +TrimBy 00000027 1 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 +TrimBy 0000002a 1 0.78220275066850131207 -3.35000000000000008882 2.25000000000000044409 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 +TrimBy 0000002d 1 0.18220281862873655143 -3.35000000000000008882 2.25000000000000000000 0.78220275066850131207 -3.35000000000000008882 2.25000000000000044409 +TrimBy 00000030 1 0.18220281862873644041 -3.35000000000000008882 -2.24999999999999822364 0.18220281862873655143 -3.35000000000000008882 2.25000000000000000000 +AddSurface +Surface 00000010 00646464 8007003d 1 1 +SCtrl 0 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +SCtrl 1 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +TrimBy 00000021 0 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 +TrimBy 00000020 1 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +TrimBy 0000001f 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 +TrimBy 00000022 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 +AddSurface +Surface 00000011 00646464 80070034 1 1 +SCtrl 0 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +SCtrl 0 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +SCtrl 1 0 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000024 0 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 +TrimBy 00000023 1 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 +TrimBy 00000022 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 +TrimBy 00000025 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 +AddSurface +Surface 00000013 00646464 80070010 1 1 +SCtrl 0 0 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 0 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 0 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +SCtrl 1 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +TrimBy 00000030 0 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 +TrimBy 0000002f 1 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 +TrimBy 0000002e 0 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 +TrimBy 00000031 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 +AddSurface +Curve 00000001 1 1 00000001 00000003 +CCtrl 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +CurvePt 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +AddCurve +Curve 00000002 1 1 00000002 00000003 +CCtrl 0 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +CurvePt 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddCurve +Curve 00000003 1 1 00000003 00000004 +CCtrl 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +CurvePt 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddCurve +Curve 00000004 1 1 00000001 00000004 +CCtrl 0 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +AddCurve +Curve 00000005 1 1 00000002 00000004 +CCtrl 0 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +AddCurve +Curve 00000006 1 1 00000004 00000005 +CCtrl 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +AddCurve +Curve 00000007 1 1 00000001 00000005 +CCtrl 0 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +AddCurve +Curve 00000008 1 1 00000002 00000005 +CCtrl 0 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 6.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +AddCurve +Curve 00000009 1 1 00000005 00000006 +CCtrl 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +AddCurve +Curve 0000000a 1 1 00000001 00000006 +CCtrl 0 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +AddCurve +Curve 0000000b 1 1 00000002 00000006 +CCtrl 0 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 4.84999999999999964473 3.04999999999999982236 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddCurve +Curve 0000000c 1 1 00000006 00000003 +CCtrl 0 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 Weight 1.00000000000000000000 +CCtrl 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 Weight 1.00000000000000000000 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 -3.04999999999999982236 +CurvePt 1 0.00000000000000000000 0.00000000000000000000 3.04999999999999982236 +AddCurve +Curve 0000000d 1 1 00000007 00000009 +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 0000000e 1 1 00000008 00000009 +CCtrl 0 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +AddCurve +Curve 0000000f 1 1 00000009 0000000a +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +AddCurve +Curve 00000010 1 1 00000007 0000000a +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000011 1 1 00000008 0000000a +CCtrl 0 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +AddCurve +Curve 00000012 1 1 0000000a 0000000b +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +AddCurve +Curve 00000013 1 1 00000007 0000000b +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000014 1 1 00000008 0000000b +CCtrl 0 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +AddCurve +Curve 00000015 1 1 0000000b 0000000c +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +AddCurve +Curve 00000016 1 1 00000007 0000000c +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000017 1 1 00000008 0000000c +CCtrl 0 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +AddCurve +Curve 00000018 1 1 0000000c 00000009 +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +AddCurve +Curve 00000019 1 1 00000003 00000009 +CCtrl 0 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +AddCurve +Curve 0000001a 1 1 00000003 0000000a +CCtrl 0 0.78220275066850142309 0.00000000000000000000 -2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 0.00000000000000000000 -2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 -2.25000000000000000000 +AddCurve +Curve 0000001b 1 1 00000003 0000000b +CCtrl 0 0.78220275066850120105 0.00000000000000000000 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850120105 0.00000000000000000000 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 -2.25000000000000000000 +AddCurve +Curve 0000001c 1 1 00000003 0000000c +CCtrl 0 5.28220275066850142309 0.00000000000000000000 2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 0.00000000000000000000 2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 0.00000000000000000000 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 0.00000000000000000000 2.25000000000000000000 +AddCurve +Curve 0000001d 1 1 0000000d 0000000a +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 0000001e 1 1 0000000e 0000000a +CCtrl 0 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 0000001f 1 1 0000000a 00000010 +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000020 1 1 0000000d 00000010 +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 +AddCurve +Curve 00000021 1 1 0000000e 00000010 +CCtrl 0 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -3.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 +AddCurve +Curve 00000022 1 1 00000010 00000011 +CCtrl 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +CCtrl 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +CurvePt 1 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 +CurvePt 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 +AddCurve +Curve 00000023 1 1 0000000d 00000011 +CCtrl 0 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +CCtrl 1 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.88220268270826629475 -2.35000000000000008882 -2.25124478646764503154 +CurvePt 1 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000024 1 1 0000000e 00000011 +CCtrl 0 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 Weight 1.00000000000000000000 +CCtrl 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.88220268270826629475 -3.35000000000000008882 -2.25124478646764503154 +CurvePt 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000025 1 1 00000011 0000000c +CCtrl 0 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000026 1 1 0000000d 0000000c +CCtrl 0 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.88220268270826629475 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000027 1 1 0000000e 0000000c +CCtrl 0 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.88220268270826629475 -3.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000028 1 1 0000000c 0000000c +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000029 1 1 0000000d 0000000c +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000002a 1 1 0000000e 0000000c +CCtrl 0 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -3.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000002b 1 1 0000000c 0000000c +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000002c 1 1 0000000d 0000000c +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000002d 1 1 0000000e 0000000c +CCtrl 0 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -3.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000002e 1 1 0000000c 00000013 +CCtrl 0 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000002f 1 1 0000000d 00000013 +CCtrl 0 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.18220281862873644041 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000030 1 1 0000000e 00000013 +CCtrl 0 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.18220281862873644041 -3.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000031 1 1 00000013 0000000a +CCtrl 0 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000032 1 1 0000000d 0000000a +CCtrl 0 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.18220281862873644041 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000033 1 1 0000000e 0000000a +CCtrl 0 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.18220281862873644041 -3.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000034 1 1 0000000a 0000000a +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -3.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000035 1 1 00000007 0000000a +CCtrl 0 0.78220275066850142309 -2.35000000000000008882 -2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.35000000000000008882 -2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 00000036 1 1 00000007 0000000c +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850142309 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000037 1 1 00000009 0000000d +CCtrl 0 5.28220275066850053491 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850053491 -2.35000000000000008882 2.24999999999999911182 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 00000038 1 1 00000009 0000000a +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 -2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.22340000099263601641 -2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.24999999999999955591 +CurvePt 1 5.28220275066850142309 -2.22340000099263601641 -2.24999999999999955591 +AddCurve +Curve 00000039 1 1 00000009 0000000c +CCtrl 0 5.28220275066850053491 -2.21140000235184075450 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850053491 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850053491 -2.21140000235184075450 2.25000000000000000000 +CurvePt 1 5.28220275066850053491 -2.35000000000000008882 2.25000000000000000000 +AddCurve +Curve 0000003a 1 1 0000000a 0000000d +CCtrl 0 0.78220275066850142309 -2.35000000000000008882 -2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 5.28220275066850142309 -2.35000000000000008882 -2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 0000003b 1 1 0000000b 0000000d +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 2.24999999999999911182 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 -2.25000000000000000000 +AddCurve +Curve 0000003c 1 1 0000000b 0000000a +CCtrl 0 0.78220275066850120105 -2.22340000099263601641 -2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850120105 -2.35000000000000008882 -2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850120105 -2.22340000099263601641 -2.24999999999999955591 +CurvePt 1 0.78220275066850120105 -2.35000000000000008882 -2.24999999999999955591 +AddCurve +Curve 0000003d 1 1 0000000b 0000000c +CCtrl 0 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.21140000235184075450 2.25000000000000000000 Weight 1.00000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.21140000235184075450 2.25000000000000000000 +AddCurve +Curve 0000003e 1 1 0000000c 0000000d +CCtrl 0 5.28220275066850142309 -2.35000000000000008882 2.24999999999999955591 Weight 1.00000000000000000000 +CCtrl 1 0.78220275066850131207 -2.35000000000000008882 2.24999999999999955591 Weight 1.00000000000000000000 +CurvePt 1 5.28220275066850142309 -2.35000000000000008882 2.25000000000000000000 +CurvePt 1 0.78220275066850131207 -2.35000000000000008882 2.25000000000000000000 +AddCurve