10x11 Befenybay Drag Chain mounts & Custom Slicer Bed Profiles by bryansj (#33)

This commit is contained in:
bryansj 2020-01-23 06:12:31 -05:00 committed by Florian Heilmann
parent fb9ffb41ab
commit 1c11f4d266
36 changed files with 1915773 additions and 74 deletions

View File

@ -17,6 +17,8 @@
# M117 LCD Text Added *16 Characters Max
# Expanded LCD Menu Options for Voron/Klipper Commands
# Quad Gantry Level, Firmware_Restart, TESTZ Offsetting
# LED Lighting Control
# NOTE: Extruder Configured for Afterburner
# *** THINGS TO CHANGE/CHECK: ***
# MCU paths [mcu] section
@ -108,7 +110,7 @@ max_velocity: 300
max_accel: 4000 #Max 4000
max_z_velocity: 25 #Max 50
max_z_accel: 350 #Max 800
square_corner_velocity: 5.0 #Can experiment with 8.0, default 5.0
square_corner_velocity: 4.0 #Can experiment with 8.0, default 5.0, Afterburner 4.0
#####################################################################
# Optional Settings
@ -157,8 +159,8 @@ homing_positive_dir: true
uart_pin: P1.17
microsteps: 16
interpolate: True
run_current: 1.0
hold_current: 1.0
run_current: 0.9
hold_current: 0.9
sense_resistor: 0.110
stealthchop_threshold: 0
@ -182,8 +184,8 @@ homing_positive_dir: true
uart_pin: P1.15
microsteps: 16
interpolate: True
run_current: 1.0
hold_current: 1.0
run_current: 0.9
hold_current: 0.9
sense_resistor: 0.110
stealthchop_threshold: 0
@ -216,8 +218,8 @@ homing_retract_dist: 3.0
uart_pin: z:P1.17
microsteps: 16
interpolate: False
run_current: 1.0
hold_current: 1.0
run_current: 0.9
hold_current: 0.9
sense_resistor: 0.110
stealthchop_threshold: 0
@ -233,8 +235,8 @@ step_distance: 0.00250
uart_pin: z:P1.15
microsteps: 16
interpolate: False
run_current: 1.0
hold_current: 1.0
run_current: 0.9
hold_current: 0.9
sense_resistor: 0.110
stealthchop_threshold: 0
@ -250,8 +252,8 @@ step_distance: 0.00250
uart_pin: z:P1.10
microsteps: 16
interpolate: False
run_current: 1.0
hold_current: 1.0
run_current: 0.9
hold_current: 0.9
sense_resistor: 0.110
stealthchop_threshold: 0
@ -267,8 +269,8 @@ step_distance: 0.00250
uart_pin: z:P1.8
microsteps: 16
interpolate: False
run_current: 1.0
hold_current: 1.0
run_current: 0.9
hold_current: 0.9
sense_resistor: 0.110
stealthchop_threshold: 0
@ -286,7 +288,7 @@ enable_pin: !P2.12
# Higher value means less filament extruded
# If you ask for 100mm of filament, but in reality it is 98mm:
# step_distance = 98 / 100 * step_distance_old
step_distance: 0.001747746
step_distance: 0.0024 ; For Afterburner
nozzle_diameter: 0.400
filament_diameter: 1.75
heater_pin: P2.7
@ -298,14 +300,14 @@ min_temp: 10
max_temp: 270
max_power: 1.0
min_extrude_temp: 170
max_extrude_only_distance: 780.0
max_extrude_only_distance: 100.0
#control = pid
#pid_kp = 26.213
#pid_ki = 1.304
#pid_kd = 131.721
# PA can be disabled by declaring a 0.0 value
# PA Measured to 0.86 Max
pressure_advance: 0.00
pressure_advance: 0.08
pressure_advance_smooth_time: 0.040
# A time range (in seconds) to use when calculating the average
# extruder velocity for pressure advance. A larger value results in
@ -318,8 +320,8 @@ pressure_advance_smooth_time: 0.040
uart_pin: P1.9
microsteps: 16
interpolate: false
run_current: 1.0
hold_current: 1.0
run_current: 0.5 ; For Afterburner
hold_current: 0.5 ; For Afterburner
sense_resistor: 0.110
stealthchop_threshold: 0
@ -337,7 +339,7 @@ x_offset: 0
y_offset: 25.0
z_offset: 0
speed: 10.0
samples: 4
samples: 3
samples_result: average
sample_retract_dist: 3.0
samples_tolerance: 0.006
@ -399,7 +401,7 @@ sensor_type: NTC 100K MGB18-104F39050L32
sensor_pin: z:P0.23
smooth_time: 3.0
#Adjust Max Power so your heater doesn't warp your bed
max_power: .8
max_power: .6
min_temp: 0
max_temp: 112.5
#control: pid
@ -407,6 +409,15 @@ max_temp: 112.5
#pid_ki: 2.347
#pid_kd: 363.769
#####################################################################
# LED Lights
#####################################################################
[output_pin caselight]
# LED Lighting - XYE board, BED -V Connector
pin: P2.5
value: 1
#####################################################################
# Displays - connects to Z MCU
#####################################################################
@ -427,13 +438,14 @@ type: list
name: Main Menu
items:
#__command_power_off
__chamber
__temp
__control
__filament
__tune
__octoprint
__sdcard
__control
__calibration
__temp
__filament
__prepare
__test
@ -444,6 +456,50 @@ items:
#type: command
#name: Power off
#gcode: RESPOND TYPE=command MSG=action:poweroff
[menu __chamber]
type: list
name: Chamber
items:
__preheat_chamber
__lights_on
__lights_off
__vent_on
__vent_off
__vent_timed
[menu __preheat_chamber]
type: command
name: Preheat
gcode: lights_on
M117 Preheating
M140 S105
[menu __lights_on]
type: command
name: Lights ON
gcode: SET_PIN PIN=caselight VALUE=1
[menu __lights_off]
type: command
name: Lights OFF
gcode: SET_PIN PIN=caselight VALUE=0
[menu __vent_on]
type: command
name: Vent ON
gcode: vent_on
[menu __vent_off]
type: command
name: Vent OFF
gcode: vent_off
[menu __vent_timed]
type: command
name: 5 Minute Vent
gcode: vent_on
G4 S300
vent_off
[menu __calibration]
type: list
@ -609,10 +665,11 @@ type: list
name: Temperature
items:
.__hotend0_current, .__hotend0_target
.__hotend1_current, .__hotend1_target
# .__hotend1_current, .__hotend1_target
.__hotbed_current, .__hotbed_target
.__preheat_pla
.__preheat_abs
.__preheat_pla
.__preheat_petg
.__cooldown
[menu __temp __hotend0_current]
@ -627,27 +684,27 @@ enable: extruder.is_enabled
name: "{0:4.0f}"
parameter: extruder.target
input_min: 0
input_max: 250
input_max: 280
input_step: 1
input_step2: 10
gcode: M104 T0 S{0:.0f}
[menu __temp __hotend1_current]
type: item
enable: extruder1.is_enabled
name: "Ex1:{0:4.0f} T"
parameter: extruder1.temperature
# [menu __temp __hotend1_current]
# type: item
# enable: extruder1.is_enabled
# name: "Ex1:{0:4.0f} T"
# parameter: extruder1.temperature
[menu __temp __hotend1_target]
type: input
enable: extruder1.is_enabled
name: "{0:4.0f}"
parameter: extruder1.target
input_min: 0
input_max: 250
input_step: 1
input_step2: 10
gcode: M104 T1 S{0:.0f}
# [menu __temp __hotend1_target]
# type: input
# enable: extruder1.is_enabled
# name: "{0:4.0f}"
# parameter: extruder1.target
# input_min: 0
# input_max: 280
# input_step: 1
# input_step2: 10
# gcode: M104 T1 S{0:.0f}
[menu __temp __hotbed_current]
type: item
@ -661,11 +718,39 @@ enable: heater_bed.is_enabled
name: "{0:4.0f}"
parameter: heater_bed.target
input_min: 0
input_max: 130
input_max: 115
input_step: 1
input_step2: 10
gcode: M140 S{0:.0f}
[menu __temp __preheat_abs]
type: list
name: Preheat ABS
items:
.__all
.__hotend
.__hotbed
[menu __temp __preheat_abs __all]
type: command
enable: extruder.is_enabled,heater_bed.is_enabled
name: Preheat all
gcode:
M140 S105
M104 S235
[menu __temp __preheat_abs __hotend]
type: command
enable: extruder.is_enabled
name: Preheat hotend
gcode: M104 S235
[menu __temp __preheat_abs __hotbed]
type: command
enable: heater_bed.is_enabled
name: Preheat hotbed
gcode: M140 S105
[menu __temp __preheat_pla]
type: list
name: Preheat PLA
@ -694,33 +779,33 @@ enable: heater_bed.is_enabled
name: Preheat hotbed
gcode: M140 S60
[menu __temp __preheat_abs]
[menu __temp __preheat_petg]
type: list
name: Preheat ABS
name: Preheat PETG
items:
.__all
.__hotend
.__hotbed
[menu __temp __preheat_abs __all]
[menu __temp __preheat_petg __all]
type: command
enable: extruder.is_enabled,heater_bed.is_enabled
name: Preheat all
gcode:
M140 S105
M104 S235
M140 S80
M104 S220
[menu __temp __preheat_abs __hotend]
[menu __temp __preheat_petg __hotend]
type: command
enable: extruder.is_enabled
name: Preheat hotend
gcode: M104 S235
gcode: M104 S220
[menu __temp __preheat_abs __hotbed]
[menu __temp __preheat_petg __hotbed]
type: command
enable: heater_bed.is_enabled
name: Preheat hotbed
gcode: M140 S105
gcode: M140 S80
[menu __temp __cooldown]
type: list
@ -851,8 +936,8 @@ gcode:
G21 ; mm Mode
G90 ; absolute mode
M140 S<BED> ; Heated bed control
M109 S<EXTRUDER>
M140 S{BED} ; Heated bed control
M109 S{EXTRUDER} ; Heated extruder control
M83 ; Relative E
G28 ; home all axes
G32 ; level and clean
@ -870,12 +955,15 @@ gcode:
G0 Z1.00 X20.0 Y20.0 F20000 ; move nozzle to remove stringing
TURN_OFF_HEATERS ; turn off heaters
M107 ; turn off fan
M141 S45 ; vent chamber setting fan to 45C
M141 S20 ; vent chamber (setting fan to below ambient)
G1 Z2 F3000 ; move nozzle up 2mm
G90 ; absolute positioning
G0 X55 Y300 F3600 ; park nozzle at brush bin
M117 Ready
M117 Cooldown
G4 S300 ; wait 5 minutes
M141 S70 ; turn chamber fan off (set to 70C)
BED_MESH_CLEAR
M117 Ready
# GET_BED_MESH
[gcode_macro get_bed_mesh]
@ -903,12 +991,12 @@ gcode:
{% endif %}
G92 E0 ;Reset Extruder
G1 Z5.0 F3000 ;Move Z Axis up
G1 X10 Y30 Z0.28 F5000.0 ;Move to start position
G1 X10 Y230.0 Z0.28 F1500.0 E20 ;Draw the first line
G1 X11 Y230.0 Z0.28 F5000.0 ;Move to side a little
G1 X11 Y30 Z0.28 F1500.0 E20 ;Draw the second line
G1 X1 Y30 Z0.24 F5000.0 ;Move to start position (1,30,.24)
G1 X1 Y230.0 Z0.24 F1500.0 E20 ;Draw the first 200mm line
G1 X1.5 Y230.0 Z0.24 F5000.0 ;Move to side a little
G1 X1.5 Y30 Z0.24 F1500.0 E20 ;Draw the second line
G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up
G1 Z5.0 F3000 ;Move Z Axis up
RESTORE_GCODE_STATE NAME=BEFORE_PRIME
# Nozzle Clean Macro
@ -942,23 +1030,42 @@ gcode:
G1 Z10 F3000 ; lift z 10mm
RESTORE_GCODE_STATE NAME=BEFORE_CLEAN
# Load Filament
# Load Filament (Afterburner)
[gcode_macro LOAD_FILAMENT]
gcode:
M83 ; set extruder to relative
G1 E750 F1800 ; quickly load filament to down bowden
G1 E30 F300 ; slower extrusion for hotend path
G1 E15 F150 ; prime nozzle with filament
G1 E30 F1800 ; quickly load 30mm filament
G1 E50 F300 ; slower extrusion for hotend path
G1 E10 F150 ; prime nozzle with filament
M82 ; set extruder to absolute
# Remove Filament
# Remove Filament (Afterburner)
[gcode_macro UNLOAD_FILAMENT]
gcode:
M83 ; set extruder to relative
G1 E10 F300 ; extrude a little to soften tip
G1 E-780 F1800 ; retract filament completely
G1 E-100 F1800 ; retract filament completely
M82 ; set extruder to absolute
# Lighting Control
[gcode_macro lights_on]
gcode:
SET_PIN PIN=caselight VALUE=1
[gcode_macro lights_off]
gcode:
SET_PIN PIN=caselight VALUE=0
# Chamber Ventilation Control
[gcode_macro vent_on]
gcode:
M141 S20
M117 Chamber Vent On
[gcode_macro vent_off]
gcode:
M141 S70
# Filament Sensor Testing
[filament_switch_sensor test]
pause_on_runout: True
@ -982,7 +1089,8 @@ gcode:
# Reference POSITION_ENDSTOP Z Offset Settings
#####################################################################
# Energetic PEI Smooth Side = -0.700
# The larger the absolute number the further the nozzle is from the bed
# Energetic PEI Smooth Side = -0.805
# Energetci PEI Textured Side = -x.xxx
#*# <---------------------- SAVE_CONFIG ---------------------->
@ -990,15 +1098,15 @@ gcode:
#*#
#*# [heater_bed]
#*# control = pid
#*# pid_kp = 36.854
#*# pid_ki = 1.153
#*# pid_kd = 294.369
#*# pid_kp = 37.404
#*# pid_ki = 1.084
#*# pid_kd = 322.607
#*#
#*# [extruder]
#*# control = pid
#*# pid_kp = 28.600
#*# pid_ki = 2.028
#*# pid_kd = 100.816
#*# pid_kp = 21.194
#*# pid_ki = 1.121
#*# pid_kd = 100.143
#*#
#*# [stepper_z]
#*# position_endstop = -0.700
#*# position_endstop = -0.805

View File

@ -31,6 +31,7 @@ If your mod is lacking a column in the compatibility matrix, feel free to submit
| | [Corner Panel Clip](./ArmyAg08/Panels)|Corner panel clip that fit 3mm or 1/8" panels with foam tape | :x:|:heavy_check_mark: | :heavy_check_mark:|
| bryansj | [Rotated Pi Mount with Heatsink](./bryansj/RPi_Frame_with_Heatsink_90deg) | Raspberry Pi with Heatsink Frame for minimal channel width | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| | [Keystone Jack Universal Skirt Insert](./bryansj/Keystone_Jack_Universal_Skirt_Insert) | Keystone Jack Insert to fit into any hexagonal hole in the skirt | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| | [Befenybay Chain Anchors](./bryansj/Befenybay_Chain_Anchors) | Befenybay 10x11 Drag Chain Top Anchor and 2020 Extrusion Mount | :x: | :heavy_check_mark: | :heavy_check_mark: |
| blamm | [Blind Joint Drilling Jigs](./blamm/jigs) | Jigs to drill your blind joints in the right spot | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| Cerulean | [Respooler](./Cerulean/Respooler) | Respool tangled spools or bad koils | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|Danowar |[Dual Mobius Mount](./Danowar/Dual_Mobuis_Mount) | Mounts two Mobius Extruders to the back of the printer| :heavy_check_mark:| :heavy_check_mark:|:heavy_check_mark: |

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,809 @@
ISO-10303-21;
HEADER;
FILE_DESCRIPTION(('CATIA V5 STEP Exchange'),'2;1');
FILE_NAME('C:\\Users\\bryansj\\Nextcloud\\Workshop\\3D_Printer\\VORON\\CAD\\CATIA\\chains\\Triangle_Hole_Pattern_End_Mount_to_2020.stp','2020-01-09T00:10:20+00:00',('none'),('none'),'CATIA Version 5-6 Release 2018','CATIA V5 STEP AP203','none');
FILE_SCHEMA(('CONFIG_CONTROL_DESIGN'));
ENDSEC;
DATA;
#5=PRODUCT('Befenybay End Mount to 2020','','',(#2)) ;
#1=APPLICATION_CONTEXT('configuration controlled 3D design of mechanical parts and assemblies') ;
#14=PRODUCT_DEFINITION('',' ',#6,#3) ;
#16=SECURITY_CLASSIFICATION(' ',' ',#15) ;
#15=SECURITY_CLASSIFICATION_LEVEL('unclassified') ;
#46=CARTESIAN_POINT(' ',(0.,0.,0.)) ;
#51=CARTESIAN_POINT('Axis2P3D Location',(-7.875,0.,-34.)) ;
#56=CARTESIAN_POINT('Axis2P3D Location',(-7.875,0.,-35.75)) ;
#60=CARTESIAN_POINT('Vertex',(-6.1,0.,-35.75)) ;
#62=CARTESIAN_POINT('Vertex',(-7.875,1.775,-35.75)) ;
#65=CARTESIAN_POINT('Line Origine',(-7.875,1.775,-34.)) ;
#69=CARTESIAN_POINT('Vertex',(-7.875,1.775,-32.25)) ;
#72=CARTESIAN_POINT('Axis2P3D Location',(-7.875,0.,-32.25)) ;
#76=CARTESIAN_POINT('Vertex',(-6.1,-4.4408920985E-016,-32.25)) ;
#79=CARTESIAN_POINT('Axis2P3D Location',(-7.875,0.,-32.25)) ;
#83=CARTESIAN_POINT('Vertex',(-7.875,-1.775,-32.25)) ;
#86=CARTESIAN_POINT('Line Origine',(-7.875,-1.775,-34.)) ;
#90=CARTESIAN_POINT('Vertex',(-7.875,-1.775,-35.75)) ;
#93=CARTESIAN_POINT('Axis2P3D Location',(-7.875,0.,-35.75)) ;
#107=CARTESIAN_POINT('Axis2P3D Location',(-10.,1.775,-35.75)) ;
#112=CARTESIAN_POINT('Line Origine',(-8.9375,1.775,-35.75)) ;
#116=CARTESIAN_POINT('Vertex',(-10.,1.775,-35.75)) ;
#119=CARTESIAN_POINT('Line Origine',(-10.,1.775,-34.)) ;
#123=CARTESIAN_POINT('Vertex',(-10.,1.775,-32.25)) ;
#126=CARTESIAN_POINT('Line Origine',(-8.9375,1.775,-32.25)) ;
#138=CARTESIAN_POINT('Axis2P3D Location',(-6.58999999984,0.,-41.5)) ;
#143=CARTESIAN_POINT('Line Origine',(-6.58999999984,1.75,-41.5)) ;
#147=CARTESIAN_POINT('Vertex',(-10.,1.75,-41.5)) ;
#149=CARTESIAN_POINT('Vertex',(-8.5,1.75,-41.5)) ;
#152=CARTESIAN_POINT('Axis2P3D Location',(-10.,0.,-41.5)) ;
#156=CARTESIAN_POINT('Vertex',(-10.,-1.75,-41.5)) ;
#159=CARTESIAN_POINT('Line Origine',(-6.58999999984,-1.75,-41.5)) ;
#163=CARTESIAN_POINT('Vertex',(-8.5,-1.75,-41.5)) ;
#166=CARTESIAN_POINT('Axis2P3D Location',(-8.5,0.,-41.5)) ;
#178=CARTESIAN_POINT('Axis2P3D Location',(-10.,0.,-41.5)) ;
#183=CARTESIAN_POINT('Axis2P3D Location',(-8.5,0.,-41.5)) ;
#195=CARTESIAN_POINT('Axis2P3D Location',(-10.,-1.775,-35.75)) ;
#200=CARTESIAN_POINT('Line Origine',(-8.9375,-1.775,-32.25)) ;
#204=CARTESIAN_POINT('Vertex',(-10.,-1.775,-32.25)) ;
#207=CARTESIAN_POINT('Line Origine',(-10.,-1.775,-34.)) ;
#211=CARTESIAN_POINT('Vertex',(-10.,-1.775,-35.75)) ;
#214=CARTESIAN_POINT('Line Origine',(-8.9375,-1.775,-35.75)) ;
#226=CARTESIAN_POINT('Axis2P3D Location',(-10.,2.975,-30.)) ;
#231=CARTESIAN_POINT('Line Origine',(-10.,2.375,-32.25)) ;
#235=CARTESIAN_POINT('Vertex',(-10.,2.975,-32.25)) ;
#238=CARTESIAN_POINT('Line Origine',(-10.,2.375,-35.75)) ;
#242=CARTESIAN_POINT('Vertex',(-10.,2.975,-35.75)) ;
#245=CARTESIAN_POINT('Line Origine',(-10.,2.975,-41.875)) ;
#249=CARTESIAN_POINT('Vertex',(-10.,2.975,-48.)) ;
#252=CARTESIAN_POINT('Line Origine',(-10.,0.,-48.)) ;
#256=CARTESIAN_POINT('Vertex',(-10.,-2.975,-48.)) ;
#259=CARTESIAN_POINT('Line Origine',(-10.,-2.975,-41.875)) ;
#263=CARTESIAN_POINT('Vertex',(-10.,-2.975,-35.75)) ;
#266=CARTESIAN_POINT('Line Origine',(-10.,-2.375,-35.75)) ;
#271=CARTESIAN_POINT('Line Origine',(-10.,-2.375,-32.25)) ;
#275=CARTESIAN_POINT('Vertex',(-10.,-2.975,-32.25)) ;
#278=CARTESIAN_POINT('Line Origine',(-10.,-2.975,-31.125)) ;
#282=CARTESIAN_POINT('Vertex',(-10.,-2.975,-30.)) ;
#285=CARTESIAN_POINT('Line Origine',(-10.,0.,-30.)) ;
#289=CARTESIAN_POINT('Vertex',(-10.,2.975,-30.)) ;
#292=CARTESIAN_POINT('Line Origine',(-10.,2.975,-31.125)) ;
#316=CARTESIAN_POINT('Axis2P3D Location',(-4.5,1.975,-41.875)) ;
#321=CARTESIAN_POINT('Line Origine',(-5.,2.475,-37.4)) ;
#325=CARTESIAN_POINT('Vertex',(-4.5,1.975,-37.4)) ;
#327=CARTESIAN_POINT('Vertex',(-5.5,2.975,-37.4)) ;
#330=CARTESIAN_POINT('Line Origine',(-5.5,2.975,-41.875)) ;
#334=CARTESIAN_POINT('Vertex',(-5.5,2.975,-35.75)) ;
#337=CARTESIAN_POINT('Line Origine',(-5.,2.475,-35.75)) ;
#341=CARTESIAN_POINT('Vertex',(-4.5,1.975,-35.75)) ;
#344=CARTESIAN_POINT('Line Origine',(-4.5,1.975,-41.875)) ;
#356=CARTESIAN_POINT('Axis2P3D Location',(-4.5,2.975,-30.)) ;
#361=CARTESIAN_POINT('Line Origine',(-5.5,2.975,-31.125)) ;
#365=CARTESIAN_POINT('Vertex',(-5.5,2.975,-30.)) ;
#367=CARTESIAN_POINT('Vertex',(-5.5,2.975,-32.25)) ;
#370=CARTESIAN_POINT('Line Origine',(-7.75,2.975,-32.25)) ;
#375=CARTESIAN_POINT('Line Origine',(-7.75,2.975,-30.)) ;
#387=CARTESIAN_POINT('Axis2P3D Location',(-4.5,1.975,-31.125)) ;
#392=CARTESIAN_POINT('Line Origine',(-5.,2.475,-32.25)) ;
#396=CARTESIAN_POINT('Vertex',(-4.5,1.975,-32.25)) ;
#399=CARTESIAN_POINT('Line Origine',(-5.,2.475,-30.)) ;
#403=CARTESIAN_POINT('Vertex',(-4.5,1.975,-30.)) ;
#406=CARTESIAN_POINT('Line Origine',(-4.5,1.975,-31.125)) ;
#418=CARTESIAN_POINT('Axis2P3D Location',(-4.5,-2.975,-30.)) ;
#423=CARTESIAN_POINT('Line Origine',(-4.5,-1.975,-36.575)) ;
#427=CARTESIAN_POINT('Vertex',(-4.5,-1.975,-35.75)) ;
#429=CARTESIAN_POINT('Vertex',(-4.5,-1.975,-37.4)) ;
#432=CARTESIAN_POINT('Line Origine',(-4.5,0.,-37.4)) ;
#437=CARTESIAN_POINT('Line Origine',(-4.5,0.,-35.75)) ;
#449=CARTESIAN_POINT('Axis2P3D Location',(-10.,1.775,-35.75)) ;
#454=CARTESIAN_POINT('Line Origine',(-7.75,-2.975,-35.75)) ;
#458=CARTESIAN_POINT('Vertex',(-5.5,-2.975,-35.75)) ;
#461=CARTESIAN_POINT('Line Origine',(-5.,-2.475,-35.75)) ;
#466=CARTESIAN_POINT('Line Origine',(-7.75,2.975,-35.75)) ;
#485=CARTESIAN_POINT('Axis2P3D Location',(-4.5,-1.975,-41.875)) ;
#490=CARTESIAN_POINT('Line Origine',(-5.5,-2.975,-41.875)) ;
#494=CARTESIAN_POINT('Vertex',(-5.5,-2.975,-37.4)) ;
#497=CARTESIAN_POINT('Line Origine',(-5.,-2.475,-37.4)) ;
#509=CARTESIAN_POINT('Axis2P3D Location',(-10.,-2.975,-30.)) ;
#514=CARTESIAN_POINT('Line Origine',(-5.5,-2.975,-31.125)) ;
#518=CARTESIAN_POINT('Vertex',(-5.5,-2.975,-30.)) ;
#520=CARTESIAN_POINT('Vertex',(-5.5,-2.975,-32.25)) ;
#523=CARTESIAN_POINT('Line Origine',(-7.75,-2.975,-30.)) ;
#528=CARTESIAN_POINT('Line Origine',(-7.75,-2.975,-32.25)) ;
#540=CARTESIAN_POINT('Axis2P3D Location',(-10.,2.975,-32.25)) ;
#545=CARTESIAN_POINT('Line Origine',(-4.5,0.,-32.25)) ;
#549=CARTESIAN_POINT('Vertex',(-4.5,-1.975,-32.25)) ;
#552=CARTESIAN_POINT('Line Origine',(-5.,-2.475,-32.25)) ;
#571=CARTESIAN_POINT('Line Origine',(-4.5,-1.975,-31.125)) ;
#575=CARTESIAN_POINT('Vertex',(-4.5,-1.975,-30.)) ;
#578=CARTESIAN_POINT('Line Origine',(-4.5,0.,-30.)) ;
#590=CARTESIAN_POINT('Axis2P3D Location',(0.,0.,-30.)) ;
#595=CARTESIAN_POINT('Line Origine',(-5.,-2.475,-30.)) ;
#609=CARTESIAN_POINT('Axis2P3D Location',(-4.5,-1.975,-31.125)) ;
#621=CARTESIAN_POINT('Line Origine',(-9.,-2.975,-42.7)) ;
#625=CARTESIAN_POINT('Vertex',(-9.,-2.975,-37.4)) ;
#627=CARTESIAN_POINT('Vertex',(-9.,-2.975,-48.)) ;
#630=CARTESIAN_POINT('Line Origine',(-7.25,-2.975,-37.4)) ;
#635=CARTESIAN_POINT('Line Origine',(-9.5,-2.975,-48.)) ;
#649=CARTESIAN_POINT('Axis2P3D Location',(-9.,-2.975,-41.875)) ;
#654=CARTESIAN_POINT('Line Origine',(-8.75,-2.725,-48.)) ;
#658=CARTESIAN_POINT('Vertex',(-8.5,-2.475,-48.)) ;
#661=CARTESIAN_POINT('Line Origine',(-8.5,-2.475,-41.875)) ;
#665=CARTESIAN_POINT('Vertex',(-8.5,-2.475,-37.4)) ;
#668=CARTESIAN_POINT('Line Origine',(-8.75,-2.725,-37.4)) ;
#680=CARTESIAN_POINT('Axis2P3D Location',(-3.5577495862,2.975,-37.4)) ;
#685=CARTESIAN_POINT('Line Origine',(-7.25,2.975,-37.4)) ;
#689=CARTESIAN_POINT('Vertex',(-9.,2.975,-37.4)) ;
#692=CARTESIAN_POINT('Line Origine',(-8.5,0.,-37.4)) ;
#696=CARTESIAN_POINT('Vertex',(-8.5,2.475,-37.4)) ;
#699=CARTESIAN_POINT('Line Origine',(-8.75,2.725,-37.4)) ;
#715=CARTESIAN_POINT('Line Origine',(-9.,2.975,-42.7)) ;
#719=CARTESIAN_POINT('Vertex',(-9.,2.975,-48.)) ;
#722=CARTESIAN_POINT('Line Origine',(-9.5,2.975,-48.)) ;
#736=CARTESIAN_POINT('Axis2P3D Location',(0.,0.,-48.)) ;
#741=CARTESIAN_POINT('Line Origine',(-8.75,2.725,-48.)) ;
#745=CARTESIAN_POINT('Vertex',(-8.5,2.475,-48.)) ;
#748=CARTESIAN_POINT('Line Origine',(-8.5,0.,-48.)) ;
#762=CARTESIAN_POINT('Axis2P3D Location',(-8.5,2.975,-53.236485642)) ;
#767=CARTESIAN_POINT('Line Origine',(-8.5,2.475,-42.7)) ;
#783=CARTESIAN_POINT('Axis2P3D Location',(-9.,2.975,-41.875)) ;
#52=DIRECTION('Axis2P3D Direction',(0.,0.,-1.)) ;
#53=DIRECTION('Axis2P3D XDirection',(3.21624529935E-016,1.,0.)) ;
#57=DIRECTION('Axis2P3D Direction',(0.,0.,-1.)) ;
#66=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#73=DIRECTION('Axis2P3D Direction',(0.,0.,-1.)) ;
#80=DIRECTION('Axis2P3D Direction',(0.,0.,-1.)) ;
#87=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#94=DIRECTION('Axis2P3D Direction',(0.,0.,-1.)) ;
#108=DIRECTION('Axis2P3D Direction',(0.,1.,0.)) ;
#109=DIRECTION('Axis2P3D XDirection',(0.,0.,1.)) ;
#113=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#120=DIRECTION('Vector Direction',(0.,0.,1.)) ;
#127=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#139=DIRECTION('Axis2P3D Direction',(-1.,0.,0.)) ;
#140=DIRECTION('Axis2P3D XDirection',(0.,1.,1.22464679915E-016)) ;
#144=DIRECTION('Vector Direction',(-1.,0.,0.)) ;
#153=DIRECTION('Axis2P3D Direction',(-1.,0.,0.)) ;
#160=DIRECTION('Vector Direction',(-1.,0.,0.)) ;
#167=DIRECTION('Axis2P3D Direction',(-1.,0.,0.)) ;
#179=DIRECTION('Axis2P3D Direction',(-1.,0.,0.)) ;
#184=DIRECTION('Axis2P3D Direction',(-1.,0.,0.)) ;
#196=DIRECTION('Axis2P3D Direction',(0.,1.,0.)) ;
#197=DIRECTION('Axis2P3D XDirection',(0.,0.,1.)) ;
#201=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#208=DIRECTION('Vector Direction',(0.,0.,1.)) ;
#215=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#227=DIRECTION('Axis2P3D Direction',(1.,0.,0.)) ;
#228=DIRECTION('Axis2P3D XDirection',(0.,-1.,0.)) ;
#232=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#239=DIRECTION('Vector Direction',(0.,1.,0.)) ;
#246=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#253=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#260=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#267=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#272=DIRECTION('Vector Direction',(0.,1.,0.)) ;
#279=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#286=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#293=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#317=DIRECTION('Axis2P3D Direction',(0.707106781187,0.707106781187,0.)) ;
#318=DIRECTION('Axis2P3D XDirection',(0.,0.,-1.)) ;
#322=DIRECTION('Vector Direction',(-0.707106781187,0.707106781187,0.)) ;
#331=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#338=DIRECTION('Vector Direction',(-0.707106781187,0.707106781187,0.)) ;
#345=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#357=DIRECTION('Axis2P3D Direction',(-0.,-1.,-0.)) ;
#358=DIRECTION('Axis2P3D XDirection',(-1.,0.,0.)) ;
#362=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#371=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#376=DIRECTION('Vector Direction',(-1.,0.,0.)) ;
#388=DIRECTION('Axis2P3D Direction',(0.707106781187,0.707106781187,0.)) ;
#389=DIRECTION('Axis2P3D XDirection',(0.,0.,-1.)) ;
#393=DIRECTION('Vector Direction',(-0.707106781187,0.707106781187,0.)) ;
#400=DIRECTION('Vector Direction',(-0.707106781187,0.707106781187,0.)) ;
#407=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#419=DIRECTION('Axis2P3D Direction',(-1.,0.,0.)) ;
#420=DIRECTION('Axis2P3D XDirection',(0.,1.,0.)) ;
#424=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#433=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#438=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#450=DIRECTION('Axis2P3D Direction',(0.,0.,-1.)) ;
#451=DIRECTION('Axis2P3D XDirection',(0.,1.,0.)) ;
#455=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#462=DIRECTION('Vector Direction',(0.707106781187,0.707106781187,0.)) ;
#467=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#486=DIRECTION('Axis2P3D Direction',(-0.707106781187,0.707106781187,0.)) ;
#487=DIRECTION('Axis2P3D XDirection',(0.,0.,-1.)) ;
#491=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#498=DIRECTION('Vector Direction',(-0.707106781187,-0.707106781187,0.)) ;
#510=DIRECTION('Axis2P3D Direction',(-0.,1.,0.)) ;
#511=DIRECTION('Axis2P3D XDirection',(1.,0.,0.)) ;
#515=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#524=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#529=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#541=DIRECTION('Axis2P3D Direction',(-0.,0.,1.)) ;
#542=DIRECTION('Axis2P3D XDirection',(0.,-1.,0.)) ;
#546=DIRECTION('Vector Direction',(0.,1.,0.)) ;
#553=DIRECTION('Vector Direction',(-0.707106781187,-0.707106781187,0.)) ;
#572=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#579=DIRECTION('Vector Direction',(0.,1.,0.)) ;
#591=DIRECTION('Axis2P3D Direction',(0.,-0.,1.)) ;
#592=DIRECTION('Axis2P3D XDirection',(1.,0.,0.)) ;
#596=DIRECTION('Vector Direction',(-0.707106781187,-0.707106781187,0.)) ;
#610=DIRECTION('Axis2P3D Direction',(-0.707106781187,0.707106781187,0.)) ;
#611=DIRECTION('Axis2P3D XDirection',(0.,0.,-1.)) ;
#622=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#631=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#636=DIRECTION('Vector Direction',(1.,0.,0.)) ;
#650=DIRECTION('Axis2P3D Direction',(0.707106781187,-0.707106781187,0.)) ;
#651=DIRECTION('Axis2P3D XDirection',(0.,0.,-1.)) ;
#655=DIRECTION('Vector Direction',(0.707106781187,0.707106781187,0.)) ;
#662=DIRECTION('Vector Direction',(0.,0.,-1.)) ;
#669=DIRECTION('Vector Direction',(0.707106781187,0.707106781187,0.)) ;
#681=DIRECTION('Axis2P3D Direction',(0.,0.,1.)) ;
#682=DIRECTION('Axis2P3D XDirection',(-1.,0.,0.)) ;
#686=DIRECTION('Vector Direction',(-1.,0.,0.)) ;
#693=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#700=DIRECTION('Vector Direction',(-0.707106781187,0.707106781187,0.)) ;
#716=DIRECTION('Vector Direction',(0.,0.,1.)) ;
#723=DIRECTION('Vector Direction',(-1.,0.,0.)) ;
#737=DIRECTION('Axis2P3D Direction',(0.,-0.,1.)) ;
#738=DIRECTION('Axis2P3D XDirection',(1.,0.,0.)) ;
#742=DIRECTION('Vector Direction',(0.707106781187,-0.707106781187,0.)) ;
#749=DIRECTION('Vector Direction',(0.,-1.,0.)) ;
#763=DIRECTION('Axis2P3D Direction',(1.,0.,-0.)) ;
#764=DIRECTION('Axis2P3D XDirection',(0.,0.,1.)) ;
#768=DIRECTION('Vector Direction',(0.,0.,1.)) ;
#784=DIRECTION('Axis2P3D Direction',(0.707106781187,0.707106781187,-0.)) ;
#785=DIRECTION('Axis2P3D XDirection',(0.,0.,1.)) ;
#47=AXIS2_PLACEMENT_3D(' ',#46,$,$) ;
#54=AXIS2_PLACEMENT_3D('Cylinder Axis2P3D',#51,#52,#53) ;
#58=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#56,#57,$) ;
#74=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#72,#73,$) ;
#81=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#79,#80,$) ;
#95=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#93,#94,$) ;
#110=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#107,#108,#109) ;
#141=AXIS2_PLACEMENT_3D('Cylinder Axis2P3D',#138,#139,#140) ;
#154=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#152,#153,$) ;
#168=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#166,#167,$) ;
#180=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#178,#179,$) ;
#185=AXIS2_PLACEMENT_3D('Circle Axis2P3D',#183,#184,$) ;
#198=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#195,#196,#197) ;
#229=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#226,#227,#228) ;
#319=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#316,#317,#318) ;
#359=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#356,#357,#358) ;
#390=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#387,#388,#389) ;
#421=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#418,#419,#420) ;
#452=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#449,#450,#451) ;
#488=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#485,#486,#487) ;
#512=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#509,#510,#511) ;
#543=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#540,#541,#542) ;
#593=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#590,#591,#592) ;
#612=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#609,#610,#611) ;
#652=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#649,#650,#651) ;
#683=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#680,#681,#682) ;
#739=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#736,#737,#738) ;
#765=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#762,#763,#764) ;
#786=AXIS2_PLACEMENT_3D('Plane Axis2P3D',#783,#784,#785) ;
#40=PRODUCT_DEFINITION_SHAPE(' ',' ',#14) ;
#31=APPROVAL_PERSON_ORGANIZATION(#25,#21,#19) ;
#25=PERSON_AND_ORGANIZATION(#22,#23) ;
#22=PERSON(' ',' ',' ',$,$,$) ;
#23=ORGANIZATION(' ',' ',' ') ;
#21=APPROVAL(#20,' ') ;
#20=APPROVAL_STATUS('not_yet_approved') ;
#19=APPROVAL_ROLE('APPROVER') ;
#13=DATE_AND_TIME(#11,#12) ;
#12=LOCAL_TIME(19,10,19.,#10) ;
#10=COORDINATED_UNIVERSAL_TIME_OFFSET(0,0,.AHEAD.) ;
#99=ORIENTED_EDGE('',*,*,#64,.T.) ;
#100=ORIENTED_EDGE('',*,*,#71,.F.) ;
#101=ORIENTED_EDGE('',*,*,#78,.T.) ;
#102=ORIENTED_EDGE('',*,*,#85,.T.) ;
#103=ORIENTED_EDGE('',*,*,#92,.T.) ;
#104=ORIENTED_EDGE('',*,*,#97,.T.) ;
#132=ORIENTED_EDGE('',*,*,#118,.F.) ;
#133=ORIENTED_EDGE('',*,*,#125,.T.) ;
#134=ORIENTED_EDGE('',*,*,#130,.T.) ;
#135=ORIENTED_EDGE('',*,*,#71,.T.) ;
#172=ORIENTED_EDGE('',*,*,#151,.F.) ;
#173=ORIENTED_EDGE('',*,*,#158,.T.) ;
#174=ORIENTED_EDGE('',*,*,#165,.T.) ;
#175=ORIENTED_EDGE('',*,*,#170,.T.) ;
#189=ORIENTED_EDGE('',*,*,#165,.F.) ;
#190=ORIENTED_EDGE('',*,*,#182,.T.) ;
#191=ORIENTED_EDGE('',*,*,#151,.T.) ;
#192=ORIENTED_EDGE('',*,*,#187,.T.) ;
#220=ORIENTED_EDGE('',*,*,#92,.F.) ;
#221=ORIENTED_EDGE('',*,*,#206,.F.) ;
#222=ORIENTED_EDGE('',*,*,#213,.T.) ;
#223=ORIENTED_EDGE('',*,*,#218,.T.) ;
#298=ORIENTED_EDGE('',*,*,#237,.F.) ;
#299=ORIENTED_EDGE('',*,*,#125,.F.) ;
#300=ORIENTED_EDGE('',*,*,#244,.F.) ;
#301=ORIENTED_EDGE('',*,*,#251,.T.) ;
#302=ORIENTED_EDGE('',*,*,#258,.T.) ;
#303=ORIENTED_EDGE('',*,*,#265,.F.) ;
#304=ORIENTED_EDGE('',*,*,#270,.F.) ;
#305=ORIENTED_EDGE('',*,*,#213,.F.) ;
#306=ORIENTED_EDGE('',*,*,#277,.F.) ;
#307=ORIENTED_EDGE('',*,*,#284,.F.) ;
#308=ORIENTED_EDGE('',*,*,#291,.F.) ;
#309=ORIENTED_EDGE('',*,*,#296,.T.) ;
#312=ORIENTED_EDGE('',*,*,#182,.F.) ;
#313=ORIENTED_EDGE('',*,*,#158,.F.) ;
#350=ORIENTED_EDGE('',*,*,#329,.T.) ;
#351=ORIENTED_EDGE('',*,*,#336,.F.) ;
#352=ORIENTED_EDGE('',*,*,#343,.T.) ;
#353=ORIENTED_EDGE('',*,*,#348,.T.) ;
#381=ORIENTED_EDGE('',*,*,#369,.T.) ;
#382=ORIENTED_EDGE('',*,*,#374,.F.) ;
#383=ORIENTED_EDGE('',*,*,#296,.F.) ;
#384=ORIENTED_EDGE('',*,*,#379,.F.) ;
#412=ORIENTED_EDGE('',*,*,#398,.T.) ;
#413=ORIENTED_EDGE('',*,*,#369,.F.) ;
#414=ORIENTED_EDGE('',*,*,#405,.T.) ;
#415=ORIENTED_EDGE('',*,*,#410,.T.) ;
#443=ORIENTED_EDGE('',*,*,#431,.T.) ;
#444=ORIENTED_EDGE('',*,*,#436,.F.) ;
#445=ORIENTED_EDGE('',*,*,#348,.F.) ;
#446=ORIENTED_EDGE('',*,*,#441,.T.) ;
#472=ORIENTED_EDGE('',*,*,#97,.F.) ;
#473=ORIENTED_EDGE('',*,*,#218,.F.) ;
#474=ORIENTED_EDGE('',*,*,#270,.T.) ;
#475=ORIENTED_EDGE('',*,*,#460,.T.) ;
#476=ORIENTED_EDGE('',*,*,#465,.F.) ;
#477=ORIENTED_EDGE('',*,*,#441,.F.) ;
#478=ORIENTED_EDGE('',*,*,#343,.F.) ;
#479=ORIENTED_EDGE('',*,*,#470,.F.) ;
#480=ORIENTED_EDGE('',*,*,#244,.T.) ;
#481=ORIENTED_EDGE('',*,*,#118,.T.) ;
#482=ORIENTED_EDGE('',*,*,#64,.F.) ;
#503=ORIENTED_EDGE('',*,*,#431,.F.) ;
#504=ORIENTED_EDGE('',*,*,#465,.T.) ;
#505=ORIENTED_EDGE('',*,*,#496,.T.) ;
#506=ORIENTED_EDGE('',*,*,#501,.T.) ;
#534=ORIENTED_EDGE('',*,*,#522,.F.) ;
#535=ORIENTED_EDGE('',*,*,#527,.F.) ;
#536=ORIENTED_EDGE('',*,*,#284,.T.) ;
#537=ORIENTED_EDGE('',*,*,#532,.T.) ;
#558=ORIENTED_EDGE('',*,*,#78,.F.) ;
#559=ORIENTED_EDGE('',*,*,#130,.F.) ;
#560=ORIENTED_EDGE('',*,*,#237,.T.) ;
#561=ORIENTED_EDGE('',*,*,#374,.T.) ;
#562=ORIENTED_EDGE('',*,*,#398,.F.) ;
#563=ORIENTED_EDGE('',*,*,#551,.T.) ;
#564=ORIENTED_EDGE('',*,*,#556,.F.) ;
#565=ORIENTED_EDGE('',*,*,#532,.F.) ;
#566=ORIENTED_EDGE('',*,*,#277,.T.) ;
#567=ORIENTED_EDGE('',*,*,#206,.T.) ;
#568=ORIENTED_EDGE('',*,*,#85,.F.) ;
#584=ORIENTED_EDGE('',*,*,#577,.T.) ;
#585=ORIENTED_EDGE('',*,*,#551,.F.) ;
#586=ORIENTED_EDGE('',*,*,#410,.F.) ;
#587=ORIENTED_EDGE('',*,*,#582,.F.) ;
#601=ORIENTED_EDGE('',*,*,#582,.T.) ;
#602=ORIENTED_EDGE('',*,*,#405,.F.) ;
#603=ORIENTED_EDGE('',*,*,#379,.T.) ;
#604=ORIENTED_EDGE('',*,*,#291,.T.) ;
#605=ORIENTED_EDGE('',*,*,#527,.T.) ;
#606=ORIENTED_EDGE('',*,*,#599,.F.) ;
#615=ORIENTED_EDGE('',*,*,#577,.F.) ;
#616=ORIENTED_EDGE('',*,*,#599,.T.) ;
#617=ORIENTED_EDGE('',*,*,#522,.T.) ;
#618=ORIENTED_EDGE('',*,*,#556,.T.) ;
#641=ORIENTED_EDGE('',*,*,#629,.F.) ;
#642=ORIENTED_EDGE('',*,*,#634,.F.) ;
#643=ORIENTED_EDGE('',*,*,#496,.F.) ;
#644=ORIENTED_EDGE('',*,*,#460,.F.) ;
#645=ORIENTED_EDGE('',*,*,#265,.T.) ;
#646=ORIENTED_EDGE('',*,*,#639,.T.) ;
#674=ORIENTED_EDGE('',*,*,#660,.T.) ;
#675=ORIENTED_EDGE('',*,*,#667,.F.) ;
#676=ORIENTED_EDGE('',*,*,#672,.T.) ;
#677=ORIENTED_EDGE('',*,*,#629,.T.) ;
#705=ORIENTED_EDGE('',*,*,#691,.T.) ;
#706=ORIENTED_EDGE('',*,*,#329,.F.) ;
#707=ORIENTED_EDGE('',*,*,#436,.T.) ;
#708=ORIENTED_EDGE('',*,*,#501,.F.) ;
#709=ORIENTED_EDGE('',*,*,#634,.T.) ;
#710=ORIENTED_EDGE('',*,*,#672,.F.) ;
#711=ORIENTED_EDGE('',*,*,#698,.F.) ;
#712=ORIENTED_EDGE('',*,*,#703,.F.) ;
#728=ORIENTED_EDGE('',*,*,#721,.F.) ;
#729=ORIENTED_EDGE('',*,*,#726,.T.) ;
#730=ORIENTED_EDGE('',*,*,#251,.F.) ;
#731=ORIENTED_EDGE('',*,*,#470,.T.) ;
#732=ORIENTED_EDGE('',*,*,#336,.T.) ;
#733=ORIENTED_EDGE('',*,*,#691,.F.) ;
#754=ORIENTED_EDGE('',*,*,#747,.F.) ;
#755=ORIENTED_EDGE('',*,*,#752,.T.) ;
#756=ORIENTED_EDGE('',*,*,#660,.F.) ;
#757=ORIENTED_EDGE('',*,*,#639,.F.) ;
#758=ORIENTED_EDGE('',*,*,#258,.F.) ;
#759=ORIENTED_EDGE('',*,*,#726,.F.) ;
#773=ORIENTED_EDGE('',*,*,#698,.T.) ;
#774=ORIENTED_EDGE('',*,*,#667,.T.) ;
#775=ORIENTED_EDGE('',*,*,#752,.F.) ;
#776=ORIENTED_EDGE('',*,*,#771,.T.) ;
#779=ORIENTED_EDGE('',*,*,#187,.F.) ;
#780=ORIENTED_EDGE('',*,*,#170,.F.) ;
#789=ORIENTED_EDGE('',*,*,#703,.T.) ;
#790=ORIENTED_EDGE('',*,*,#771,.F.) ;
#791=ORIENTED_EDGE('',*,*,#747,.T.) ;
#792=ORIENTED_EDGE('',*,*,#721,.T.) ;
#314=FACE_BOUND('',#311,.T.) ;
#781=FACE_BOUND('',#778,.T.) ;
#50=CLOSED_SHELL('Closed Shell',(#106,#137,#177,#194,#225,#315,#355,#386,#417,#448,#484,#508,#539,#570,#589,#608,#620,#648,#679,#714,#735,#761,#782,#794)) ;
#67=VECTOR('Line Direction',#66,1.) ;
#88=VECTOR('Line Direction',#87,1.) ;
#114=VECTOR('Line Direction',#113,1.) ;
#121=VECTOR('Line Direction',#120,1.) ;
#128=VECTOR('Line Direction',#127,1.) ;
#145=VECTOR('Line Direction',#144,1.) ;
#161=VECTOR('Line Direction',#160,1.) ;
#202=VECTOR('Line Direction',#201,1.) ;
#209=VECTOR('Line Direction',#208,1.) ;
#216=VECTOR('Line Direction',#215,1.) ;
#233=VECTOR('Line Direction',#232,1.) ;
#240=VECTOR('Line Direction',#239,1.) ;
#247=VECTOR('Line Direction',#246,1.) ;
#254=VECTOR('Line Direction',#253,1.) ;
#261=VECTOR('Line Direction',#260,1.) ;
#268=VECTOR('Line Direction',#267,1.) ;
#273=VECTOR('Line Direction',#272,1.) ;
#280=VECTOR('Line Direction',#279,1.) ;
#287=VECTOR('Line Direction',#286,1.) ;
#294=VECTOR('Line Direction',#293,1.) ;
#323=VECTOR('Line Direction',#322,1.) ;
#332=VECTOR('Line Direction',#331,1.) ;
#339=VECTOR('Line Direction',#338,1.) ;
#346=VECTOR('Line Direction',#345,1.) ;
#363=VECTOR('Line Direction',#362,1.) ;
#372=VECTOR('Line Direction',#371,1.) ;
#377=VECTOR('Line Direction',#376,1.) ;
#394=VECTOR('Line Direction',#393,1.) ;
#401=VECTOR('Line Direction',#400,1.) ;
#408=VECTOR('Line Direction',#407,1.) ;
#425=VECTOR('Line Direction',#424,1.) ;
#434=VECTOR('Line Direction',#433,1.) ;
#439=VECTOR('Line Direction',#438,1.) ;
#456=VECTOR('Line Direction',#455,1.) ;
#463=VECTOR('Line Direction',#462,1.) ;
#468=VECTOR('Line Direction',#467,1.) ;
#492=VECTOR('Line Direction',#491,1.) ;
#499=VECTOR('Line Direction',#498,1.) ;
#516=VECTOR('Line Direction',#515,1.) ;
#525=VECTOR('Line Direction',#524,1.) ;
#530=VECTOR('Line Direction',#529,1.) ;
#547=VECTOR('Line Direction',#546,1.) ;
#554=VECTOR('Line Direction',#553,1.) ;
#573=VECTOR('Line Direction',#572,1.) ;
#580=VECTOR('Line Direction',#579,1.) ;
#597=VECTOR('Line Direction',#596,1.) ;
#623=VECTOR('Line Direction',#622,1.) ;
#632=VECTOR('Line Direction',#631,1.) ;
#637=VECTOR('Line Direction',#636,1.) ;
#656=VECTOR('Line Direction',#655,1.) ;
#663=VECTOR('Line Direction',#662,1.) ;
#670=VECTOR('Line Direction',#669,1.) ;
#687=VECTOR('Line Direction',#686,1.) ;
#694=VECTOR('Line Direction',#693,1.) ;
#701=VECTOR('Line Direction',#700,1.) ;
#717=VECTOR('Line Direction',#716,1.) ;
#724=VECTOR('Line Direction',#723,1.) ;
#743=VECTOR('Line Direction',#742,1.) ;
#750=VECTOR('Line Direction',#749,1.) ;
#769=VECTOR('Line Direction',#768,1.) ;
#796=ADVANCED_BREP_SHAPE_REPRESENTATION('NONE',(#795),#45) ;
#48=SHAPE_REPRESENTATION(' ',(#47),#45) ;
#106=ADVANCED_FACE('PartBody',(#105),#55,.T.) ;
#137=ADVANCED_FACE('PartBody',(#136),#111,.T.) ;
#177=ADVANCED_FACE('PartBody',(#176),#142,.F.) ;
#194=ADVANCED_FACE('PartBody',(#193),#142,.F.) ;
#225=ADVANCED_FACE('PartBody',(#224),#199,.F.) ;
#315=ADVANCED_FACE('PartBody',(#310,#314),#230,.F.) ;
#355=ADVANCED_FACE('PartBody',(#354),#320,.T.) ;
#386=ADVANCED_FACE('PartBody',(#385),#360,.F.) ;
#417=ADVANCED_FACE('PartBody',(#416),#391,.T.) ;
#448=ADVANCED_FACE('PartBody',(#447),#422,.F.) ;
#484=ADVANCED_FACE('PartBody',(#483),#453,.F.) ;
#508=ADVANCED_FACE('PartBody',(#507),#489,.F.) ;
#539=ADVANCED_FACE('PartBody',(#538),#513,.F.) ;
#570=ADVANCED_FACE('PartBody',(#569),#544,.F.) ;
#589=ADVANCED_FACE('PartBody',(#588),#422,.F.) ;
#608=ADVANCED_FACE('PartBody',(#607),#594,.T.) ;
#620=ADVANCED_FACE('PartBody',(#619),#613,.F.) ;
#648=ADVANCED_FACE('PartBody',(#647),#513,.F.) ;
#679=ADVANCED_FACE('PartBody',(#678),#653,.T.) ;
#714=ADVANCED_FACE('PartBody',(#713),#684,.F.) ;
#735=ADVANCED_FACE('PartBody',(#734),#360,.F.) ;
#761=ADVANCED_FACE('PartBody',(#760),#740,.F.) ;
#782=ADVANCED_FACE('PartBody',(#777,#781),#766,.T.) ;
#794=ADVANCED_FACE('PartBody',(#793),#787,.T.) ;
#4=APPLICATION_PROTOCOL_DEFINITION('international standard','config_control_design',1994,#1) ;
#32=APPROVAL_DATE_TIME(#13,#21) ;
#795=MANIFOLD_SOLID_BREP('PartBody',#50) ;
#11=CALENDAR_DATE(2020,8,1) ;
#30=CC_DESIGN_APPROVAL(#21,(#16,#6,#14)) ;
#18=CC_DESIGN_DATE_AND_TIME_ASSIGNMENT(#13,#17,(#16)) ;
#29=CC_DESIGN_DATE_AND_TIME_ASSIGNMENT(#13,#28,(#14)) ;
#17=DATE_TIME_ROLE('classification_date') ;
#28=DATE_TIME_ROLE('creation_date') ;
#27=CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT(#25,#26,(#16)) ;
#33=CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT(#25,#34,(#6)) ;
#35=CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT(#25,#36,(#6,#14)) ;
#37=CC_DESIGN_PERSON_AND_ORGANIZATION_ASSIGNMENT(#25,#38,(#5)) ;
#26=PERSON_AND_ORGANIZATION_ROLE('classification_officer') ;
#34=PERSON_AND_ORGANIZATION_ROLE('design_supplier') ;
#36=PERSON_AND_ORGANIZATION_ROLE('creator') ;
#38=PERSON_AND_ORGANIZATION_ROLE('design_owner') ;
#39=CC_DESIGN_SECURITY_CLASSIFICATION(#16,(#6)) ;
#59=CIRCLE('generated circle',#58,1.775) ;
#75=CIRCLE('generated circle',#74,1.775) ;
#82=CIRCLE('generated circle',#81,1.775) ;
#96=CIRCLE('generated circle',#95,1.775) ;
#155=CIRCLE('generated circle',#154,1.75) ;
#169=CIRCLE('generated circle',#168,1.75) ;
#181=CIRCLE('generated circle',#180,1.75) ;
#186=CIRCLE('generated circle',#185,1.75) ;
#797=SHAPE_REPRESENTATION_RELATIONSHIP(' ',' ',#48,#796) ;
#55=CYLINDRICAL_SURFACE('generated cylinder',#54,1.775) ;
#142=CYLINDRICAL_SURFACE('generated cylinder',#141,1.75) ;
#3=DESIGN_CONTEXT(' ',#1,'design') ;
#64=EDGE_CURVE('',#61,#63,#59,.F.) ;
#71=EDGE_CURVE('',#70,#63,#68,.T.) ;
#78=EDGE_CURVE('',#70,#77,#75,.T.) ;
#85=EDGE_CURVE('',#77,#84,#82,.T.) ;
#92=EDGE_CURVE('',#84,#91,#89,.T.) ;
#97=EDGE_CURVE('',#91,#61,#96,.F.) ;
#118=EDGE_CURVE('',#117,#63,#115,.T.) ;
#125=EDGE_CURVE('',#117,#124,#122,.T.) ;
#130=EDGE_CURVE('',#124,#70,#129,.T.) ;
#151=EDGE_CURVE('',#148,#150,#146,.F.) ;
#158=EDGE_CURVE('',#148,#157,#155,.T.) ;
#165=EDGE_CURVE('',#157,#164,#162,.F.) ;
#170=EDGE_CURVE('',#164,#150,#169,.F.) ;
#182=EDGE_CURVE('',#157,#148,#181,.T.) ;
#187=EDGE_CURVE('',#150,#164,#186,.F.) ;
#206=EDGE_CURVE('',#205,#84,#203,.T.) ;
#213=EDGE_CURVE('',#205,#212,#210,.F.) ;
#218=EDGE_CURVE('',#212,#91,#217,.T.) ;
#237=EDGE_CURVE('',#124,#236,#234,.F.) ;
#244=EDGE_CURVE('',#243,#117,#241,.F.) ;
#251=EDGE_CURVE('',#243,#250,#248,.T.) ;
#258=EDGE_CURVE('',#250,#257,#255,.T.) ;
#265=EDGE_CURVE('',#264,#257,#262,.T.) ;
#270=EDGE_CURVE('',#212,#264,#269,.T.) ;
#277=EDGE_CURVE('',#276,#205,#274,.T.) ;
#284=EDGE_CURVE('',#283,#276,#281,.T.) ;
#291=EDGE_CURVE('',#290,#283,#288,.T.) ;
#296=EDGE_CURVE('',#290,#236,#295,.T.) ;
#329=EDGE_CURVE('',#326,#328,#324,.T.) ;
#336=EDGE_CURVE('',#335,#328,#333,.T.) ;
#343=EDGE_CURVE('',#335,#342,#340,.F.) ;
#348=EDGE_CURVE('',#342,#326,#347,.T.) ;
#369=EDGE_CURVE('',#366,#368,#364,.T.) ;
#374=EDGE_CURVE('',#236,#368,#373,.T.) ;
#379=EDGE_CURVE('',#366,#290,#378,.T.) ;
#398=EDGE_CURVE('',#397,#368,#395,.T.) ;
#405=EDGE_CURVE('',#366,#404,#402,.F.) ;
#410=EDGE_CURVE('',#404,#397,#409,.T.) ;
#431=EDGE_CURVE('',#428,#430,#426,.T.) ;
#436=EDGE_CURVE('',#326,#430,#435,.T.) ;
#441=EDGE_CURVE('',#342,#428,#440,.T.) ;
#460=EDGE_CURVE('',#264,#459,#457,.T.) ;
#465=EDGE_CURVE('',#428,#459,#464,.F.) ;
#470=EDGE_CURVE('',#243,#335,#469,.T.) ;
#496=EDGE_CURVE('',#459,#495,#493,.T.) ;
#501=EDGE_CURVE('',#495,#430,#500,.F.) ;
#522=EDGE_CURVE('',#519,#521,#517,.T.) ;
#527=EDGE_CURVE('',#283,#519,#526,.T.) ;
#532=EDGE_CURVE('',#276,#521,#531,.T.) ;
#551=EDGE_CURVE('',#397,#550,#548,.F.) ;
#556=EDGE_CURVE('',#521,#550,#555,.F.) ;
#577=EDGE_CURVE('',#576,#550,#574,.T.) ;
#582=EDGE_CURVE('',#576,#404,#581,.T.) ;
#599=EDGE_CURVE('',#576,#519,#598,.T.) ;
#629=EDGE_CURVE('',#626,#628,#624,.T.) ;
#634=EDGE_CURVE('',#495,#626,#633,.F.) ;
#639=EDGE_CURVE('',#257,#628,#638,.T.) ;
#660=EDGE_CURVE('',#628,#659,#657,.T.) ;
#667=EDGE_CURVE('',#666,#659,#664,.T.) ;
#672=EDGE_CURVE('',#666,#626,#671,.F.) ;
#691=EDGE_CURVE('',#690,#328,#688,.F.) ;
#698=EDGE_CURVE('',#697,#666,#695,.T.) ;
#703=EDGE_CURVE('',#690,#697,#702,.F.) ;
#721=EDGE_CURVE('',#720,#690,#718,.T.) ;
#726=EDGE_CURVE('',#720,#250,#725,.T.) ;
#747=EDGE_CURVE('',#746,#720,#744,.F.) ;
#752=EDGE_CURVE('',#746,#659,#751,.T.) ;
#771=EDGE_CURVE('',#746,#697,#770,.T.) ;
#98=EDGE_LOOP('',(#99,#100,#101,#102,#103,#104)) ;
#131=EDGE_LOOP('',(#132,#133,#134,#135)) ;
#171=EDGE_LOOP('',(#172,#173,#174,#175)) ;
#188=EDGE_LOOP('',(#189,#190,#191,#192)) ;
#219=EDGE_LOOP('',(#220,#221,#222,#223)) ;
#297=EDGE_LOOP('',(#298,#299,#300,#301,#302,#303,#304,#305,#306,#307,#308,#309)) ;
#311=EDGE_LOOP('',(#312,#313)) ;
#349=EDGE_LOOP('',(#350,#351,#352,#353)) ;
#380=EDGE_LOOP('',(#381,#382,#383,#384)) ;
#411=EDGE_LOOP('',(#412,#413,#414,#415)) ;
#442=EDGE_LOOP('',(#443,#444,#445,#446)) ;
#471=EDGE_LOOP('',(#472,#473,#474,#475,#476,#477,#478,#479,#480,#481,#482)) ;
#502=EDGE_LOOP('',(#503,#504,#505,#506)) ;
#533=EDGE_LOOP('',(#534,#535,#536,#537)) ;
#557=EDGE_LOOP('',(#558,#559,#560,#561,#562,#563,#564,#565,#566,#567,#568)) ;
#583=EDGE_LOOP('',(#584,#585,#586,#587)) ;
#600=EDGE_LOOP('',(#601,#602,#603,#604,#605,#606)) ;
#614=EDGE_LOOP('',(#615,#616,#617,#618)) ;
#640=EDGE_LOOP('',(#641,#642,#643,#644,#645,#646)) ;
#673=EDGE_LOOP('',(#674,#675,#676,#677)) ;
#704=EDGE_LOOP('',(#705,#706,#707,#708,#709,#710,#711,#712)) ;
#727=EDGE_LOOP('',(#728,#729,#730,#731,#732,#733)) ;
#753=EDGE_LOOP('',(#754,#755,#756,#757,#758,#759)) ;
#772=EDGE_LOOP('',(#773,#774,#775,#776)) ;
#778=EDGE_LOOP('',(#779,#780)) ;
#788=EDGE_LOOP('',(#789,#790,#791,#792)) ;
#105=FACE_OUTER_BOUND('',#98,.T.) ;
#136=FACE_OUTER_BOUND('',#131,.T.) ;
#176=FACE_OUTER_BOUND('',#171,.T.) ;
#193=FACE_OUTER_BOUND('',#188,.T.) ;
#224=FACE_OUTER_BOUND('',#219,.T.) ;
#310=FACE_OUTER_BOUND('',#297,.T.) ;
#354=FACE_OUTER_BOUND('',#349,.T.) ;
#385=FACE_OUTER_BOUND('',#380,.T.) ;
#416=FACE_OUTER_BOUND('',#411,.T.) ;
#447=FACE_OUTER_BOUND('',#442,.T.) ;
#483=FACE_OUTER_BOUND('',#471,.T.) ;
#507=FACE_OUTER_BOUND('',#502,.T.) ;
#538=FACE_OUTER_BOUND('',#533,.T.) ;
#569=FACE_OUTER_BOUND('',#557,.T.) ;
#588=FACE_OUTER_BOUND('',#583,.T.) ;
#607=FACE_OUTER_BOUND('',#600,.T.) ;
#619=FACE_OUTER_BOUND('',#614,.T.) ;
#647=FACE_OUTER_BOUND('',#640,.T.) ;
#678=FACE_OUTER_BOUND('',#673,.T.) ;
#713=FACE_OUTER_BOUND('',#704,.T.) ;
#734=FACE_OUTER_BOUND('',#727,.T.) ;
#760=FACE_OUTER_BOUND('',#753,.T.) ;
#777=FACE_OUTER_BOUND('',#772,.T.) ;
#793=FACE_OUTER_BOUND('',#788,.T.) ;
#44=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.005),#41,'distance_accuracy_value','CONFUSED CURVE UNCERTAINTY') ;
#68=LINE('Line',#65,#67) ;
#89=LINE('Line',#86,#88) ;
#115=LINE('Line',#112,#114) ;
#122=LINE('Line',#119,#121) ;
#129=LINE('Line',#126,#128) ;
#146=LINE('Line',#143,#145) ;
#162=LINE('Line',#159,#161) ;
#203=LINE('Line',#200,#202) ;
#210=LINE('Line',#207,#209) ;
#217=LINE('Line',#214,#216) ;
#234=LINE('Line',#231,#233) ;
#241=LINE('Line',#238,#240) ;
#248=LINE('Line',#245,#247) ;
#255=LINE('Line',#252,#254) ;
#262=LINE('Line',#259,#261) ;
#269=LINE('Line',#266,#268) ;
#274=LINE('Line',#271,#273) ;
#281=LINE('Line',#278,#280) ;
#288=LINE('Line',#285,#287) ;
#295=LINE('Line',#292,#294) ;
#324=LINE('Line',#321,#323) ;
#333=LINE('Line',#330,#332) ;
#340=LINE('Line',#337,#339) ;
#347=LINE('Line',#344,#346) ;
#364=LINE('Line',#361,#363) ;
#373=LINE('Line',#370,#372) ;
#378=LINE('Line',#375,#377) ;
#395=LINE('Line',#392,#394) ;
#402=LINE('Line',#399,#401) ;
#409=LINE('Line',#406,#408) ;
#426=LINE('Line',#423,#425) ;
#435=LINE('Line',#432,#434) ;
#440=LINE('Line',#437,#439) ;
#457=LINE('Line',#454,#456) ;
#464=LINE('Line',#461,#463) ;
#469=LINE('Line',#466,#468) ;
#493=LINE('Line',#490,#492) ;
#500=LINE('Line',#497,#499) ;
#517=LINE('Line',#514,#516) ;
#526=LINE('Line',#523,#525) ;
#531=LINE('Line',#528,#530) ;
#548=LINE('Line',#545,#547) ;
#555=LINE('Line',#552,#554) ;
#574=LINE('Line',#571,#573) ;
#581=LINE('Line',#578,#580) ;
#598=LINE('Line',#595,#597) ;
#624=LINE('Line',#621,#623) ;
#633=LINE('Line',#630,#632) ;
#638=LINE('Line',#635,#637) ;
#657=LINE('Line',#654,#656) ;
#664=LINE('Line',#661,#663) ;
#671=LINE('Line',#668,#670) ;
#688=LINE('Line',#685,#687) ;
#695=LINE('Line',#692,#694) ;
#702=LINE('Line',#699,#701) ;
#718=LINE('Line',#715,#717) ;
#725=LINE('Line',#722,#724) ;
#744=LINE('Line',#741,#743) ;
#751=LINE('Line',#748,#750) ;
#770=LINE('Line',#767,#769) ;
#2=MECHANICAL_CONTEXT(' ',#1,'mechanical') ;
#24=PERSONAL_ADDRESS(' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',(#22),' ') ;
#111=PLANE('',#110) ;
#199=PLANE('',#198) ;
#230=PLANE('',#229) ;
#320=PLANE('',#319) ;
#360=PLANE('',#359) ;
#391=PLANE('',#390) ;
#422=PLANE('',#421) ;
#453=PLANE('',#452) ;
#489=PLANE('',#488) ;
#513=PLANE('',#512) ;
#544=PLANE('',#543) ;
#594=PLANE('',#593) ;
#613=PLANE('',#612) ;
#653=PLANE('',#652) ;
#684=PLANE('',#683) ;
#740=PLANE('',#739) ;
#766=PLANE('',#765) ;
#787=PLANE('',#786) ;
#7=PRODUCT_CATEGORY('part',$) ;
#9=PRODUCT_CATEGORY_RELATIONSHIP(' ',' ',#7,#8) ;
#6=PRODUCT_DEFINITION_FORMATION_WITH_SPECIFIED_SOURCE('',' ',#5,.NOT_KNOWN.) ;
#8=PRODUCT_RELATED_PRODUCT_CATEGORY('detail',$,(#5)) ;
#49=SHAPE_DEFINITION_REPRESENTATION(#40,#48) ;
#61=VERTEX_POINT('',#60) ;
#63=VERTEX_POINT('',#62) ;
#70=VERTEX_POINT('',#69) ;
#77=VERTEX_POINT('',#76) ;
#84=VERTEX_POINT('',#83) ;
#91=VERTEX_POINT('',#90) ;
#117=VERTEX_POINT('',#116) ;
#124=VERTEX_POINT('',#123) ;
#148=VERTEX_POINT('',#147) ;
#150=VERTEX_POINT('',#149) ;
#157=VERTEX_POINT('',#156) ;
#164=VERTEX_POINT('',#163) ;
#205=VERTEX_POINT('',#204) ;
#212=VERTEX_POINT('',#211) ;
#236=VERTEX_POINT('',#235) ;
#243=VERTEX_POINT('',#242) ;
#250=VERTEX_POINT('',#249) ;
#257=VERTEX_POINT('',#256) ;
#264=VERTEX_POINT('',#263) ;
#276=VERTEX_POINT('',#275) ;
#283=VERTEX_POINT('',#282) ;
#290=VERTEX_POINT('',#289) ;
#326=VERTEX_POINT('',#325) ;
#328=VERTEX_POINT('',#327) ;
#335=VERTEX_POINT('',#334) ;
#342=VERTEX_POINT('',#341) ;
#366=VERTEX_POINT('',#365) ;
#368=VERTEX_POINT('',#367) ;
#397=VERTEX_POINT('',#396) ;
#404=VERTEX_POINT('',#403) ;
#428=VERTEX_POINT('',#427) ;
#430=VERTEX_POINT('',#429) ;
#459=VERTEX_POINT('',#458) ;
#495=VERTEX_POINT('',#494) ;
#519=VERTEX_POINT('',#518) ;
#521=VERTEX_POINT('',#520) ;
#550=VERTEX_POINT('',#549) ;
#576=VERTEX_POINT('',#575) ;
#626=VERTEX_POINT('',#625) ;
#628=VERTEX_POINT('',#627) ;
#659=VERTEX_POINT('',#658) ;
#666=VERTEX_POINT('',#665) ;
#690=VERTEX_POINT('',#689) ;
#697=VERTEX_POINT('',#696) ;
#720=VERTEX_POINT('',#719) ;
#746=VERTEX_POINT('',#745) ;
#41=(LENGTH_UNIT()NAMED_UNIT(*)SI_UNIT(.MILLI.,.METRE.)) ;
#42=(NAMED_UNIT(*)PLANE_ANGLE_UNIT()SI_UNIT($,.RADIAN.)) ;
#43=(NAMED_UNIT(*)SI_UNIT($,.STERADIAN.)SOLID_ANGLE_UNIT()) ;
#45=(GEOMETRIC_REPRESENTATION_CONTEXT(3)GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#44))GLOBAL_UNIT_ASSIGNED_CONTEXT((#41,#42,#43))REPRESENTATION_CONTEXT(' ',' ')) ;
ENDSEC;
END-ISO-10303-21;

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View File

@ -0,0 +1,17 @@
This is a mount for the Befenybay (and maybe other) 10mm x 11mm Drag Chain from Amazon found here https://www.amazon.com/gp/product/B07QLGWQ1L (10mmx11mm-Outside Open).
These are to replace the similar parts of the Zip Chain installation.
The Top_Anchor may need to be mirrored depending on the application. One half has smaller holes that you will screw into and the other will have clearance holes for M3.
The extrusion mount for the triangular hole pattern chain end of the Befenybay (and maybe other) 10mm x 11mm Drag Chain from Amazon found here https://www.amazon.com/gp/product/B07QLGWQ1L (10mmx11mm-Outside Open).
![Images of mount](mount1.jpg)
These are to replace the similar parts of the Zip Chain installation.
To install use a M3x6 BHCS, T-nut, and zip-tie.
The easiest way to begin is to remove the end from the chain.
Insert the zip-tie through the hole pair leaving the head touching the vertical wall and put a screw into the single hole. Loop the zip-tie around the mount and push the screw through the mount hole. Slide into the short end of a T-nut to center the hole and push down the zip-tie end of the mount to shape the zip-tie. Begin screwing and slide into final position then fully tighten the screw. Attach the drag chain and zip-tie down the cable bundle.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

View File

@ -0,0 +1,13 @@
Here are bed models for adding to your Cura Printer Profiles.
![Image of Voron 2.2 300mm Bed](bryansj_beds.png)
Includes bed .stl files for 250, 300, and 350mm builds.
Add the .stl file for your printer size to your "\resources\meshes\" Cura Folder.
In your "\resources\definitions\" Cura folder open your printer profile's .json file.
Change the following line to match the .stl file of your choice:
"platform": "voron2_300_bed.stl",
To use your own model the trick is to put 0,0,0 in the center of your bed model.

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
Here are bed models for adding to your KISSlicer Printer Profiles.
![Image of Voron 2.2 300mm Bed](bryansj_beds.png)
Includes bed .stl files for 250, 300, and 350mm builds. Add these under "Printer" "Bed STL Model".
To use your own model the trick is to put 0,0,0 in the front left of your bed model (match the slicer layout).

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
Here are bed models and textures for adding to your Prusaslicer Printer Profiles.
![Image of Voron 2.2 300mm Bed](bryansj_beds_textures.png)
Includes bed .stl files for 250, 300, and 350mm builds. Add these under "Printer Settings" "Bed Shape".
Texture files can be used for all sizes. Includes the Photoshop source file as well.
STEP files included for editing, but not needed for Prusaslicer.
To use your own model the trick is to put 0,0,0 in the center of your bed model.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 594 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -0,0 +1,30 @@
# Slicer Configurations
Slicer Configurations for Voron 3D printers, separated by slicer.
Remember to update this README when uploading new slicer configurations!
## Table structure
Update the following table with the information about your mod:
- Your name
- A link to your sub-folder
- A short description of your slicer config
- The printer compatibility. Use `:heavy_check_mark:` for :heavy_check_mark:,`:x:` for :x: and `:grey_question:` for :grey_question:
like so:
`
| Creator | [Config Title](link) | Description | :x: | :x: | :x: |`
## Updating the compatibility matrix
If your mod is lacking a column in the compatibility matrix, feel free to submit a PR to get it updated!
---
| Creator | Config title | Description | V1.6 | V2.1 | V2.2 |
|---------|--------------|-------------|------|------|------|
| bryansj | [PrusaSlicer Bed Models and Textures for 250, 300, and 350](./PrusaSlicer/bryansj/beds_and_textures) | Voron Custom Bed and Texture files for your PrusaSlicer Printer Profiles | :x: | :heavy_check_mark: | :heavy_check_mark: |
| | [KISSlicer Bed Models for 250, 300, and 350](./KISSlicer/bryansj/beds) | Voron Custom Bed files for your KISSlicer Printer Profiles | :x: | :heavy_check_mark: | :heavy_check_mark: |
| | [Cura Bed Models for 250, 300, and 350](./Cura/bryansj/beds) | Voron Custom Bed files for your Cura Printer Profiles | :x: | :heavy_check_mark: | :heavy_check_mark: |
---