Index: trunk/tests/orig/run_tests.sh =================================================================== --- trunk/tests/orig/run_tests.sh (revision 33432) +++ trunk/tests/orig/run_tests.sh (nonexistent) @@ -1,677 +0,0 @@ -#!/bin/sh -# -# $Id: run_tests.sh,v 1.8 2009/02/17 00:42:31 danmc Exp $ -# -# Copyright (c) 2003, 2004, 2005, 2006, 2007, 2009, 2010 Dan McMahill - -# This program is free software; you can redistribute it and/or modify -# it under the terms of version 2 of the GNU General Public License as -# published by the Free Software Foundation -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# All rights reserved. -# -# This code was derived from code written by Dan McMahill as part of the -# latex-mk testsuite. The original code was covered by a BSD license -# but the copyright holder (Dan McMahill) has re-released the code under -# the GPL. - -if test -z `which gerbv` -then - echo "Please install gerbv before running the tests." >&2 - exit 1 -fi - -if test -z `which convert` -then - echo "Please install imagemagick before running the tests." >&2 - exit 1 -fi - -magic_test_skip=${PCB_MAGIC_TEST_SKIP:-no} - -if test "x${magic_test_skip}" = "xyes" ; then - cat << EOF - -The environment variable PCB_MAGIC_TEST_SKIP is set to yes. -This causes the testsuite to skip all tests and report no errors. -This is used for certain debugging *only*. The primary use is to -allow testing of the 'distcheck' target without including the effects -of the testsuite. The reason this is useful is that due to minor differences -in library versions and perhaps roundoff in different CPU's, the testsuite -may falsely report failures on some systems. These reported failures -prevent using 'distcheck' for verifying the rest of the build system. -These comments only apply to the tests which try to compare image files -like PNG files. - -EOF - - exit 0 -fi - -regen=no - -usage() { -cat < : Specifies that should be used for the - reference files. - -LIMITATIONS - -- The GUI interface is not checked via the regression testsuite. - -- Currently actions are also not exercised - -EOF -} - -show_sep() { - echo "----------------------------------------------------------------------" -} - -########################################################################## -# -# debug print out -# - -do_debug=no -debug() { - if test $do_debug = yes ; then - cat < $f2 -} - -# top level function to compare BOM output -compare_bom() { - f1="$1" - f2="$2" - compare_check "compare_bom" "$f1" "$f2" || return 1 - - # an example BOM file is: - - # # $Id$ - # # PcbBOM Version 1.0 - # # Date: Wed Jun 17 14:41:43 2009 UTC - # # Author: Dan McMahill - # # Title: Basic BOM/XY Test - PCB BOM - # # Quantity, Description, Value, RefDes - # # -------------------------------------------- - # 8,"Standard SMT resistor, capacitor etc","RESC3216N",R90_TOP R180_TOP R270_TOP R0_TOP R270_BOT R180_BOT R90_BOT R0_BOT - # 8,"Dual in-line package, narrow (300 mil)","DIP8",UDIP90_TOP UDIP180_TOP UDIP270_TOP UDIP0_TOP UDIP270_BOT UDIP180_BOT UDIP90_BOT UDIP0_BOT - # 8,"Small outline package, narrow (150mil)","SO8",USO90_TOP USO180_TOP USO270_TOP USO0_TOP USO270_BOT USO180_BOT USO90_BOT USO0_BOT - - # For comparison, we need to ignore changes in the Date and Author lines. - cf1=${tmpd}/`basename $f1` - cf2=${tmpd}/`basename $f2` - - normalize_bom $f1 $cf1 - normalize_bom $f2 $cf2 - run_diff $cf1 $cf2 || test_failed=yes -} - -########################################################################## -# -# X-Y (centroid) comparison routines -# - -# used to remove things like creation date from BOM files -normalize_xy() { - f1="$1" - f2="$2" - $AWK ' - /^# Date:/ {print "# Date: today"; next} - /^# Author:/ {print "# Author: PCB"; next} - {print}' \ - $f1 > $f2 -} - -compare_xy() { - f1="$1" - f2="$2" - compare_check "compare_xy" "$f1" "$f2" || return 1 - normalize_xy "$f1" "$cf1" - normalize_xy "$f2" "$cf2" - run_diff "$cf1" "$cf2" || test_failed=yes -} - -########################################################################## -# -# GCODE comparison routines -# - -# used to remove things like creation date from gcode files -normalize_gcode() { - f1="$1" - f2="$2" - $AWK ' - d == 1 {gsub(/ .* /, "Creation Date and Time"); d = 0;} - /^\(Created by G-code exporter\)/ {d=1} - {print}' \ - $f1 > $f2 -} - -compare_gcode() { - f1="$1" - f2="$2" - compare_check "compare_gcode" "$f1" "$f2" || return 1 - - # For comparison, we need to ignore changes in the Date and Author lines. - cf1=${tmpd}/`basename $f1` - cf2=${tmpd}/`basename $f2` - - normalize_gcode $f1 $cf1 - normalize_gcode $f2 $cf2 - run_diff "$cf1" "$cf2" || test_failed=yes -} - -########################################################################## -# -# RS274-X and Excellon comparison -# - -compare_rs274x() { - f1="$1" - f2="$2" - compare_check "compare_rs274x" "$f1" "$f2" || return 1 - - # use gerbv to export our reference RS274-X file and our generated - # RS274-X file to png. Then we'll use ImageMagick to see - # if there are any differences in the resulting files - pngdir=${rundir}/png - mkdir -p ${pngdir} - nb=`basename $f1` - png1=${pngdir}/${nb}-ref.png - png2=${pngdir}/${nb}-out.png - - debug "${GERBV} ${GERBV_DEFAULT_FLAGS} --output=${png1} ${f1}" - ${GERBV} ${GERBV_DEFAULT_FLAGS} --output=${png1} ${f1} - - debug "${GERBV} ${GERBV_DEFAULT_FLAGS} --output=${png2} ${f2}" - ${GERBV} ${GERBV_DEFAULT_FLAGS} --output=${png2} ${f2} - - compare_image ${png1} ${png2} - -} - -compare_cnc() { - compare_rs274x $* -} - -########################################################################## -# -# GIF/JPEG/PNG comparison routines -# - -compare_image() { - f1="$1" - f2="$2" - compare_check "compare_image" "$f1" "$f2" || return 1 - - # now see if the image files are the same - debug "${IM_COMPARE} -metric MAE ${f1} ${f2} null:" - same=`${IM_COMPARE} -metric MAE ${f1} ${f2} null: 2>&1 | \ - ${AWK} '{if($1 == 0){print "yes"} else {print "no"}}'` - debug "compare_image(): same = $same" - - if test "$same" != yes ; then - test_failed=yes - echo "FAILED: See ${errdir}" - mkdir -p ${errdir} - ${IM_COMPARE} ${f1} ${f2} ${errdir}/compare.png - ${IM_COMPOSITE} ${f1} ${f2} -compose difference ${errdir}/composite.png - ${IM_CONVERT} ${f1} ${f2} -compose difference -composite -colorspace gray ${errdir}/gray.png - cat > ${errdir}/animate.sh << EOF -#!/bin/sh -${IM_CONVERT} -label "%f" ${f1} ${f2} miff:- | \ -${IM_MONTAGE} - -geometry +0+0 -tile 1x1 miff:- | \ -${IM_ANIMATE} -delay 0.5 -loop 0 - -EOF - chmod a+x ${errdir}/animate.sh - fi -} - -########################################################################## -# -# The main program loop -# - -for t in $all_tests ; do - show_sep - echo "Test: $t" - - tot=`expr $tot + 1` - - ###################################################################### - # - # extract the details for the test - # - - pcb_flags="${PCB_DEFAULT_FLAGS}" - - rundir="${OUTDIR}/${t}" - refdir="${REFDIR}/${t}" - errdir=${rundir}/mismatch - - # test_name | layout file(s) | [export hid name] | [optional arguments to pcb] | [mismatch] - # | output files - name=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST | $AWK 'BEGIN{FS="|"} {print $1}'` - files=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST | $AWK 'BEGIN{FS="|"} {print $2}'` - hid=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST | $AWK 'BEGIN{FS="|"} {gsub(/[ \t]*/, ""); print $3}'` - args=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST | $AWK 'BEGIN{FS="|"} {print $4}'` - mismatch=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST | $AWK 'BEGIN{FS="|"} {if($5 == "mismatch"){print "yes"}else{print "no"}}'` - out_files=`grep "^[ \t]*${t}[ \t]*|" $TESTLIST | $AWK 'BEGIN{FS="|"} {print $6}'` - - if test "X${name}" = "X" ; then - echo "ERROR: Specified test ${t} does not appear to exist" - skip=`expr $skip + 1` - continue - fi - - if test "X${args}" != "X" ; then - pcb_flags="${args}" - fi - - ###################################################################### - # - # Set up the run directory - # - - test -d ${rundir} && rm -fr ${rundir} - mkdir -p ${rundir} - if test $? -ne 0 ; then - echo "$0: Could not create run directory ${rundir}" - skip=`expr $skip + 1` - continue - fi - - - ###################################################################### - # - # check to see if the files we need exist and copy them to the run - # directory - # - - missing_files=no - path_files="" - for f in $files ; do - if test ! -f ${INDIR}/${f} ; then - echo "ERROR: File $f specified as part of the $t test does not exist" - missing_files=yes - else - path_files="${path_files} ${INDIR}/${f}" - cp "${INDIR}/${f}" "${rundir}" - fi - done - - if test "$missing_files" = "yes" ; then - echo "${t} had missing input files. Skipping test" - skip=`expr $skip + 1` - continue - fi - - ###################################################################### - # - # run PCB - # - - echo "cd ${rundir} && ${PCB} -x ${hid} ${pcb_flags} ${files}" - (cd ${rundir} && ${PCB} -x ${hid} ${pcb_flags} ${files}) - pcb_rc=$? - - if test $pcb_rc -ne 0 ; then - echo "${PCB} returned ${pcb_rc}. This is a failure." - fail=`expr $fail + 1` - continue - fi - - # and clean up the input files we'd copied over - for f in $files ; do - rm -f ${rundir}/${f} - done - - ###################################################################### - # - # check the result - # - - if test "X$regen" = "Xyes" ; then - echo "Regenerated ${t}" - else - # compare the result to our reference file - test_failed=no - test_skipped=no - for f in $out_files ; do - debug "processing $f" - # break apart type:fn into the type and file name - type=`echo $f | sed 's;:.*;;g'` - fn=`echo $f | sed 's;.*:;;g'` - - case $type in - # BOM HID - bom) - compare_bom ${refdir}/${fn} ${rundir}/${fn} - ;; - - xy) - compare_xy ${refdir}/${fn} ${rundir}/${fn} - ;; - - # GCODE HID - gcode) - compare_gcode ${refdir}/${fn} ${rundir}/${fn} - ;; - - # GERBER HID - cnc) - compare_cnc ${refdir}/${fn} ${rundir}/${fn} - ;; - - gbx) - compare_rs274x ${refdir}/${fn} ${rundir}/${fn} - ;; - - # PNG HID - gif) - compare_image ${refdir}/${fn} ${rundir}/${fn} - ;; - - jpg) - compare_image ${refdir}/${fn} ${rundir}/${fn} - ;; - - png) - compare_image ${refdir}/${fn} ${rundir}/${fn} - ;; - - # unknown - *) - echo "internal error: $type is not a known file type" - exit 1 - ;; - esac - - done - - - if test $test_failed = yes ; then - echo "FAIL" - fail=`expr $fail + 1` - elif test $test_skipped = yes ; then - echo "SKIPPED" - skip=`expr $skip + 1` - else - echo "PASSED" - pass=`expr $pass + 1` - fi - - fi - -done - -show_sep -echo "Passed $pass, failed $fail, skipped $skip out of $tot tests." - -rc=0 -if test $pass -ne $tot ; then - rc=1 -fi - -exit $rc - Property changes on: trunk/tests/orig/run_tests.sh ___________________________________________________________________ Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: trunk/tests/orig/inputs/gerber_arcs.pcb =================================================================== --- trunk/tests/orig/inputs/gerber_arcs.pcb (revision 33432) +++ trunk/tests/orig/inputs/gerber_arcs.pcb (nonexistent) @@ -1,844 +0,0 @@ -# release: pcb 20100929 -# date: Thu Jun 16 20:10:40 2011 -# user: username () -# host: titanic.lan - -# To read pcb files, the pcb version (or the git source date) must be >= the file version -FileVersion[20100606] - -PCB["" 3000000 2000000] - -Grid[10000.000000 0 0 0] -Cursor[0 0 0.000000] -PolyArea[200000000.000000] -Thermal[0.500000] -DRC[14941 14941 14941 14941 22411 14941] -Flags("nameonpcb,uniquename,clearnew,snappin") -Groups("1,c:2:3:4:5:6,s:7:8") -Styles["Signal,1000,3600,2000,1000:Power,50000,65000,25000,1000:Fat,4000,6000,3500,1000:Skinny,600,2402,1181,600"] - -Symbol(' ' 18) -( -) -Symbol('!' 12) -( - SymbolLine(0 45 0 50 8) - SymbolLine(0 10 0 35 8) -) -Symbol('"' 12) -( - SymbolLine(0 10 0 20 8) - SymbolLine(10 10 10 20 8) -) -Symbol('#' 12) -( - SymbolLine(0 35 20 35 8) - SymbolLine(0 25 20 25 8) - SymbolLine(15 20 15 40 8) - SymbolLine(5 20 5 40 8) -) -Symbol('$' 12) -( - SymbolLine(15 15 20 20 8) - SymbolLine(5 15 15 15 8) - SymbolLine(0 20 5 15 8) - SymbolLine(0 20 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 40 8) - SymbolLine(15 45 20 40 8) - SymbolLine(5 45 15 45 8) - SymbolLine(0 40 5 45 8) - SymbolLine(10 10 10 50 8) -) -Symbol('%' 12) -( - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(10 25 15 20 8) - SymbolLine(5 25 10 25 8) - SymbolLine(0 20 5 25 8) - SymbolLine(0 50 40 10 8) - SymbolLine(35 50 40 45 8) - SymbolLine(40 40 40 45 8) - SymbolLine(35 35 40 40 8) - SymbolLine(30 35 35 35 8) - SymbolLine(25 40 30 35 8) - SymbolLine(25 40 25 45 8) - SymbolLine(25 45 30 50 8) - SymbolLine(30 50 35 50 8) -) -Symbol('&' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 35 15 20 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(0 25 25 50 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(0 35 0 45 8) -) -Symbol(''' 12) -( - SymbolLine(0 20 10 10 8) -) -Symbol('(' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) -) -Symbol(')' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('*' 12) -( - SymbolLine(0 20 20 40 8) - SymbolLine(0 40 20 20 8) - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol('+' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol(',' 12) -( - SymbolLine(0 60 10 50 8) -) -Symbol('-' 12) -( - SymbolLine(0 30 20 30 8) -) -Symbol('.' 12) -( - SymbolLine(0 50 5 50 8) -) -Symbol('/' 12) -( - SymbolLine(0 45 30 15 8) -) -Symbol('0' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 40 20 20 8) -) -Symbol('1' 12) -( - SymbolLine(5 50 15 50 8) - SymbolLine(10 10 10 50 8) - SymbolLine(0 20 10 10 8) -) -Symbol('2' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(0 50 25 25 8) - SymbolLine(0 50 25 50 8) -) -Symbol('3' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 30 20 30 8) -) -Symbol('4' 12) -( - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 25 30 8) - SymbolLine(20 10 20 50 8) -) -Symbol('5' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(0 10 0 30 8) - SymbolLine(0 30 5 25 8) - SymbolLine(5 25 15 25 8) - SymbolLine(15 25 20 30 8) - SymbolLine(20 30 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('6' 12) -( - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 30 15 30 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) -) -Symbol('7' 12) -( - SymbolLine(0 50 25 25 8) - SymbolLine(25 10 25 25 8) - SymbolLine(0 10 25 10 8) -) -Symbol('8' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 25 5 30 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 25 8) - SymbolLine(15 30 20 25 8) -) -Symbol('9' 12) -( - SymbolLine(0 50 20 30 8) - SymbolLine(20 15 20 30 8) - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) -) -Symbol(':' 12) -( - SymbolLine(0 25 5 25 8) - SymbolLine(0 35 5 35 8) -) -Symbol(';' 12) -( - SymbolLine(0 50 10 40 8) - SymbolLine(10 25 10 30 8) -) -Symbol('<' 12) -( - SymbolLine(0 30 10 20 8) - SymbolLine(0 30 10 40 8) -) -Symbol('=' 12) -( - SymbolLine(0 25 20 25 8) - SymbolLine(0 35 20 35 8) -) -Symbol('>' 12) -( - SymbolLine(0 20 10 30 8) - SymbolLine(0 40 10 30 8) -) -Symbol('?' 12) -( - SymbolLine(10 30 10 35 8) - SymbolLine(10 45 10 50 8) - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 20 8) - SymbolLine(10 30 20 20 8) -) -Symbol('@' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 40 50 8) - SymbolLine(50 35 50 10 8) - SymbolLine(50 10 40 0 8) - SymbolLine(40 0 10 0 8) - SymbolLine(10 0 0 10 8) - SymbolLine(15 20 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 30 35 8) - SymbolLine(30 35 35 30 8) - SymbolLine(35 30 40 35 8) - SymbolLine(35 30 35 15 8) - SymbolLine(35 20 30 15 8) - SymbolLine(20 15 30 15 8) - SymbolLine(20 15 15 20 8) - SymbolLine(40 35 50 35 8) -) -Symbol('A' 12) -( - SymbolLine(0 15 0 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('B' 12) -( - SymbolLine(0 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) -) -Symbol('C' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) -) -Symbol('D' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('E' 12) -( - SymbolLine(0 30 15 30 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('F' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(0 30 15 30 8) -) -Symbol('G' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(10 30 20 30 8) -) -Symbol('H' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(25 10 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('I' 12) -( - SymbolLine(0 10 10 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 10 50 8) -) -Symbol('J' 12) -( - SymbolLine(0 10 15 10 8) - SymbolLine(15 10 15 45 8) - SymbolLine(10 50 15 45 8) - SymbolLine(5 50 10 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('K' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 20 50 8) -) -Symbol('L' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 20 50 8) -) -Symbol('M' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 15 25 8) - SymbolLine(15 25 30 10 8) - SymbolLine(30 10 30 50 8) -) -Symbol('N' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 10 25 50 8) -) -Symbol('O' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('P' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) -) -Symbol('Q' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(10 40 20 50 8) -) -Symbol('R' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(5 30 25 50 8) -) -Symbol('S' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('T' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(10 10 10 50 8) -) -Symbol('U' 12) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 10 20 45 8) -) -Symbol('V' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 10 20 40 8) -) -Symbol('W' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 15 35 8) - SymbolLine(15 35 30 50 8) - SymbolLine(30 10 30 50 8) -) -Symbol('X' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 40 25 50 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 40 25 15 8) - SymbolLine(25 10 25 15 8) -) -Symbol('Y' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 10 25 8) - SymbolLine(10 25 20 15 8) - SymbolLine(20 10 20 15 8) - SymbolLine(10 25 10 50 8) -) -Symbol('Z' 12) -( - SymbolLine(0 10 25 10 8) - SymbolLine(25 10 25 15 8) - SymbolLine(0 40 25 15 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 50 25 50 8) -) -Symbol('[' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('\' 12) -( - SymbolLine(0 15 30 45 8) -) -Symbol(']' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('^' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 15 8) -) -Symbol('_' 12) -( - SymbolLine(0 50 20 50 8) -) -Symbol('a' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 45 8) - SymbolLine(20 45 25 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('b' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) -) -Symbol('c' 12) -( - SymbolLine(5 30 20 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) -) -Symbol('d' 12) -( - SymbolLine(20 10 20 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) -) -Symbol('e' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 40 20 40 8) - SymbolLine(20 40 20 35 8) -) -Symbol('f' 10) -( - SymbolLine(5 15 5 50 8) - SymbolLine(5 15 10 10 8) - SymbolLine(10 10 15 10 8) - SymbolLine(0 30 10 30 8) -) -Symbol('g' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 65 15 65 8) - SymbolLine(15 65 20 60 8) - SymbolLine(20 30 20 60 8) -) -Symbol('h' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) -) -Symbol('i' 10) -( - SymbolLine(0 20 0 25 8) - SymbolLine(0 35 0 50 8) -) -Symbol('j' 10) -( - SymbolLine(5 20 5 25 8) - SymbolLine(5 35 5 60 8) - SymbolLine(0 65 5 60 8) -) -Symbol('k' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 15 50 8) - SymbolLine(0 35 10 25 8) -) -Symbol('l' 10) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) -) -Symbol('m' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(20 35 25 30 8) - SymbolLine(25 30 30 30 8) - SymbolLine(30 30 35 35 8) - SymbolLine(35 35 35 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('n' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('o' 12) -( - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('p' 12) -( - SymbolLine(5 35 5 65 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(10 50 20 50 8) - SymbolLine(5 45 10 50 8) -) -Symbol('q' 12) -( - SymbolLine(20 35 20 65 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('r' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(0 30 5 35 8) -) -Symbol('s' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(20 40 25 45 8) - SymbolLine(5 40 20 40 8) - SymbolLine(0 35 5 40 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(0 45 5 50 8) -) -Symbol('t' 10) -( - SymbolLine(5 10 5 45 8) - SymbolLine(5 45 10 50 8) - SymbolLine(0 25 10 25 8) -) -Symbol('u' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 30 20 45 8) -) -Symbol('v' 12) -( - SymbolLine(0 30 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 30 20 40 8) -) -Symbol('w' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 15 45 8) - SymbolLine(15 30 15 45 8) - SymbolLine(15 45 20 50 8) - SymbolLine(20 50 25 50 8) - SymbolLine(25 50 30 45 8) - SymbolLine(30 30 30 45 8) -) -Symbol('x' 12) -( - SymbolLine(0 30 20 50 8) - SymbolLine(0 50 20 30 8) -) -Symbol('y' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 60 8) - SymbolLine(15 65 20 60 8) - SymbolLine(5 65 15 65 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('z' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(0 50 20 30 8) - SymbolLine(0 50 20 50 8) -) -Symbol('{' 12) -( - SymbolLine(5 15 10 10 8) - SymbolLine(5 15 5 25 8) - SymbolLine(0 30 5 25 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 5 45 8) - SymbolLine(5 45 10 50 8) -) -Symbol('|' 12) -( - SymbolLine(0 10 0 50 8) -) -Symbol('}' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 25 8) - SymbolLine(5 25 10 30 8) - SymbolLine(5 35 10 30 8) - SymbolLine(5 35 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('~' 12) -( - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 10 30 8) - SymbolLine(10 30 15 35 8) - SymbolLine(15 35 20 35 8) - SymbolLine(20 35 25 30 8) -) -Via[600000 1550000 75000 2000 0 50000 "" ""] -Via[600000 1710000 65000 2000 0 25000 "" ""] -Via[450000 1400000 100000 2000 0 50000 "" ""] -Via[600000 1400000 100000 2000 0 50000 "" ""] -Via[450000 1710000 65000 2000 0 25000 "" ""] -Via[450000 1550000 75000 2000 0 50000 "" ""] -Layer(1 "top") -( - Arc[775000 209000 491000 491000 1000 2000 180 -90 "clearline"] - Arc[772000 1183000 486000 486000 1000 2000 -90 90 "clearline"] - Arc[286000 697000 486000 486000 1000 2000 90 90 "clearline"] - Arc[1266000 700000 491000 491000 1000 2000 0 -90 "clearline"] -) -Layer(2 "ground") -( - Arc[2430000 209000 933000 933000 10000 2000 0 90 "clearline"] - Arc[1861000 778000 554000 554000 25000 2000 -90 -90 "clearline"] - Arc[1845000 750000 358000 358000 50000 2000 -90 -90 "clearline"] - Arc[1845000 729000 184000 184000 100000 2000 -90 -90 "clearline"] -) -Layer(3 "signal2") -( -) -Layer(4 "signal3") -( -) -Layer(5 "power") -( - Arc[2500000 1370000 1200000 400000 25000 1000 0 90 "clearline"] -) -Layer(6 "bottom") -( -) -Layer(7 "outline") -( -) -Layer(8 "spare") -( -) -Layer(9 "silk") -( -) -Layer(10 "silk") -( -) Index: trunk/tests/orig/inputs/gerber_oneline.pcb =================================================================== --- trunk/tests/orig/inputs/gerber_oneline.pcb (revision 33432) +++ trunk/tests/orig/inputs/gerber_oneline.pcb (nonexistent) @@ -1,829 +0,0 @@ -# release: pcb 1.99y - -# To read pcb files, the pcb version (or the cvs source date) must be >= the file version -FileVersion[20070407] - -PCB["Basic Single Trace RS274-X Test" 200000 100000] - -Grid[10000.000000 0 0 1] -Cursor[0 500000 0.000000] -PolyArea[200000000.000000] -Thermal[0.500000] -DRC[1000 1000 1000 1000 1500 1000] -Flags("nameonpcb,uniquename,clearnew,snappin") -Groups("1,c:2,s:3:4:5:6:7:8") -Styles["Signal,1000,3600,2000,1000:Power,2500,6000,3500,1000:Fat,4000,6000,3500,1000:Skinny,600,2402,1181,600"] - -Symbol(' ' 18) -( -) -Symbol('!' 12) -( - SymbolLine(0 45 0 50 8) - SymbolLine(0 10 0 35 8) -) -Symbol('"' 12) -( - SymbolLine(0 10 0 20 8) - SymbolLine(10 10 10 20 8) -) -Symbol('#' 12) -( - SymbolLine(0 35 20 35 8) - SymbolLine(0 25 20 25 8) - SymbolLine(15 20 15 40 8) - SymbolLine(5 20 5 40 8) -) -Symbol('$' 12) -( - SymbolLine(15 15 20 20 8) - SymbolLine(5 15 15 15 8) - SymbolLine(0 20 5 15 8) - SymbolLine(0 20 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 40 8) - SymbolLine(15 45 20 40 8) - SymbolLine(5 45 15 45 8) - SymbolLine(0 40 5 45 8) - SymbolLine(10 10 10 50 8) -) -Symbol('%' 12) -( - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(10 25 15 20 8) - SymbolLine(5 25 10 25 8) - SymbolLine(0 20 5 25 8) - SymbolLine(0 50 40 10 8) - SymbolLine(35 50 40 45 8) - SymbolLine(40 40 40 45 8) - SymbolLine(35 35 40 40 8) - SymbolLine(30 35 35 35 8) - SymbolLine(25 40 30 35 8) - SymbolLine(25 40 25 45 8) - SymbolLine(25 45 30 50 8) - SymbolLine(30 50 35 50 8) -) -Symbol('&' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 35 15 20 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(0 25 25 50 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(0 35 0 45 8) -) -Symbol(''' 12) -( - SymbolLine(0 20 10 10 8) -) -Symbol('(' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) -) -Symbol(')' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('*' 12) -( - SymbolLine(0 20 20 40 8) - SymbolLine(0 40 20 20 8) - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol('+' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol(',' 12) -( - SymbolLine(0 60 10 50 8) -) -Symbol('-' 12) -( - SymbolLine(0 30 20 30 8) -) -Symbol('.' 12) -( - SymbolLine(0 50 5 50 8) -) -Symbol('/' 12) -( - SymbolLine(0 45 30 15 8) -) -Symbol('0' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 40 20 20 8) -) -Symbol('1' 12) -( - SymbolLine(5 50 15 50 8) - SymbolLine(10 10 10 50 8) - SymbolLine(0 20 10 10 8) -) -Symbol('2' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(0 50 25 25 8) - SymbolLine(0 50 25 50 8) -) -Symbol('3' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 30 20 30 8) -) -Symbol('4' 12) -( - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 25 30 8) - SymbolLine(20 10 20 50 8) -) -Symbol('5' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(0 10 0 30 8) - SymbolLine(0 30 5 25 8) - SymbolLine(5 25 15 25 8) - SymbolLine(15 25 20 30 8) - SymbolLine(20 30 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('6' 12) -( - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 30 15 30 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) -) -Symbol('7' 12) -( - SymbolLine(0 50 25 25 8) - SymbolLine(25 10 25 25 8) - SymbolLine(0 10 25 10 8) -) -Symbol('8' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 25 5 30 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 25 8) - SymbolLine(15 30 20 25 8) -) -Symbol('9' 12) -( - SymbolLine(0 50 20 30 8) - SymbolLine(20 15 20 30 8) - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) -) -Symbol(':' 12) -( - SymbolLine(0 25 5 25 8) - SymbolLine(0 35 5 35 8) -) -Symbol(';' 12) -( - SymbolLine(0 50 10 40 8) - SymbolLine(10 25 10 30 8) -) -Symbol('<' 12) -( - SymbolLine(0 30 10 20 8) - SymbolLine(0 30 10 40 8) -) -Symbol('=' 12) -( - SymbolLine(0 25 20 25 8) - SymbolLine(0 35 20 35 8) -) -Symbol('>' 12) -( - SymbolLine(0 20 10 30 8) - SymbolLine(0 40 10 30 8) -) -Symbol('?' 12) -( - SymbolLine(10 30 10 35 8) - SymbolLine(10 45 10 50 8) - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 20 8) - SymbolLine(10 30 20 20 8) -) -Symbol('@' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 40 50 8) - SymbolLine(50 35 50 10 8) - SymbolLine(50 10 40 0 8) - SymbolLine(40 0 10 0 8) - SymbolLine(10 0 0 10 8) - SymbolLine(15 20 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 30 35 8) - SymbolLine(30 35 35 30 8) - SymbolLine(35 30 40 35 8) - SymbolLine(35 30 35 15 8) - SymbolLine(35 20 30 15 8) - SymbolLine(20 15 30 15 8) - SymbolLine(20 15 15 20 8) - SymbolLine(40 35 50 35 8) -) -Symbol('A' 12) -( - SymbolLine(0 15 0 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('B' 12) -( - SymbolLine(0 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) -) -Symbol('C' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) -) -Symbol('D' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('E' 12) -( - SymbolLine(0 30 15 30 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('F' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(0 30 15 30 8) -) -Symbol('G' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(10 30 20 30 8) -) -Symbol('H' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(25 10 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('I' 12) -( - SymbolLine(0 10 10 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 10 50 8) -) -Symbol('J' 12) -( - SymbolLine(0 10 15 10 8) - SymbolLine(15 10 15 45 8) - SymbolLine(10 50 15 45 8) - SymbolLine(5 50 10 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('K' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 20 50 8) -) -Symbol('L' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 20 50 8) -) -Symbol('M' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 15 25 8) - SymbolLine(15 25 30 10 8) - SymbolLine(30 10 30 50 8) -) -Symbol('N' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 10 25 50 8) -) -Symbol('O' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('P' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) -) -Symbol('Q' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(10 40 20 50 8) -) -Symbol('R' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(5 30 25 50 8) -) -Symbol('S' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('T' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(10 10 10 50 8) -) -Symbol('U' 12) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 10 20 45 8) -) -Symbol('V' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 10 20 40 8) -) -Symbol('W' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 15 35 8) - SymbolLine(15 35 30 50 8) - SymbolLine(30 10 30 50 8) -) -Symbol('X' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 40 25 50 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 40 25 15 8) - SymbolLine(25 10 25 15 8) -) -Symbol('Y' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 10 25 8) - SymbolLine(10 25 20 15 8) - SymbolLine(20 10 20 15 8) - SymbolLine(10 25 10 50 8) -) -Symbol('Z' 12) -( - SymbolLine(0 10 25 10 8) - SymbolLine(25 10 25 15 8) - SymbolLine(0 40 25 15 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 50 25 50 8) -) -Symbol('[' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('\' 12) -( - SymbolLine(0 15 30 45 8) -) -Symbol(']' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('^' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 15 8) -) -Symbol('_' 12) -( - SymbolLine(0 50 20 50 8) -) -Symbol('a' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 45 8) - SymbolLine(20 45 25 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('b' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) -) -Symbol('c' 12) -( - SymbolLine(5 30 20 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) -) -Symbol('d' 12) -( - SymbolLine(20 10 20 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) -) -Symbol('e' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 40 20 40 8) - SymbolLine(20 40 20 35 8) -) -Symbol('f' 10) -( - SymbolLine(5 15 5 50 8) - SymbolLine(5 15 10 10 8) - SymbolLine(10 10 15 10 8) - SymbolLine(0 30 10 30 8) -) -Symbol('g' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 65 15 65 8) - SymbolLine(15 65 20 60 8) - SymbolLine(20 30 20 60 8) -) -Symbol('h' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) -) -Symbol('i' 10) -( - SymbolLine(0 20 0 25 8) - SymbolLine(0 35 0 50 8) -) -Symbol('j' 10) -( - SymbolLine(5 20 5 25 8) - SymbolLine(5 35 5 60 8) - SymbolLine(0 65 5 60 8) -) -Symbol('k' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 15 50 8) - SymbolLine(0 35 10 25 8) -) -Symbol('l' 10) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) -) -Symbol('m' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(20 35 25 30 8) - SymbolLine(25 30 30 30 8) - SymbolLine(30 30 35 35 8) - SymbolLine(35 35 35 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('n' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('o' 12) -( - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('p' 12) -( - SymbolLine(5 35 5 65 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(10 50 20 50 8) - SymbolLine(5 45 10 50 8) -) -Symbol('q' 12) -( - SymbolLine(20 35 20 65 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('r' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(0 30 5 35 8) -) -Symbol('s' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(20 40 25 45 8) - SymbolLine(5 40 20 40 8) - SymbolLine(0 35 5 40 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(0 45 5 50 8) -) -Symbol('t' 10) -( - SymbolLine(5 10 5 45 8) - SymbolLine(5 45 10 50 8) - SymbolLine(0 25 10 25 8) -) -Symbol('u' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 30 20 45 8) -) -Symbol('v' 12) -( - SymbolLine(0 30 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 30 20 40 8) -) -Symbol('w' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 15 45 8) - SymbolLine(15 30 15 45 8) - SymbolLine(15 45 20 50 8) - SymbolLine(20 50 25 50 8) - SymbolLine(25 50 30 45 8) - SymbolLine(30 30 30 45 8) -) -Symbol('x' 12) -( - SymbolLine(0 30 20 50 8) - SymbolLine(0 50 20 30 8) -) -Symbol('y' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 60 8) - SymbolLine(15 65 20 60 8) - SymbolLine(5 65 15 65 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('z' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(0 50 20 30 8) - SymbolLine(0 50 20 50 8) -) -Symbol('{' 12) -( - SymbolLine(5 15 10 10 8) - SymbolLine(5 15 5 25 8) - SymbolLine(0 30 5 25 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 5 45 8) - SymbolLine(5 45 10 50 8) -) -Symbol('|' 12) -( - SymbolLine(0 10 0 50 8) -) -Symbol('}' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 25 8) - SymbolLine(5 25 10 30 8) - SymbolLine(5 35 10 30 8) - SymbolLine(5 35 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('~' 12) -( - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 10 30 8) - SymbolLine(10 30 15 35 8) - SymbolLine(15 35 20 35 8) - SymbolLine(20 35 25 30 8) -) -Via[90000 50000 6000 2000 0 3500 "" ""] -Layer(1 "component") -( - Line[10000 50000 90000 50000 4000 2000 "clearline"] -) -Layer(2 "solder") -( - Line[170000 50000 90000 50000 4000 2000 "clearline"] -) -Layer(3 "GND") -( -) -Layer(4 "power") -( -) -Layer(5 "signal1") -( -) -Layer(6 "signal2") -( -) -Layer(7 "signal3") -( -) -Layer(8 "signal4") -( -) -Layer(9 "silk") -( -) -Layer(10 "silk") -( -) Index: trunk/tests/orig/inputs/gcode_oneline.pcb =================================================================== --- trunk/tests/orig/inputs/gcode_oneline.pcb (revision 33432) +++ trunk/tests/orig/inputs/gcode_oneline.pcb (nonexistent) @@ -1,829 +0,0 @@ -# release: pcb 1.99y - -# To read pcb files, the pcb version (or the cvs source date) must be >= the file version -FileVersion[20070407] - -PCB["Basic Single Trace RS274-X Test" 200000 100000] - -Grid[10000.000000 0 0 1] -Cursor[0 500000 0.000000] -PolyArea[200000000.000000] -Thermal[0.500000] -DRC[1000 1000 1000 1000 1500 1000] -Flags("nameonpcb,uniquename,clearnew,snappin") -Groups("1,c:2,s:3:4:5:6:7:8") -Styles["Signal,1000,3600,2000,1000:Power,2500,6000,3500,1000:Fat,4000,6000,3500,1000:Skinny,600,2402,1181,600"] - -Symbol(' ' 18) -( -) -Symbol('!' 12) -( - SymbolLine(0 45 0 50 8) - SymbolLine(0 10 0 35 8) -) -Symbol('"' 12) -( - SymbolLine(0 10 0 20 8) - SymbolLine(10 10 10 20 8) -) -Symbol('#' 12) -( - SymbolLine(0 35 20 35 8) - SymbolLine(0 25 20 25 8) - SymbolLine(15 20 15 40 8) - SymbolLine(5 20 5 40 8) -) -Symbol('$' 12) -( - SymbolLine(15 15 20 20 8) - SymbolLine(5 15 15 15 8) - SymbolLine(0 20 5 15 8) - SymbolLine(0 20 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 40 8) - SymbolLine(15 45 20 40 8) - SymbolLine(5 45 15 45 8) - SymbolLine(0 40 5 45 8) - SymbolLine(10 10 10 50 8) -) -Symbol('%' 12) -( - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(10 25 15 20 8) - SymbolLine(5 25 10 25 8) - SymbolLine(0 20 5 25 8) - SymbolLine(0 50 40 10 8) - SymbolLine(35 50 40 45 8) - SymbolLine(40 40 40 45 8) - SymbolLine(35 35 40 40 8) - SymbolLine(30 35 35 35 8) - SymbolLine(25 40 30 35 8) - SymbolLine(25 40 25 45 8) - SymbolLine(25 45 30 50 8) - SymbolLine(30 50 35 50 8) -) -Symbol('&' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 35 15 20 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(0 25 25 50 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(0 35 0 45 8) -) -Symbol(''' 12) -( - SymbolLine(0 20 10 10 8) -) -Symbol('(' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) -) -Symbol(')' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('*' 12) -( - SymbolLine(0 20 20 40 8) - SymbolLine(0 40 20 20 8) - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol('+' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol(',' 12) -( - SymbolLine(0 60 10 50 8) -) -Symbol('-' 12) -( - SymbolLine(0 30 20 30 8) -) -Symbol('.' 12) -( - SymbolLine(0 50 5 50 8) -) -Symbol('/' 12) -( - SymbolLine(0 45 30 15 8) -) -Symbol('0' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 40 20 20 8) -) -Symbol('1' 12) -( - SymbolLine(5 50 15 50 8) - SymbolLine(10 10 10 50 8) - SymbolLine(0 20 10 10 8) -) -Symbol('2' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(0 50 25 25 8) - SymbolLine(0 50 25 50 8) -) -Symbol('3' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 30 20 30 8) -) -Symbol('4' 12) -( - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 25 30 8) - SymbolLine(20 10 20 50 8) -) -Symbol('5' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(0 10 0 30 8) - SymbolLine(0 30 5 25 8) - SymbolLine(5 25 15 25 8) - SymbolLine(15 25 20 30 8) - SymbolLine(20 30 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('6' 12) -( - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 30 15 30 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) -) -Symbol('7' 12) -( - SymbolLine(0 50 25 25 8) - SymbolLine(25 10 25 25 8) - SymbolLine(0 10 25 10 8) -) -Symbol('8' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 25 5 30 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 25 8) - SymbolLine(15 30 20 25 8) -) -Symbol('9' 12) -( - SymbolLine(0 50 20 30 8) - SymbolLine(20 15 20 30 8) - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) -) -Symbol(':' 12) -( - SymbolLine(0 25 5 25 8) - SymbolLine(0 35 5 35 8) -) -Symbol(';' 12) -( - SymbolLine(0 50 10 40 8) - SymbolLine(10 25 10 30 8) -) -Symbol('<' 12) -( - SymbolLine(0 30 10 20 8) - SymbolLine(0 30 10 40 8) -) -Symbol('=' 12) -( - SymbolLine(0 25 20 25 8) - SymbolLine(0 35 20 35 8) -) -Symbol('>' 12) -( - SymbolLine(0 20 10 30 8) - SymbolLine(0 40 10 30 8) -) -Symbol('?' 12) -( - SymbolLine(10 30 10 35 8) - SymbolLine(10 45 10 50 8) - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 20 8) - SymbolLine(10 30 20 20 8) -) -Symbol('@' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 40 50 8) - SymbolLine(50 35 50 10 8) - SymbolLine(50 10 40 0 8) - SymbolLine(40 0 10 0 8) - SymbolLine(10 0 0 10 8) - SymbolLine(15 20 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 30 35 8) - SymbolLine(30 35 35 30 8) - SymbolLine(35 30 40 35 8) - SymbolLine(35 30 35 15 8) - SymbolLine(35 20 30 15 8) - SymbolLine(20 15 30 15 8) - SymbolLine(20 15 15 20 8) - SymbolLine(40 35 50 35 8) -) -Symbol('A' 12) -( - SymbolLine(0 15 0 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('B' 12) -( - SymbolLine(0 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) -) -Symbol('C' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) -) -Symbol('D' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('E' 12) -( - SymbolLine(0 30 15 30 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('F' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(0 30 15 30 8) -) -Symbol('G' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(10 30 20 30 8) -) -Symbol('H' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(25 10 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('I' 12) -( - SymbolLine(0 10 10 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 10 50 8) -) -Symbol('J' 12) -( - SymbolLine(0 10 15 10 8) - SymbolLine(15 10 15 45 8) - SymbolLine(10 50 15 45 8) - SymbolLine(5 50 10 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('K' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 20 50 8) -) -Symbol('L' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 20 50 8) -) -Symbol('M' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 15 25 8) - SymbolLine(15 25 30 10 8) - SymbolLine(30 10 30 50 8) -) -Symbol('N' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 10 25 50 8) -) -Symbol('O' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('P' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) -) -Symbol('Q' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(10 40 20 50 8) -) -Symbol('R' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(5 30 25 50 8) -) -Symbol('S' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('T' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(10 10 10 50 8) -) -Symbol('U' 12) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 10 20 45 8) -) -Symbol('V' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 10 20 40 8) -) -Symbol('W' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 15 35 8) - SymbolLine(15 35 30 50 8) - SymbolLine(30 10 30 50 8) -) -Symbol('X' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 40 25 50 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 40 25 15 8) - SymbolLine(25 10 25 15 8) -) -Symbol('Y' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 10 25 8) - SymbolLine(10 25 20 15 8) - SymbolLine(20 10 20 15 8) - SymbolLine(10 25 10 50 8) -) -Symbol('Z' 12) -( - SymbolLine(0 10 25 10 8) - SymbolLine(25 10 25 15 8) - SymbolLine(0 40 25 15 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 50 25 50 8) -) -Symbol('[' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('\' 12) -( - SymbolLine(0 15 30 45 8) -) -Symbol(']' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('^' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 15 8) -) -Symbol('_' 12) -( - SymbolLine(0 50 20 50 8) -) -Symbol('a' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 45 8) - SymbolLine(20 45 25 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('b' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) -) -Symbol('c' 12) -( - SymbolLine(5 30 20 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) -) -Symbol('d' 12) -( - SymbolLine(20 10 20 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) -) -Symbol('e' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 40 20 40 8) - SymbolLine(20 40 20 35 8) -) -Symbol('f' 10) -( - SymbolLine(5 15 5 50 8) - SymbolLine(5 15 10 10 8) - SymbolLine(10 10 15 10 8) - SymbolLine(0 30 10 30 8) -) -Symbol('g' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 65 15 65 8) - SymbolLine(15 65 20 60 8) - SymbolLine(20 30 20 60 8) -) -Symbol('h' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) -) -Symbol('i' 10) -( - SymbolLine(0 20 0 25 8) - SymbolLine(0 35 0 50 8) -) -Symbol('j' 10) -( - SymbolLine(5 20 5 25 8) - SymbolLine(5 35 5 60 8) - SymbolLine(0 65 5 60 8) -) -Symbol('k' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 15 50 8) - SymbolLine(0 35 10 25 8) -) -Symbol('l' 10) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) -) -Symbol('m' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(20 35 25 30 8) - SymbolLine(25 30 30 30 8) - SymbolLine(30 30 35 35 8) - SymbolLine(35 35 35 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('n' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('o' 12) -( - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('p' 12) -( - SymbolLine(5 35 5 65 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(10 50 20 50 8) - SymbolLine(5 45 10 50 8) -) -Symbol('q' 12) -( - SymbolLine(20 35 20 65 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('r' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(0 30 5 35 8) -) -Symbol('s' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(20 40 25 45 8) - SymbolLine(5 40 20 40 8) - SymbolLine(0 35 5 40 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(0 45 5 50 8) -) -Symbol('t' 10) -( - SymbolLine(5 10 5 45 8) - SymbolLine(5 45 10 50 8) - SymbolLine(0 25 10 25 8) -) -Symbol('u' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 30 20 45 8) -) -Symbol('v' 12) -( - SymbolLine(0 30 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 30 20 40 8) -) -Symbol('w' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 15 45 8) - SymbolLine(15 30 15 45 8) - SymbolLine(15 45 20 50 8) - SymbolLine(20 50 25 50 8) - SymbolLine(25 50 30 45 8) - SymbolLine(30 30 30 45 8) -) -Symbol('x' 12) -( - SymbolLine(0 30 20 50 8) - SymbolLine(0 50 20 30 8) -) -Symbol('y' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 60 8) - SymbolLine(15 65 20 60 8) - SymbolLine(5 65 15 65 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('z' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(0 50 20 30 8) - SymbolLine(0 50 20 50 8) -) -Symbol('{' 12) -( - SymbolLine(5 15 10 10 8) - SymbolLine(5 15 5 25 8) - SymbolLine(0 30 5 25 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 5 45 8) - SymbolLine(5 45 10 50 8) -) -Symbol('|' 12) -( - SymbolLine(0 10 0 50 8) -) -Symbol('}' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 25 8) - SymbolLine(5 25 10 30 8) - SymbolLine(5 35 10 30 8) - SymbolLine(5 35 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('~' 12) -( - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 10 30 8) - SymbolLine(10 30 15 35 8) - SymbolLine(15 35 20 35 8) - SymbolLine(20 35 25 30 8) -) -Via[90000 50000 6000 2000 0 3500 "" ""] -Layer(1 "component") -( - Line[10000 50000 90000 50000 4000 2000 "clearline"] -) -Layer(2 "solder") -( - Line[170000 50000 90000 50000 4000 2000 "clearline"] -) -Layer(3 "GND") -( -) -Layer(4 "power") -( -) -Layer(5 "signal1") -( -) -Layer(6 "signal2") -( -) -Layer(7 "signal3") -( -) -Layer(8 "signal4") -( -) -Layer(9 "silk") -( -) -Layer(10 "silk") -( -) Index: trunk/tests/orig/inputs/bom_general.pcb =================================================================== --- trunk/tests/orig/inputs/bom_general.pcb (revision 33432) +++ trunk/tests/orig/inputs/bom_general.pcb (nonexistent) @@ -1,1211 +0,0 @@ -# release: pcb 1.99y - -# To read pcb files, the pcb version (or the cvs source date) must be >= the file version -FileVersion[20070407] - -PCB["Basic BOM/XY Test" 600000 500000] - -Grid[10000.000000 0 0 1] -Cursor[0 500000 0.000000] -PolyArea[200000000.000000] -Thermal[0.500000] -DRC[1000 1000 1000 1000 1500 1000] -Flags("nameonpcb,uniquename,clearnew,snappin") -Groups("1,c:2,s:3:4:5:6:7:8") -Styles["Signal,1000,3600,2000,1000:Power,2500,6000,3500,1000:Fat,4000,6000,3500,1000:Skinny,600,2402,1181,600"] - -Symbol(' ' 18) -( -) -Symbol('!' 12) -( - SymbolLine(0 45 0 50 8) - SymbolLine(0 10 0 35 8) -) -Symbol('"' 12) -( - SymbolLine(0 10 0 20 8) - SymbolLine(10 10 10 20 8) -) -Symbol('#' 12) -( - SymbolLine(0 35 20 35 8) - SymbolLine(0 25 20 25 8) - SymbolLine(15 20 15 40 8) - SymbolLine(5 20 5 40 8) -) -Symbol('$' 12) -( - SymbolLine(15 15 20 20 8) - SymbolLine(5 15 15 15 8) - SymbolLine(0 20 5 15 8) - SymbolLine(0 20 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 40 8) - SymbolLine(15 45 20 40 8) - SymbolLine(5 45 15 45 8) - SymbolLine(0 40 5 45 8) - SymbolLine(10 10 10 50 8) -) -Symbol('%' 12) -( - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(10 25 15 20 8) - SymbolLine(5 25 10 25 8) - SymbolLine(0 20 5 25 8) - SymbolLine(0 50 40 10 8) - SymbolLine(35 50 40 45 8) - SymbolLine(40 40 40 45 8) - SymbolLine(35 35 40 40 8) - SymbolLine(30 35 35 35 8) - SymbolLine(25 40 30 35 8) - SymbolLine(25 40 25 45 8) - SymbolLine(25 45 30 50 8) - SymbolLine(30 50 35 50 8) -) -Symbol('&' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 35 15 20 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(0 25 25 50 8) - SymbolLine(5 10 10 10 8) - SymbolLine(10 10 15 15 8) - SymbolLine(15 15 15 20 8) - SymbolLine(0 35 0 45 8) -) -Symbol(''' 12) -( - SymbolLine(0 20 10 10 8) -) -Symbol('(' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) -) -Symbol(')' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('*' 12) -( - SymbolLine(0 20 20 40 8) - SymbolLine(0 40 20 20 8) - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol('+' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(10 20 10 40 8) -) -Symbol(',' 12) -( - SymbolLine(0 60 10 50 8) -) -Symbol('-' 12) -( - SymbolLine(0 30 20 30 8) -) -Symbol('.' 12) -( - SymbolLine(0 50 5 50 8) -) -Symbol('/' 12) -( - SymbolLine(0 45 30 15 8) -) -Symbol('0' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 40 20 20 8) -) -Symbol('1' 12) -( - SymbolLine(5 50 15 50 8) - SymbolLine(10 10 10 50 8) - SymbolLine(0 20 10 10 8) -) -Symbol('2' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(0 50 25 25 8) - SymbolLine(0 50 25 50 8) -) -Symbol('3' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 30 20 30 8) -) -Symbol('4' 12) -( - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 25 30 8) - SymbolLine(20 10 20 50 8) -) -Symbol('5' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(0 10 0 30 8) - SymbolLine(0 30 5 25 8) - SymbolLine(5 25 15 25 8) - SymbolLine(15 25 20 30 8) - SymbolLine(20 30 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('6' 12) -( - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 30 15 30 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) -) -Symbol('7' 12) -( - SymbolLine(0 50 25 25 8) - SymbolLine(25 10 25 25 8) - SymbolLine(0 10 25 10 8) -) -Symbol('8' 12) -( - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 25 5 30 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 25 8) - SymbolLine(15 30 20 25 8) -) -Symbol('9' 12) -( - SymbolLine(0 50 20 30 8) - SymbolLine(20 15 20 30 8) - SymbolLine(15 10 20 15 8) - SymbolLine(5 10 15 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) -) -Symbol(':' 12) -( - SymbolLine(0 25 5 25 8) - SymbolLine(0 35 5 35 8) -) -Symbol(';' 12) -( - SymbolLine(0 50 10 40 8) - SymbolLine(10 25 10 30 8) -) -Symbol('<' 12) -( - SymbolLine(0 30 10 20 8) - SymbolLine(0 30 10 40 8) -) -Symbol('=' 12) -( - SymbolLine(0 25 20 25 8) - SymbolLine(0 35 20 35 8) -) -Symbol('>' 12) -( - SymbolLine(0 20 10 30 8) - SymbolLine(0 40 10 30 8) -) -Symbol('?' 12) -( - SymbolLine(10 30 10 35 8) - SymbolLine(10 45 10 50 8) - SymbolLine(0 15 0 20 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 20 8) - SymbolLine(10 30 20 20 8) -) -Symbol('@' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 40 50 8) - SymbolLine(50 35 50 10 8) - SymbolLine(50 10 40 0 8) - SymbolLine(40 0 10 0 8) - SymbolLine(10 0 0 10 8) - SymbolLine(15 20 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 30 35 8) - SymbolLine(30 35 35 30 8) - SymbolLine(35 30 40 35 8) - SymbolLine(35 30 35 15 8) - SymbolLine(35 20 30 15 8) - SymbolLine(20 15 30 15 8) - SymbolLine(20 15 15 20 8) - SymbolLine(40 35 50 35 8) -) -Symbol('A' 12) -( - SymbolLine(0 15 0 50 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('B' 12) -( - SymbolLine(0 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) -) -Symbol('C' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 20 10 8) -) -Symbol('D' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('E' 12) -( - SymbolLine(0 30 15 30 8) - SymbolLine(0 50 20 50 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) -) -Symbol('F' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(0 30 15 30 8) -) -Symbol('G' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 30 25 35 8) - SymbolLine(10 30 20 30 8) -) -Symbol('H' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(25 10 25 50 8) - SymbolLine(0 30 25 30 8) -) -Symbol('I' 12) -( - SymbolLine(0 10 10 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 10 50 8) -) -Symbol('J' 12) -( - SymbolLine(0 10 15 10 8) - SymbolLine(15 10 15 45 8) - SymbolLine(10 50 15 45 8) - SymbolLine(5 50 10 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('K' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 30 20 10 8) - SymbolLine(0 30 20 50 8) -) -Symbol('L' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 20 50 8) -) -Symbol('M' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 15 25 8) - SymbolLine(15 25 30 10 8) - SymbolLine(30 10 30 50 8) -) -Symbol('N' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 10 25 50 8) -) -Symbol('O' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('P' 12) -( - SymbolLine(5 10 5 50 8) - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) -) -Symbol('Q' 12) -( - SymbolLine(0 15 0 45 8) - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 15 10 8) - SymbolLine(15 10 20 15 8) - SymbolLine(20 15 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(10 40 20 50 8) -) -Symbol('R' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(20 10 25 15 8) - SymbolLine(25 15 25 25 8) - SymbolLine(20 30 25 25 8) - SymbolLine(5 30 20 30 8) - SymbolLine(5 10 5 50 8) - SymbolLine(5 30 25 50 8) -) -Symbol('S' 12) -( - SymbolLine(20 10 25 15 8) - SymbolLine(5 10 20 10 8) - SymbolLine(0 15 5 10 8) - SymbolLine(0 15 0 25 8) - SymbolLine(0 25 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('T' 12) -( - SymbolLine(0 10 20 10 8) - SymbolLine(10 10 10 50 8) -) -Symbol('U' 12) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 10 20 45 8) -) -Symbol('V' 12) -( - SymbolLine(0 10 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 10 20 40 8) -) -Symbol('W' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 15 35 8) - SymbolLine(15 35 30 50 8) - SymbolLine(30 10 30 50 8) -) -Symbol('X' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 25 40 8) - SymbolLine(25 40 25 50 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 40 25 15 8) - SymbolLine(25 10 25 15 8) -) -Symbol('Y' 12) -( - SymbolLine(0 10 0 15 8) - SymbolLine(0 15 10 25 8) - SymbolLine(10 25 20 15 8) - SymbolLine(20 10 20 15 8) - SymbolLine(10 25 10 50 8) -) -Symbol('Z' 12) -( - SymbolLine(0 10 25 10 8) - SymbolLine(25 10 25 15 8) - SymbolLine(0 40 25 15 8) - SymbolLine(0 40 0 50 8) - SymbolLine(0 50 25 50 8) -) -Symbol('[' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(0 10 0 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('\' 12) -( - SymbolLine(0 15 30 45 8) -) -Symbol(']' 12) -( - SymbolLine(0 10 5 10 8) - SymbolLine(5 10 5 50 8) - SymbolLine(0 50 5 50 8) -) -Symbol('^' 12) -( - SymbolLine(0 15 5 10 8) - SymbolLine(5 10 10 15 8) -) -Symbol('_' 12) -( - SymbolLine(0 50 20 50 8) -) -Symbol('a' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 45 8) - SymbolLine(20 45 25 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('b' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) -) -Symbol('c' 12) -( - SymbolLine(5 30 20 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 20 50 8) -) -Symbol('d' 12) -( - SymbolLine(20 10 20 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) -) -Symbol('e' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(0 45 5 50 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(0 40 20 40 8) - SymbolLine(20 40 20 35 8) -) -Symbol('f' 10) -( - SymbolLine(5 15 5 50 8) - SymbolLine(5 15 10 10 8) - SymbolLine(10 10 15 10 8) - SymbolLine(0 30 10 30 8) -) -Symbol('g' 12) -( - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 65 15 65 8) - SymbolLine(15 65 20 60 8) - SymbolLine(20 30 20 60 8) -) -Symbol('h' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) -) -Symbol('i' 10) -( - SymbolLine(0 20 0 25 8) - SymbolLine(0 35 0 50 8) -) -Symbol('j' 10) -( - SymbolLine(5 20 5 25 8) - SymbolLine(5 35 5 60 8) - SymbolLine(0 65 5 60 8) -) -Symbol('k' 12) -( - SymbolLine(0 10 0 50 8) - SymbolLine(0 35 15 50 8) - SymbolLine(0 35 10 25 8) -) -Symbol('l' 10) -( - SymbolLine(0 10 0 45 8) - SymbolLine(0 45 5 50 8) -) -Symbol('m' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(20 35 25 30 8) - SymbolLine(25 30 30 30 8) - SymbolLine(30 30 35 35 8) - SymbolLine(35 35 35 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('n' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 50 8) - SymbolLine(0 30 5 35 8) -) -Symbol('o' 12) -( - SymbolLine(0 35 0 45 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 15 30 8) - SymbolLine(15 30 20 35 8) - SymbolLine(20 35 20 45 8) - SymbolLine(15 50 20 45 8) - SymbolLine(5 50 15 50 8) - SymbolLine(0 45 5 50 8) -) -Symbol('p' 12) -( - SymbolLine(5 35 5 65 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(25 35 25 45 8) - SymbolLine(20 50 25 45 8) - SymbolLine(10 50 20 50 8) - SymbolLine(5 45 10 50 8) -) -Symbol('q' 12) -( - SymbolLine(20 35 20 65 8) - SymbolLine(15 30 20 35 8) - SymbolLine(5 30 15 30 8) - SymbolLine(0 35 5 30 8) - SymbolLine(0 35 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('r' 12) -( - SymbolLine(5 35 5 50 8) - SymbolLine(5 35 10 30 8) - SymbolLine(10 30 20 30 8) - SymbolLine(0 30 5 35 8) -) -Symbol('s' 12) -( - SymbolLine(5 50 20 50 8) - SymbolLine(20 50 25 45 8) - SymbolLine(20 40 25 45 8) - SymbolLine(5 40 20 40 8) - SymbolLine(0 35 5 40 8) - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 20 30 8) - SymbolLine(20 30 25 35 8) - SymbolLine(0 45 5 50 8) -) -Symbol('t' 10) -( - SymbolLine(5 10 5 45 8) - SymbolLine(5 45 10 50 8) - SymbolLine(0 25 10 25 8) -) -Symbol('u' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) - SymbolLine(20 30 20 45 8) -) -Symbol('v' 12) -( - SymbolLine(0 30 0 40 8) - SymbolLine(0 40 10 50 8) - SymbolLine(10 50 20 40 8) - SymbolLine(20 30 20 40 8) -) -Symbol('w' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(5 50 10 50 8) - SymbolLine(10 50 15 45 8) - SymbolLine(15 30 15 45 8) - SymbolLine(15 45 20 50 8) - SymbolLine(20 50 25 50 8) - SymbolLine(25 50 30 45 8) - SymbolLine(30 30 30 45 8) -) -Symbol('x' 12) -( - SymbolLine(0 30 20 50 8) - SymbolLine(0 50 20 30 8) -) -Symbol('y' 12) -( - SymbolLine(0 30 0 45 8) - SymbolLine(0 45 5 50 8) - SymbolLine(20 30 20 60 8) - SymbolLine(15 65 20 60 8) - SymbolLine(5 65 15 65 8) - SymbolLine(0 60 5 65 8) - SymbolLine(5 50 15 50 8) - SymbolLine(15 50 20 45 8) -) -Symbol('z' 12) -( - SymbolLine(0 30 20 30 8) - SymbolLine(0 50 20 30 8) - SymbolLine(0 50 20 50 8) -) -Symbol('{' 12) -( - SymbolLine(5 15 10 10 8) - SymbolLine(5 15 5 25 8) - SymbolLine(0 30 5 25 8) - SymbolLine(0 30 5 35 8) - SymbolLine(5 35 5 45 8) - SymbolLine(5 45 10 50 8) -) -Symbol('|' 12) -( - SymbolLine(0 10 0 50 8) -) -Symbol('}' 12) -( - SymbolLine(0 10 5 15 8) - SymbolLine(5 15 5 25 8) - SymbolLine(5 25 10 30 8) - SymbolLine(5 35 10 30 8) - SymbolLine(5 35 5 45 8) - SymbolLine(0 50 5 45 8) -) -Symbol('~' 12) -( - SymbolLine(0 35 5 30 8) - SymbolLine(5 30 10 30 8) - SymbolLine(10 30 15 35 8) - SymbolLine(15 35 20 35 8) - SymbolLine(20 35 25 30 8) -) - -Element["onsolder" "Standard SMT resistor, capacitor etc" "R0_BOT" "RESC3216N" 60000 110000 -13150 13150 0 100 "auto"] -( - Pad[-5905 -984 -5905 984 5118 2000 5718 "1" "1" "onsolder,square"] - Pad[5905 -984 5905 984 5118 2000 5718 "2" "2" "onsolder,square"] - ElementLine [-1968 -3543 1968 -3543 800] - ElementLine [-1968 3543 1968 3543 800] - - ) - -Element["onsolder" "Standard SMT resistor, capacitor etc" "R90_BOT" "RESC3216N" 100000 110000 -13150 -13150 1 100 "auto"] -( - Pad[-984 -5905 984 -5905 5118 2000 5718 "1" "1" "onsolder,square"] - Pad[-984 5905 984 5905 5118 2000 5718 "2" "2" "onsolder,square"] - ElementLine [3543 1968 3543 -1968 800] - ElementLine [-3543 1968 -3543 -1968 800] - - ) - -Element["onsolder" "Standard SMT resistor, capacitor etc" "R180_BOT" "RESC3216N" 130000 110000 13150 6850 2 100 "auto"] -( - Pad[5905 -984 5905 984 5118 2000 5718 "1" "1" "onsolder,square"] - Pad[-5905 -984 -5905 984 5118 2000 5718 "2" "2" "onsolder,square"] - ElementLine [-1968 3543 1968 3543 800] - ElementLine [-1968 -3543 1968 -3543 800] - - ) - -Element["onsolder" "Standard SMT resistor, capacitor etc" "R270_BOT" "RESC3216N" 170000 110000 -6850 13150 3 100 "auto"] -( - Pad[-984 5905 984 5905 5118 2000 5718 "1" "1" "onsolder,square"] - Pad[-984 -5905 984 -5905 5118 2000 5718 "2" "2" "onsolder,square"] - ElementLine [-3543 1968 -3543 -1968 800] - ElementLine [3543 1968 3543 -1968 800] - - ) - -Element["onsolder" "Small outline package, narrow (150mil)" "USO0_BOT" "SO8" 60000 240000 -17500 13500 0 100 "auto"] -( - Pad[-13500 7500 -7000 7500 2000 1000 3000 "1" "1" "onsolder,square"] - Pad[-13500 2500 -7000 2500 2000 1000 3000 "2" "2" "onsolder,square"] - Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "3" "3" "onsolder,square"] - Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "4" "4" "onsolder,square"] - Pad[7000 -7500 13500 -7500 2000 1000 3000 "5" "5" "onsolder,square,edge2"] - Pad[7000 -2500 13500 -2500 2000 1000 3000 "6" "6" "onsolder,square,edge2"] - Pad[7000 2500 13500 2500 2000 1000 3000 "7" "7" "onsolder,square,edge2"] - Pad[7000 7500 13500 7500 2000 1000 3000 "8" "8" "onsolder,square,edge2"] - ElementLine [15500 9500 2500 9500 1000] - ElementLine [-15500 9500 -2500 9500 1000] - ElementLine [15500 -9500 15500 9500 1000] - ElementLine [-15500 -9500 15500 -9500 1000] - ElementLine [-15500 9500 -15500 -9500 1000] - ElementArc [0 9500 2500 2500 180 180 1000] - - ) - -Element["onsolder" "Small outline package, narrow (150mil)" "USO90_BOT" "SO8" 100000 240000 -21500 -3000 1 100 "auto"] -( - Pad[-7500 -13500 -7500 -7000 2000 1000 3000 "1" "1" "onsolder,square"] - Pad[-2500 -13500 -2500 -7000 2000 1000 3000 "2" "2" "onsolder,square"] - Pad[2500 -13500 2500 -7000 2000 1000 3000 "3" "3" "onsolder,square"] - Pad[7500 -13500 7500 -7000 2000 1000 3000 "4" "4" "onsolder,square"] - Pad[7500 7000 7500 13500 2000 1000 3000 "5" "5" "onsolder,square,edge2"] - Pad[2500 7000 2500 13500 2000 1000 3000 "6" "6" "onsolder,square,edge2"] - Pad[-2500 7000 -2500 13500 2000 1000 3000 "7" "7" "onsolder,square,edge2"] - Pad[-7500 7000 -7500 13500 2000 1000 3000 "8" "8" "onsolder,square,edge2"] - ElementLine [-9500 15500 -9500 2500 1000] - ElementLine [-9500 -2500 -9500 -15500 1000] - ElementLine [-9500 15500 9500 15500 1000] - ElementLine [9500 15500 9500 -15500 1000] - ElementLine [-9500 -15500 9500 -15500 1000] - ElementArc [-9500 0 2500 2500 90 180 1000] - - ) - -Element["onsolder" "Small outline package, narrow (150mil)" "USO180_BOT" "SO8" 130000 240000 22000 -16000 2 100 "auto"] -( - Pad[7000 -7500 13500 -7500 2000 1000 3000 "1" "1" "onsolder,square,edge2"] - Pad[7000 -2500 13500 -2500 2000 1000 3000 "2" "2" "onsolder,square,edge2"] - Pad[7000 2500 13500 2500 2000 1000 3000 "3" "3" "onsolder,square,edge2"] - Pad[7000 7500 13500 7500 2000 1000 3000 "4" "4" "onsolder,square,edge2"] - Pad[-13500 7500 -7000 7500 2000 1000 3000 "5" "5" "onsolder,square"] - Pad[-13500 2500 -7000 2500 2000 1000 3000 "6" "6" "onsolder,square"] - Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "7" "7" "onsolder,square"] - Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "8" "8" "onsolder,square"] - ElementLine [-15500 -9500 -2500 -9500 1000] - ElementLine [2500 -9500 15500 -9500 1000] - ElementLine [-15500 9500 -15500 -9500 1000] - ElementLine [-15500 9500 15500 9500 1000] - ElementLine [15500 9500 15500 -9500 1000] - ElementArc [0 -9500 2500 2500 0 180 1000] - - ) - -Element["onsolder" "Small outline package, narrow (150mil)" "USO270_BOT" "SO8" 170000 240000 24000 18000 3 100 "auto"] -( - Pad[7500 7000 7500 13500 2000 1000 3000 "1" "1" "onsolder,square,edge2"] - Pad[2500 7000 2500 13500 2000 1000 3000 "2" "2" "onsolder,square,edge2"] - Pad[-2500 7000 -2500 13500 2000 1000 3000 "3" "3" "onsolder,square,edge2"] - Pad[-7500 7000 -7500 13500 2000 1000 3000 "4" "4" "onsolder,square,edge2"] - Pad[-7500 -13500 -7500 -7000 2000 1000 3000 "5" "5" "onsolder,square"] - Pad[-2500 -13500 -2500 -7000 2000 1000 3000 "6" "6" "onsolder,square"] - Pad[2500 -13500 2500 -7000 2000 1000 3000 "7" "7" "onsolder,square"] - Pad[7500 -13500 7500 -7000 2000 1000 3000 "8" "8" "onsolder,square"] - ElementLine [9500 -2500 9500 -15500 1000] - ElementLine [9500 15500 9500 2500 1000] - ElementLine [-9500 -15500 9500 -15500 1000] - ElementLine [-9500 15500 -9500 -15500 1000] - ElementLine [-9500 15500 9500 15500 1000] - ElementArc [9500 0 2500 2500 270 180 1000] - - ) - -Element["onsolder" "Dual in-line package, narrow (300 mil)" "UDIP0_BOT" "DIP8" 40000 450000 17000 -5000 3 100 "auto"] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[0 -10000 6000 3000 6600 2800 "2" "2" ""] - Pin[0 -20000 6000 3000 6600 2800 "3" "3" ""] - Pin[0 -30000 6000 3000 6600 2800 "4" "4" ""] - Pin[30000 -30000 6000 3000 6600 2800 "5" "5" ""] - Pin[30000 -20000 6000 3000 6600 2800 "6" "6" ""] - Pin[30000 -10000 6000 3000 6600 2800 "7" "7" ""] - Pin[30000 0 6000 3000 6600 2800 "8" "8" ""] - ElementLine [20000 5000 35000 5000 1000] - ElementLine [-5000 5000 10000 5000 1000] - ElementLine [35000 -35000 35000 5000 1000] - ElementLine [-5000 -35000 35000 -35000 1000] - ElementLine [-5000 5000 -5000 -35000 1000] - ElementArc [15000 5000 5000 5000 180 180 1000] - - ) - -Element["onsolder" "Dual in-line package, narrow (300 mil)" "UDIP90_BOT" "DIP8" 110000 420000 5000 17000 0 100 "auto"] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[10000 0 6000 3000 6600 2800 "2" "2" ""] - Pin[20000 0 6000 3000 6600 2800 "3" "3" ""] - Pin[30000 0 6000 3000 6600 2800 "4" "4" ""] - Pin[30000 30000 6000 3000 6600 2800 "5" "5" ""] - Pin[20000 30000 6000 3000 6600 2800 "6" "6" ""] - Pin[10000 30000 6000 3000 6600 2800 "7" "7" ""] - Pin[0 30000 6000 3000 6600 2800 "8" "8" ""] - ElementLine [-5000 35000 -5000 20000 1000] - ElementLine [-5000 10000 -5000 -5000 1000] - ElementLine [-5000 35000 35000 35000 1000] - ElementLine [35000 35000 35000 -5000 1000] - ElementLine [-5000 -5000 35000 -5000 1000] - ElementArc [-5000 15000 5000 5000 90 180 1000] - - ) - -Element["onsolder" "Dual in-line package, narrow (300 mil)" "UDIP180_BOT" "DIP8" 210000 420000 -17000 5000 1 100 "auto"] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[0 10000 6000 3000 6600 2800 "2" "2" ""] - Pin[0 20000 6000 3000 6600 2800 "3" "3" ""] - Pin[0 30000 6000 3000 6600 2800 "4" "4" ""] - Pin[-30000 30000 6000 3000 6600 2800 "5" "5" ""] - Pin[-30000 20000 6000 3000 6600 2800 "6" "6" ""] - Pin[-30000 10000 6000 3000 6600 2800 "7" "7" ""] - Pin[-30000 0 6000 3000 6600 2800 "8" "8" ""] - ElementLine [-35000 -5000 -20000 -5000 1000] - ElementLine [-10000 -5000 5000 -5000 1000] - ElementLine [-35000 35000 -35000 -5000 1000] - ElementLine [-35000 35000 5000 35000 1000] - ElementLine [5000 35000 5000 -5000 1000] - ElementArc [-15000 -5000 5000 5000 0 180 1000] - - ) - -Element["onsolder" "Dual in-line package, narrow (300 mil)" "UDIP270_BOT" "DIP8" 280000 450000 -5000 -17000 2 100 "auto"] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[-10000 0 6000 3000 6600 2800 "2" "2" ""] - Pin[-20000 0 6000 3000 6600 2800 "3" "3" ""] - Pin[-30000 0 6000 3000 6600 2800 "4" "4" ""] - Pin[-30000 -30000 6000 3000 6600 2800 "5" "5" ""] - Pin[-20000 -30000 6000 3000 6600 2800 "6" "6" ""] - Pin[-10000 -30000 6000 3000 6600 2800 "7" "7" ""] - Pin[0 -30000 6000 3000 6600 2800 "8" "8" ""] - ElementLine [5000 -20000 5000 -35000 1000] - ElementLine [5000 5000 5000 -10000 1000] - ElementLine [-35000 -35000 5000 -35000 1000] - ElementLine [-35000 5000 -35000 -35000 1000] - ElementLine [-35000 5000 5000 5000 1000] - ElementArc [5000 -15000 5000 5000 270 180 1000] - - ) - -Element["" "Small outline package, narrow (150mil)" "USO0_TOP" "SO8" 60000 180000 -16000 -22500 0 100 ""] -( - Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "1" "1" "square"] - Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "2" "2" "square"] - Pad[-13500 2500 -7000 2500 2000 1000 3000 "3" "3" "square"] - Pad[-13500 7500 -7000 7500 2000 1000 3000 "4" "4" "square"] - Pad[7000 7500 13500 7500 2000 1000 3000 "5" "5" "square,edge2"] - Pad[7000 2500 13500 2500 2000 1000 3000 "6" "6" "square,edge2"] - Pad[7000 -2500 13500 -2500 2000 1000 3000 "7" "7" "square,edge2"] - Pad[7000 -7500 13500 -7500 2000 1000 3000 "8" "8" "square,edge2"] - ElementLine [15500 -9500 2500 -9500 1000] - ElementLine [-15500 -9500 -2500 -9500 1000] - ElementLine [15500 9500 15500 -9500 1000] - ElementLine [-15500 9500 15500 9500 1000] - ElementLine [-15500 -9500 -15500 9500 1000] - ElementArc [0 -9500 2500 2500 0 180 1000] - - ) - -Element["" "Small outline package, narrow (150mil)" "USO270_TOP" "SO8" 100000 180000 -16000 22000 1 100 ""] -( - Pad[-7500 7000 -7500 13500 2000 1000 3000 "1" "1" "square,edge2"] - Pad[-2500 7000 -2500 13500 2000 1000 3000 "2" "2" "square,edge2"] - Pad[2500 7000 2500 13500 2000 1000 3000 "3" "3" "square,edge2"] - Pad[7500 7000 7500 13500 2000 1000 3000 "4" "4" "square,edge2"] - Pad[7500 -13500 7500 -7000 2000 1000 3000 "5" "5" "square"] - Pad[2500 -13500 2500 -7000 2000 1000 3000 "6" "6" "square"] - Pad[-2500 -13500 -2500 -7000 2000 1000 3000 "7" "7" "square"] - Pad[-7500 -13500 -7500 -7000 2000 1000 3000 "8" "8" "square"] - ElementLine [-9500 -15500 -9500 -2500 1000] - ElementLine [-9500 2500 -9500 15500 1000] - ElementLine [-9500 -15500 9500 -15500 1000] - ElementLine [9500 -15500 9500 15500 1000] - ElementLine [-9500 15500 9500 15500 1000] - ElementArc [-9500 0 2500 2500 90 180 1000] - - ) - -Element["" "Small outline package, narrow (150mil)" "USO180_TOP" "SO8" 130000 180000 9000 17000 2 100 ""] -( - Pad[7000 7500 13500 7500 2000 1000 3000 "1" "1" "square,edge2"] - Pad[7000 2500 13500 2500 2000 1000 3000 "2" "2" "square,edge2"] - Pad[7000 -2500 13500 -2500 2000 1000 3000 "3" "3" "square,edge2"] - Pad[7000 -7500 13500 -7500 2000 1000 3000 "4" "4" "square,edge2"] - Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "5" "5" "square"] - Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "6" "6" "square"] - Pad[-13500 2500 -7000 2500 2000 1000 3000 "7" "7" "square"] - Pad[-13500 7500 -7000 7500 2000 1000 3000 "8" "8" "square"] - ElementLine [-15500 9500 -2500 9500 1000] - ElementLine [2500 9500 15500 9500 1000] - ElementLine [-15500 -9500 -15500 9500 1000] - ElementLine [-15500 -9500 15500 -9500 1000] - ElementLine [15500 -9500 15500 9500 1000] - ElementArc [0 9500 2500 2500 180 180 1000] - - ) - -Element["" "Small outline package, narrow (150mil)" "USO90_TOP" "SO8" 170000 180000 15500 -13500 3 100 ""] -( - Pad[7500 -13500 7500 -7000 2000 1000 3000 "1" "1" "square"] - Pad[2500 -13500 2500 -7000 2000 1000 3000 "2" "2" "square"] - Pad[-2500 -13500 -2500 -7000 2000 1000 3000 "3" "3" "square"] - Pad[-7500 -13500 -7500 -7000 2000 1000 3000 "4" "4" "square"] - Pad[-7500 7000 -7500 13500 2000 1000 3000 "5" "5" "square,edge2"] - Pad[-2500 7000 -2500 13500 2000 1000 3000 "6" "6" "square,edge2"] - Pad[2500 7000 2500 13500 2000 1000 3000 "7" "7" "square,edge2"] - Pad[7500 7000 7500 13500 2000 1000 3000 "8" "8" "square,edge2"] - ElementLine [9500 2500 9500 15500 1000] - ElementLine [9500 -15500 9500 -2500 1000] - ElementLine [-9500 15500 9500 15500 1000] - ElementLine [-9500 -15500 -9500 15500 1000] - ElementLine [-9500 -15500 9500 -15500 1000] - ElementArc [9500 0 2500 2500 270 180 1000] - - ) - -Element["" "Dual in-line package, narrow (300 mil)" "UDIP0_TOP" "DIP8" 40000 340000 17000 -35000 3 100 ""] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[0 10000 6000 3000 6600 2800 "2" "2" ""] - Pin[0 20000 6000 3000 6600 2800 "3" "3" ""] - Pin[0 30000 6000 3000 6600 2800 "4" "4" ""] - Pin[30000 30000 6000 3000 6600 2800 "5" "5" ""] - Pin[30000 20000 6000 3000 6600 2800 "6" "6" ""] - Pin[30000 10000 6000 3000 6600 2800 "7" "7" ""] - Pin[30000 0 6000 3000 6600 2800 "8" "8" ""] - ElementLine [20000 -5000 35000 -5000 1000] - ElementLine [-5000 -5000 10000 -5000 1000] - ElementLine [35000 35000 35000 -5000 1000] - ElementLine [-5000 35000 35000 35000 1000] - ElementLine [-5000 -5000 -5000 35000 1000] - ElementArc [15000 -5000 5000 5000 0 180 1000] - - ) - -Element["" "Dual in-line package, narrow (300 mil)" "UDIP270_TOP" "DIP8" 110000 370000 5000 -17000 0 100 ""] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[10000 0 6000 3000 6600 2800 "2" "2" ""] - Pin[20000 0 6000 3000 6600 2800 "3" "3" ""] - Pin[30000 0 6000 3000 6600 2800 "4" "4" ""] - Pin[30000 -30000 6000 3000 6600 2800 "5" "5" ""] - Pin[20000 -30000 6000 3000 6600 2800 "6" "6" ""] - Pin[10000 -30000 6000 3000 6600 2800 "7" "7" ""] - Pin[0 -30000 6000 3000 6600 2800 "8" "8" ""] - ElementLine [-5000 -35000 -5000 -20000 1000] - ElementLine [-5000 -10000 -5000 5000 1000] - ElementLine [-5000 -35000 35000 -35000 1000] - ElementLine [35000 -35000 35000 5000 1000] - ElementLine [-5000 5000 35000 5000 1000] - ElementArc [-5000 -15000 5000 5000 90 180 1000] - - ) - -Element["" "Dual in-line package, narrow (300 mil)" "UDIP180_TOP" "DIP8" 210000 370000 -17000 -5000 1 100 ""] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[0 -10000 6000 3000 6600 2800 "2" "2" ""] - Pin[0 -20000 6000 3000 6600 2800 "3" "3" ""] - Pin[0 -30000 6000 3000 6600 2800 "4" "4" ""] - Pin[-30000 -30000 6000 3000 6600 2800 "5" "5" ""] - Pin[-30000 -20000 6000 3000 6600 2800 "6" "6" ""] - Pin[-30000 -10000 6000 3000 6600 2800 "7" "7" ""] - Pin[-30000 0 6000 3000 6600 2800 "8" "8" ""] - ElementLine [-35000 5000 -20000 5000 1000] - ElementLine [-10000 5000 5000 5000 1000] - ElementLine [-35000 -35000 -35000 5000 1000] - ElementLine [-35000 -35000 5000 -35000 1000] - ElementLine [5000 -35000 5000 5000 1000] - ElementArc [-15000 5000 5000 5000 180 180 1000] - - ) - -Element["" "Dual in-line package, narrow (300 mil)" "UDIP90_TOP" "DIP8" 280000 340000 -5000 17000 2 100 ""] -( - Pin[0 0 6000 3000 6600 2800 "1" "1" "square"] - Pin[-10000 0 6000 3000 6600 2800 "2" "2" ""] - Pin[-20000 0 6000 3000 6600 2800 "3" "3" ""] - Pin[-30000 0 6000 3000 6600 2800 "4" "4" ""] - Pin[-30000 30000 6000 3000 6600 2800 "5" "5" ""] - Pin[-20000 30000 6000 3000 6600 2800 "6" "6" ""] - Pin[-10000 30000 6000 3000 6600 2800 "7" "7" ""] - Pin[0 30000 6000 3000 6600 2800 "8" "8" ""] - ElementLine [5000 20000 5000 35000 1000] - ElementLine [5000 -5000 5000 10000 1000] - ElementLine [-35000 35000 5000 35000 1000] - ElementLine [-35000 -5000 -35000 35000 1000] - ElementLine [-35000 -5000 5000 -5000 1000] - ElementArc [5000 15000 5000 5000 270 180 1000] - - ) - -Element["" "Standard SMT resistor, capacitor etc" "R0_TOP" "RESC3216N" 60000 70000 -11960 -10150 0 100 ""] -( - Pad[-5905 -984 -5905 984 5118 2000 5718 "1" "1" "square"] - Pad[5905 -984 5905 984 5118 2000 5718 "2" "2" "square"] - ElementLine [-1968 3543 1968 3543 800] - ElementLine [-1968 -3543 1968 -3543 800] - - ) - -Element["" "Standard SMT resistor, capacitor etc" "R270_TOP" "RESC3216N" 100000 70000 -13150 13150 1 100 ""] -( - Pad[-984 5905 984 5905 5118 2000 5718 "1" "1" "square"] - Pad[-984 -5905 984 -5905 5118 2000 5718 "2" "2" "square"] - ElementLine [3543 -1968 3543 1968 800] - ElementLine [-3543 -1968 -3543 1968 800] - - ) - -Element["" "Standard SMT resistor, capacitor etc" "R180_TOP" "RESC3216N" 130000 70000 13150 13150 2 100 ""] -( - Pad[5905 -984 5905 984 5118 2000 5718 "1" "1" "square"] - Pad[-5905 -984 -5905 984 5118 2000 5718 "2" "2" "square"] - ElementLine [-1968 -3543 1968 -3543 800] - ElementLine [-1968 3543 1968 3543 800] - - ) - -Element["" "Standard SMT resistor, capacitor etc" "R90_TOP" "RESC3216N" 170000 70000 15261 -7039 3 100 ""] -( - Pad[-984 -5905 984 -5905 5118 2000 5718 "1" "1" "square"] - Pad[-984 5905 984 5905 5118 2000 5718 "2" "2" "square"] - ElementLine [-3543 -1968 -3543 1968 800] - ElementLine [3543 -1968 3543 1968 800] - - ) -Layer(1 "component") -( -) -Layer(2 "solder") -( -) -Layer(3 "GND") -( -) -Layer(4 "power") -( -) -Layer(5 "signal1") -( -) -Layer(6 "signal2") -( -) -Layer(7 "signal3") -( -) -Layer(8 "signal4") -( -) -Layer(9 "silk") -( -) -Layer(10 "silk") -( - Text[270000 80000 0 100 "2-pin surface mount elements" ""] - Text[270000 90000 0 100 "0/90/180/270 degree rotations" ""] - Text[270000 100000 0 100 "both sides ofthe board" ""] - Text[270000 190000 0 100 "multi-pin surface mount elements" ""] - Text[270000 200000 0 100 "0/90/180/270 degree rotations" ""] - Text[270000 210000 0 100 "both sides ofthe board" ""] - Text[310000 380000 0 100 "multi-pin leaded elements" "selected"] - Text[310000 390000 0 100 "0/90/180/270 degree rotations" ""] - Text[310000 400000 0 100 "both sides ofthe board" ""] -) Index: trunk/tests/orig/golden/hid_bom1/bom_general.bom =================================================================== --- trunk/tests/orig/golden/hid_bom1/bom_general.bom (revision 33432) +++ trunk/tests/orig/golden/hid_bom1/bom_general.bom (nonexistent) @@ -1,10 +0,0 @@ -# $Id$ -# PcbBOM Version 1.0 -# Date: Wed Jun 24 21:42:21 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB BOM -# Quantity, Description, Value, RefDes -# -------------------------------------------- -8,"Standard SMT resistor, capacitor etc","RESC3216N",R90_TOP R180_TOP R270_TOP R0_TOP R270_BOT R180_BOT R90_BOT R0_BOT -8,"Dual in-line package, narrow (300 mil)","DIP8",UDIP90_TOP UDIP180_TOP UDIP270_TOP UDIP0_TOP UDIP270_BOT UDIP180_BOT UDIP90_BOT UDIP0_BOT -8,"Small outline package, narrow (150mil)","SO8",USO90_TOP USO180_TOP USO270_TOP USO0_TOP USO270_BOT USO180_BOT USO90_BOT USO0_BOT Index: trunk/tests/orig/golden/hid_bom2/test.bom =================================================================== --- trunk/tests/orig/golden/hid_bom2/test.bom (revision 33432) +++ trunk/tests/orig/golden/hid_bom2/test.bom (nonexistent) @@ -1,10 +0,0 @@ -# $Id$ -# PcbBOM Version 1.0 -# Date: Wed Jun 24 21:42:22 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB BOM -# Quantity, Description, Value, RefDes -# -------------------------------------------- -8,"Standard SMT resistor, capacitor etc","RESC3216N",R90_TOP R180_TOP R270_TOP R0_TOP R270_BOT R180_BOT R90_BOT R0_BOT -8,"Dual in-line package, narrow (300 mil)","DIP8",UDIP90_TOP UDIP180_TOP UDIP270_TOP UDIP0_TOP UDIP270_BOT UDIP180_BOT UDIP90_BOT UDIP0_BOT -8,"Small outline package, narrow (150mil)","SO8",USO90_TOP USO180_TOP USO270_TOP USO0_TOP USO270_BOT USO180_BOT USO90_BOT USO0_BOT Index: trunk/tests/orig/golden/hid_bom3/bom_general.bom =================================================================== --- trunk/tests/orig/golden/hid_bom3/bom_general.bom (revision 33432) +++ trunk/tests/orig/golden/hid_bom3/bom_general.bom (nonexistent) @@ -1,10 +0,0 @@ -# $Id$ -# PcbBOM Version 1.0 -# Date: Wed Jun 24 21:42:22 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB BOM -# Quantity, Description, Value, RefDes -# -------------------------------------------- -8,"Standard SMT resistor, capacitor etc","RESC3216N",R90_TOP R180_TOP R270_TOP R0_TOP R270_BOT R180_BOT R90_BOT R0_BOT -8,"Dual in-line package, narrow (300 mil)","DIP8",UDIP90_TOP UDIP180_TOP UDIP270_TOP UDIP0_TOP UDIP270_BOT UDIP180_BOT UDIP90_BOT UDIP0_BOT -8,"Small outline package, narrow (150mil)","SO8",USO90_TOP USO180_TOP USO270_TOP USO0_TOP USO270_BOT USO180_BOT USO90_BOT USO0_BOT Index: trunk/tests/orig/golden/hid_bom4/bom_general.bom =================================================================== --- trunk/tests/orig/golden/hid_bom4/bom_general.bom (revision 33432) +++ trunk/tests/orig/golden/hid_bom4/bom_general.bom (nonexistent) @@ -1,10 +0,0 @@ -# $Id$ -# PcbBOM Version 1.0 -# Date: Wed Jun 24 21:42:23 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB BOM -# Quantity, Description, Value, RefDes -# -------------------------------------------- -8,"Standard SMT resistor, capacitor etc","RESC3216N",R90_TOP R180_TOP R270_TOP R0_TOP R270_BOT R180_BOT R90_BOT R0_BOT -8,"Dual in-line package, narrow (300 mil)","DIP8",UDIP90_TOP UDIP180_TOP UDIP270_TOP UDIP0_TOP UDIP270_BOT UDIP180_BOT UDIP90_BOT UDIP0_BOT -8,"Small outline package, narrow (150mil)","SO8",USO90_TOP USO180_TOP USO270_TOP USO0_TOP USO270_BOT USO180_BOT USO90_BOT USO0_BOT Index: trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:31:54 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.546667 (start point) -G1 Z#101 -G1 X27.559000 Y13.462000 -G1 X27.305000 Y13.292667 -G1 X7.450667 Y13.292667 -G1 X7.196667 Y13.081000 -G1 X6.985000 Y12.827000 -G1 X6.985000 Y12.530667 -G1 X7.196667 Y12.276667 -G1 X7.450667 Y12.065000 -G1 X27.305000 Y12.065000 -G1 X27.643667 Y11.853333 -G1 X28.194000 Y11.853333 -G1 X28.532667 Y12.065000 -G1 X28.744333 Y12.403667 -G1 X28.744333 Y12.954000 -G1 X28.532667 Y13.292667 -G1 X28.194000 Y13.504333 -G1 X27.770667 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:31:54 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode1/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:31:51 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.546667 (start point) -G1 Z#101 -G1 X22.521333 Y13.462000 -G1 X22.267333 Y13.292667 -G1 X2.413000 Y13.292667 -G1 X2.159000 Y13.081000 -G1 X1.947333 Y12.827000 -G1 X1.947333 Y12.530667 -G1 X2.159000 Y12.276667 -G1 X2.413000 Y12.065000 -G1 X22.267333 Y12.065000 -G1 X22.606000 Y11.853333 -G1 X23.156333 Y11.853333 -G1 X23.495000 Y12.065000 -G1 X23.706667 Y12.403667 -G1 X23.706667 Y12.954000 -G1 X23.495000 Y13.292667 -G1 X23.156333 Y13.504333 -G1 X22.733000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode2/out.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode2/out.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode2/out.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:35:16 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.546667 (start point) -G1 Z#101 -G1 X22.521333 Y13.462000 -G1 X22.267333 Y13.292667 -G1 X2.413000 Y13.292667 -G1 X2.159000 Y13.081000 -G1 X1.947333 Y12.827000 -G1 X1.947333 Y12.530667 -G1 X2.159000 Y12.276667 -G1 X2.413000 Y12.065000 -G1 X22.267333 Y12.065000 -G1 X22.606000 Y11.853333 -G1 X23.156333 Y11.853333 -G1 X23.495000 Y12.065000 -G1 X23.706667 Y12.403667 -G1 X23.706667 Y12.954000 -G1 X23.495000 Y13.292667 -G1 X23.156333 Y13.504333 -G1 X22.733000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode2/out.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode2/out.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode2/out.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:35:19 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.546667 (start point) -G1 Z#101 -G1 X27.559000 Y13.462000 -G1 X27.305000 Y13.292667 -G1 X7.450667 Y13.292667 -G1 X7.196667 Y13.081000 -G1 X6.985000 Y12.827000 -G1 X6.985000 Y12.530667 -G1 X7.196667 Y12.276667 -G1 X7.450667 Y12.065000 -G1 X27.305000 Y12.065000 -G1 X27.643667 Y11.853333 -G1 X28.194000 Y11.853333 -G1 X28.532667 Y12.065000 -G1 X28.744333 Y12.403667 -G1 X28.744333 Y12.954000 -G1 X28.532667 Y13.292667 -G1 X28.194000 Y13.504333 -G1 X27.770667 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode2/out.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode2/out.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode2/out.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:35:19 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,40 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:36:04 2010 ) -(1200 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.813000 Y13.546667 (start point) -G1 Z#101 -G1 X27.664833 Y13.504333 -G1 X27.453167 Y13.398500 -G1 X27.326167 Y13.292667 -G1 X7.535333 Y13.292667 -G1 X7.323667 Y13.229167 -G1 X7.069667 Y12.975167 -G1 X7.006167 Y12.763500 -G1 X7.006167 Y12.615333 -G1 X7.069667 Y12.403667 -G1 X7.323667 Y12.149667 -G1 X7.535333 Y12.086167 -G1 X27.326167 Y12.086167 -G1 X27.495500 Y11.959167 -G1 X27.728333 Y11.853333 -G1 X28.130500 Y11.853333 -G1 X28.448000 Y12.001500 -G1 X28.638500 Y12.213167 -G1 X28.765500 Y12.488333 -G1 X28.765500 Y12.890500 -G1 X28.638500 Y13.165667 -G1 X28.448000 Y13.377333 -G1 X28.130500 Y13.525500 -G1 X27.813000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.35) -(end, total distance 45.35mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:36:04 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode3/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,40 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:35:46 2010 ) -(1200 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.754167 Y13.546667 (start point) -G1 Z#101 -G1 X22.606000 Y13.504333 -G1 X22.394333 Y13.398500 -G1 X22.267333 Y13.292667 -G1 X2.476500 Y13.292667 -G1 X2.264833 Y13.229167 -G1 X2.010833 Y12.975167 -G1 X1.947333 Y12.763500 -G1 X1.947333 Y12.615333 -G1 X2.010833 Y12.403667 -G1 X2.264833 Y12.149667 -G1 X2.476500 Y12.086167 -G1 X22.267333 Y12.086167 -G1 X22.436667 Y11.959167 -G1 X22.669500 Y11.853333 -G1 X23.071667 Y11.853333 -G1 X23.389167 Y12.001500 -G1 X23.579667 Y12.213167 -G1 X23.706667 Y12.488333 -G1 X23.706667 Y12.890500 -G1 X23.579667 Y13.165667 -G1 X23.389167 Y13.377333 -G1 X23.071667 Y13.525500 -G1 X22.754167 Y13.546667 -G0 Z#100 -(polygon end, distance 45.35) -(end, total distance 45.35mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:36:12 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=5.000000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.546667 (start point) -G1 Z#101 -G1 X27.559000 Y13.462000 -G1 X27.305000 Y13.292667 -G1 X7.450667 Y13.292667 -G1 X7.196667 Y13.081000 -G1 X6.985000 Y12.827000 -G1 X6.985000 Y12.530667 -G1 X7.196667 Y12.276667 -G1 X7.450667 Y12.065000 -G1 X27.305000 Y12.065000 -G1 X27.643667 Y11.853333 -G1 X28.194000 Y11.853333 -G1 X28.532667 Y12.065000 -G1 X28.744333 Y12.403667 -G1 X28.744333 Y12.954000 -G1 X28.532667 Y13.292667 -G1 X28.194000 Y13.504333 -G1 X27.770667 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:36:12 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode4/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:36:08 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=5.000000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.546667 (start point) -G1 Z#101 -G1 X22.521333 Y13.462000 -G1 X22.267333 Y13.292667 -G1 X2.413000 Y13.292667 -G1 X2.159000 Y13.081000 -G1 X1.947333 Y12.827000 -G1 X1.947333 Y12.530667 -G1 X2.159000 Y12.276667 -G1 X2.413000 Y12.065000 -G1 X22.267333 Y12.065000 -G1 X22.606000 Y11.853333 -G1 X23.156333 Y11.853333 -G1 X23.495000 Y12.065000 -G1 X23.706667 Y12.403667 -G1 X23.706667 Y12.954000 -G1 X23.495000 Y13.292667 -G1 X23.156333 Y13.504333 -G1 X22.733000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_png1/gerber_oneline.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: trunk/tests/orig/golden/hid_png1/gerber_oneline.png =================================================================== --- trunk/tests/orig/golden/hid_png1/gerber_oneline.png (revision 33432) +++ trunk/tests/orig/golden/hid_png1/gerber_oneline.png (nonexistent) Property changes on: trunk/tests/orig/golden/hid_png1/gerber_oneline.png ___________________________________________________________________ Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 18:06:42 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=10.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.546667 (start point) -G1 Z#101 -G1 X27.559000 Y13.462000 -G1 X27.305000 Y13.292667 -G1 X7.450667 Y13.292667 -G1 X7.196667 Y13.081000 -G1 X6.985000 Y12.827000 -G1 X6.985000 Y12.530667 -G1 X7.196667 Y12.276667 -G1 X7.450667 Y12.065000 -G1 X27.305000 Y12.065000 -G1 X27.643667 Y11.853333 -G1 X28.194000 Y11.853333 -G1 X28.532667 Y12.065000 -G1 X28.744333 Y12.403667 -G1 X28.744333 Y12.954000 -G1 X28.532667 Y13.292667 -G1 X28.194000 Y13.504333 -G1 X27.770667 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 18:06:42 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=10.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode5/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 18:06:40 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=10.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.546667 (start point) -G1 Z#101 -G1 X22.521333 Y13.462000 -G1 X22.267333 Y13.292667 -G1 X2.413000 Y13.292667 -G1 X2.159000 Y13.081000 -G1 X1.947333 Y12.827000 -G1 X1.947333 Y12.530667 -G1 X2.159000 Y12.276667 -G1 X2.413000 Y12.065000 -G1 X22.267333 Y12.065000 -G1 X22.606000 Y11.853333 -G1 X23.156333 Y11.853333 -G1 X23.495000 Y12.065000 -G1 X23.706667 Y12.403667 -G1 X23.706667 Y12.954000 -G1 X23.495000 Y13.292667 -G1 X23.156333 Y13.504333 -G1 X22.733000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_png2/myfile.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: trunk/tests/orig/golden/hid_png2/myfile.png =================================================================== --- trunk/tests/orig/golden/hid_png2/myfile.png (revision 33432) +++ trunk/tests/orig/golden/hid_png2/myfile.png (nonexistent) Property changes on: trunk/tests/orig/golden/hid_png2/myfile.png ___________________________________________________________________ Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,43 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:05 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X0.000000 Y25.400000 (start point) -G1 Z#101 -G1 X0.000000 Y0.000000 -G1 X37.295667 Y0.000000 -G1 X38.057667 Y0.635000 -G1 X39.073667 Y1.524000 -G1 X39.962667 Y2.540000 -G1 X40.597667 Y3.302000 -G1 X41.486667 Y4.656667 -G1 X41.952333 Y5.503333 -G1 X42.418000 Y6.477000 -G1 X42.883667 Y7.704667 -G1 X43.264667 Y9.017000 -G1 X43.518667 Y10.329333 -G1 X43.645667 Y11.514667 -G1 X43.645667 Y13.843000 -G1 X43.518667 Y15.028333 -G1 X43.264667 Y16.340667 -G1 X42.883667 Y17.653000 -G1 X42.418000 Y18.880667 -G1 X41.952333 Y19.854333 -G1 X41.486667 Y20.701000 -G1 X40.597667 Y22.055667 -G1 X39.962667 Y22.817667 -G1 X39.073667 Y23.833667 -G1 X38.057667 Y24.722667 -G1 X37.253333 Y25.400000 -G1 X0.000000 Y25.400000 -G0 Z#100 -(polygon end, distance 129.45) -(end, total distance 129.45mm = 5.10in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:45:05 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode6/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,43 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:39:31 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X0.000000 Y25.400000 (start point) -G1 Z#101 -G1 X0.000000 Y0.000000 -G1 X32.258000 Y0.000000 -G1 X33.020000 Y0.635000 -G1 X34.036000 Y1.524000 -G1 X34.925000 Y2.540000 -G1 X35.560000 Y3.302000 -G1 X36.449000 Y4.656667 -G1 X36.914667 Y5.503333 -G1 X37.380333 Y6.477000 -G1 X37.846000 Y7.704667 -G1 X38.227000 Y9.017000 -G1 X38.481000 Y10.329333 -G1 X38.608000 Y11.514667 -G1 X38.608000 Y13.843000 -G1 X38.481000 Y15.028333 -G1 X38.227000 Y16.340667 -G1 X37.846000 Y17.653000 -G1 X37.380333 Y18.880667 -G1 X36.914667 Y19.854333 -G1 X36.449000 Y20.701000 -G1 X35.560000 Y22.055667 -G1 X34.925000 Y22.817667 -G1 X34.036000 Y23.833667 -G1 X33.020000 Y24.722667 -G1 X32.215667 Y25.400000 -G1 X0.000000 Y25.400000 -G0 Z#100 -(polygon end, distance 119.38) -(end, total distance 119.38mm = 4.70in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_png3/gerber_oneline.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: trunk/tests/orig/golden/hid_png3/gerber_oneline.png =================================================================== --- trunk/tests/orig/golden/hid_png3/gerber_oneline.png (revision 33432) +++ trunk/tests/orig/golden/hid_png3/gerber_oneline.png (nonexistent) Property changes on: trunk/tests/orig/golden/hid_png3/gerber_oneline.png ___________________________________________________________________ Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:12 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.546667 (start point) -G1 Z#101 -G1 X27.559000 Y13.462000 -G1 X27.305000 Y13.292667 -G1 X7.450667 Y13.292667 -G1 X7.196667 Y13.081000 -G1 X6.985000 Y12.827000 -G1 X6.985000 Y12.530667 -G1 X7.196667 Y12.276667 -G1 X7.450667 Y12.065000 -G1 X27.305000 Y12.065000 -G1 X27.643667 Y11.853333 -G1 X28.194000 Y11.853333 -G1 X28.532667 Y12.065000 -G1 X28.744333 Y12.403667 -G1 X28.744333 Y12.954000 -G1 X28.532667 Y13.292667 -G1 X28.194000 Y13.504333 -G1 X27.770667 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:45:12 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=70.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode7/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:08 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.546667 (start point) -G1 Z#101 -G1 X22.521333 Y13.462000 -G1 X22.267333 Y13.292667 -G1 X2.413000 Y13.292667 -G1 X2.159000 Y13.081000 -G1 X1.947333 Y12.827000 -G1 X1.947333 Y12.530667 -G1 X2.159000 Y12.276667 -G1 X2.413000 Y12.065000 -G1 X22.267333 Y12.065000 -G1 X22.606000 Y11.853333 -G1 X23.156333 Y11.853333 -G1 X23.495000 Y12.065000 -G1 X23.706667 Y12.403667 -G1 X23.706667 Y12.954000 -G1 X23.495000 Y13.292667 -G1 X23.156333 Y13.504333 -G1 X22.733000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:19 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.546667 (start point) -G1 Z#101 -G1 X27.559000 Y13.462000 -G1 X27.305000 Y13.292667 -G1 X7.450667 Y13.292667 -G1 X7.196667 Y13.081000 -G1 X6.985000 Y12.827000 -G1 X6.985000 Y12.530667 -G1 X7.196667 Y12.276667 -G1 X7.450667 Y12.065000 -G1 X27.305000 Y12.065000 -G1 X27.643667 Y11.853333 -G1 X28.194000 Y11.853333 -G1 X28.532667 Y12.065000 -G1 X28.744333 Y12.403667 -G1 X28.744333 Y12.954000 -G1 X28.532667 Y13.292667 -G1 X28.194000 Y13.504333 -G1 X27.770667 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:45:19 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode8/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:16 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.546667 (start point) -G1 Z#101 -G1 X22.521333 Y13.462000 -G1 X22.267333 Y13.292667 -G1 X2.413000 Y13.292667 -G1 X2.159000 Y13.081000 -G1 X1.947333 Y12.827000 -G1 X1.947333 Y12.530667 -G1 X2.159000 Y12.276667 -G1 X2.413000 Y12.065000 -G1 X22.267333 Y12.065000 -G1 X22.606000 Y11.853333 -G1 X23.156333 Y11.853333 -G1 X23.495000 Y12.065000 -G1 X23.706667 Y12.403667 -G1 X23.706667 Y12.954000 -G1 X23.495000 Y13.292667 -G1 X23.156333 Y13.504333 -G1 X22.733000 Y13.546667 -G0 Z#100 -(polygon end, distance 45.38) -(end, total distance 45.38mm = 1.79in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:25 2010 ) -(600 dpi) -(Unit: inch) -(Board size: 2.00x1.00 inches) -#100=0.002000 (safe Z) -#101=-0.000050 (cutting depth) -(---------------------------------) -G17 G20 G90 G64 P0.003 M3 S3000 M7 F1 -G0 Z#100 -(polygon 1) -G0 X1.093333 Y0.530000 (start point) -G1 Z#101 -G1 X1.083333 Y0.525000 -G1 X1.076667 Y0.520000 -G1 X0.291667 Y0.518333 -G1 X0.280000 Y0.506667 -G1 X0.280000 Y0.491667 -G1 X0.291667 Y0.480000 -G1 X1.076667 Y0.478333 -G1 X1.088333 Y0.470000 -G1 X1.100000 Y0.468333 -G1 X1.113333 Y0.471667 -G1 X1.123333 Y0.480000 -G1 X1.130000 Y0.493333 -G1 X1.130000 Y0.505000 -G1 X1.123333 Y0.518333 -G1 X1.115000 Y0.525000 -G1 X1.103333 Y0.530000 -G1 X1.093333 Y0.530000 -G0 Z#100 -(polygon end, distance 1.77) -(end, total distance 44.84mm = 1.77in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:45:25 2010 ) -(Unit: inch) -(Board size: 2.00x1.00 inches) -#100=0.002000 (safe Z) -#101=-0.002000 (drill depth) -(---------------------------------) -G17 G20 G90 G64 P0.003 M3 S3000 M7 F1 -G81 X1.100000 Y0.500000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode9/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:22 2010 ) -(600 dpi) -(Unit: inch) -(Board size: 2.00x1.00 inches) -#100=0.002000 (safe Z) -#101=-0.000050 (cutting depth) -(---------------------------------) -G17 G20 G90 G64 P0.003 M3 S3000 M7 F1 -G0 Z#100 -(polygon 1) -G0 X0.895000 Y0.530000 (start point) -G1 Z#101 -G1 X0.885000 Y0.525000 -G1 X0.878333 Y0.520000 -G1 X0.093333 Y0.518333 -G1 X0.081667 Y0.506667 -G1 X0.081667 Y0.491667 -G1 X0.093333 Y0.480000 -G1 X0.878333 Y0.478333 -G1 X0.890000 Y0.470000 -G1 X0.901667 Y0.468333 -G1 X0.915000 Y0.471667 -G1 X0.925000 Y0.480000 -G1 X0.931667 Y0.493333 -G1 X0.931667 Y0.505000 -G1 X0.925000 Y0.518333 -G1 X0.916667 Y0.525000 -G1 X0.905000 Y0.530000 -G1 X0.895000 Y0.530000 -G0 Z#100 -(polygon end, distance 1.77) -(end, total distance 44.84mm = 1.77in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_xy1/bom_general.xy =================================================================== --- trunk/tests/orig/golden/hid_xy1/bom_general.xy (revision 33432) +++ trunk/tests/orig/golden/hid_xy1/bom_general.xy (nonexistent) @@ -1,32 +0,0 @@ -# $Id$ -# PcbXY Version 1.0 -# Date: Wed Jun 24 21:42:21 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB X-Y -# RefDes, Description, Value, X, Y, rotation, top/bottom -# X,Y in mils. rotation in degrees. -# -------------------------------------------- -R90_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1700.00,4300.00,90,top -R180_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1300.00,4300.00,180,top -R270_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1000.00,4300.00,270,top -R0_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",600.00,4300.00,0,top -UDIP90_TOP,"Dual in-line package, narrow (300 mil)","DIP8",2650.00,1450.00,180,top -UDIP180_TOP,"Dual in-line package, narrow (300 mil)","DIP8",1950.00,1450.00,270,top -UDIP270_TOP,"Dual in-line package, narrow (300 mil)","DIP8",1250.00,1450.00,0,top -UDIP0_TOP,"Dual in-line package, narrow (300 mil)","DIP8",550.00,1450.00,90,top -USO90_TOP,"Small outline package, narrow (150mil)","SO8",1700.00,3200.00,180,top -USO180_TOP,"Small outline package, narrow (150mil)","SO8",1300.00,3200.00,270,top -USO270_TOP,"Small outline package, narrow (150mil)","SO8",1000.00,3200.00,0,top -USO0_TOP,"Small outline package, narrow (150mil)","SO8",600.00,3200.00,90,top -UDIP270_BOT,"Dual in-line package, narrow (300 mil)","DIP8",2650.00,650.00,270,bottom -UDIP180_BOT,"Dual in-line package, narrow (300 mil)","DIP8",1950.00,650.00,180,bottom -UDIP90_BOT,"Dual in-line package, narrow (300 mil)","DIP8",1250.00,650.00,90,bottom -UDIP0_BOT,"Dual in-line package, narrow (300 mil)","DIP8",550.00,650.00,0,bottom -USO270_BOT,"Small outline package, narrow (150mil)","SO8",1700.00,2600.00,270,bottom -USO180_BOT,"Small outline package, narrow (150mil)","SO8",1300.00,2600.00,180,bottom -USO90_BOT,"Small outline package, narrow (150mil)","SO8",1000.00,2600.00,90,bottom -USO0_BOT,"Small outline package, narrow (150mil)","SO8",600.00,2600.00,0,bottom -R270_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1700.00,3900.00,270,bottom -R180_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1300.00,3900.00,180,bottom -R90_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1000.00,3900.00,90,bottom -R0_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",600.00,3900.00,0,bottom Index: trunk/tests/orig/golden/hid_xy2/bom_general.xy =================================================================== --- trunk/tests/orig/golden/hid_xy2/bom_general.xy (revision 33432) +++ trunk/tests/orig/golden/hid_xy2/bom_general.xy (nonexistent) @@ -1,32 +0,0 @@ -# $Id$ -# PcbXY Version 1.0 -# Date: Wed Jun 24 21:42:22 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB X-Y -# RefDes, Description, Value, X, Y, rotation, top/bottom -# X,Y in mils. rotation in degrees. -# -------------------------------------------- -R90_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1700.00,4300.00,90,top -R180_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1300.00,4300.00,180,top -R270_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1000.00,4300.00,270,top -R0_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",600.00,4300.00,0,top -UDIP90_TOP,"Dual in-line package, narrow (300 mil)","DIP8",2650.00,1450.00,180,top -UDIP180_TOP,"Dual in-line package, narrow (300 mil)","DIP8",1950.00,1450.00,270,top -UDIP270_TOP,"Dual in-line package, narrow (300 mil)","DIP8",1250.00,1450.00,0,top -UDIP0_TOP,"Dual in-line package, narrow (300 mil)","DIP8",550.00,1450.00,90,top -USO90_TOP,"Small outline package, narrow (150mil)","SO8",1700.00,3200.00,180,top -USO180_TOP,"Small outline package, narrow (150mil)","SO8",1300.00,3200.00,270,top -USO270_TOP,"Small outline package, narrow (150mil)","SO8",1000.00,3200.00,0,top -USO0_TOP,"Small outline package, narrow (150mil)","SO8",600.00,3200.00,90,top -UDIP270_BOT,"Dual in-line package, narrow (300 mil)","DIP8",2650.00,650.00,270,bottom -UDIP180_BOT,"Dual in-line package, narrow (300 mil)","DIP8",1950.00,650.00,180,bottom -UDIP90_BOT,"Dual in-line package, narrow (300 mil)","DIP8",1250.00,650.00,90,bottom -UDIP0_BOT,"Dual in-line package, narrow (300 mil)","DIP8",550.00,650.00,0,bottom -USO270_BOT,"Small outline package, narrow (150mil)","SO8",1700.00,2600.00,270,bottom -USO180_BOT,"Small outline package, narrow (150mil)","SO8",1300.00,2600.00,180,bottom -USO90_BOT,"Small outline package, narrow (150mil)","SO8",1000.00,2600.00,90,bottom -USO0_BOT,"Small outline package, narrow (150mil)","SO8",600.00,2600.00,0,bottom -R270_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1700.00,3900.00,270,bottom -R180_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1300.00,3900.00,180,bottom -R90_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1000.00,3900.00,90,bottom -R0_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",600.00,3900.00,0,bottom Index: trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:32 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=0.002000 (safe Z) -#101=-0.000050 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X27.770667 Y13.462000 (start point) -G1 Z#101 -G1 X27.516667 Y13.335000 -G1 X27.347333 Y13.208000 -G1 X7.408333 Y13.165667 -G1 X7.112000 Y12.869333 -G1 X7.112000 Y12.488333 -G1 X7.408333 Y12.192000 -G1 X27.347333 Y12.149667 -G1 X27.643667 Y11.938000 -G1 X27.940000 Y11.895667 -G1 X28.278667 Y11.980333 -G1 X28.532667 Y12.192000 -G1 X28.702000 Y12.530667 -G1 X28.702000 Y12.827000 -G1 X28.532667 Y13.165667 -G1 X28.321000 Y13.335000 -G1 X28.024667 Y13.462000 -G1 X27.770667 Y13.462000 -G0 Z#100 -(polygon end, distance 44.84) -(end, total distance 44.84mm = 1.77in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:45:32 2010 ) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=0.002000 (safe Z) -#101=-0.002000 (drill depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G81 X27.940000 Y12.700000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode10/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,34 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:28 2010 ) -(600 dpi) -(Unit: mm) -(Board size: 50.80x25.40 mm) -#100=0.002000 (safe Z) -#101=-0.000050 (cutting depth) -(---------------------------------) -G17 G21 G90 G64 P0.003 M3 S3000 M7 F25 -G0 Z#100 -(polygon 1) -G0 X22.733000 Y13.462000 (start point) -G1 Z#101 -G1 X22.479000 Y13.335000 -G1 X22.309667 Y13.208000 -G1 X2.370667 Y13.165667 -G1 X2.074333 Y12.869333 -G1 X2.074333 Y12.488333 -G1 X2.370667 Y12.192000 -G1 X22.309667 Y12.149667 -G1 X22.606000 Y11.938000 -G1 X22.902333 Y11.895667 -G1 X23.241000 Y11.980333 -G1 X23.495000 Y12.192000 -G1 X23.664333 Y12.530667 -G1 X23.664333 Y12.827000 -G1 X23.495000 Y13.165667 -G1 X23.283333 Y13.335000 -G1 X22.987000 Y13.462000 -G1 X22.733000 Y13.462000 -G0 Z#100 -(polygon end, distance 44.84) -(end, total distance 44.84mm = 1.77in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_xy3/test.xy =================================================================== --- trunk/tests/orig/golden/hid_xy3/test.xy (revision 33432) +++ trunk/tests/orig/golden/hid_xy3/test.xy (nonexistent) @@ -1,32 +0,0 @@ -# $Id$ -# PcbXY Version 1.0 -# Date: Wed Jun 24 21:42:22 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB X-Y -# RefDes, Description, Value, X, Y, rotation, top/bottom -# X,Y in mils. rotation in degrees. -# -------------------------------------------- -R90_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1700.00,4300.00,90,top -R180_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1300.00,4300.00,180,top -R270_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",1000.00,4300.00,270,top -R0_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",600.00,4300.00,0,top -UDIP90_TOP,"Dual in-line package, narrow (300 mil)","DIP8",2650.00,1450.00,180,top -UDIP180_TOP,"Dual in-line package, narrow (300 mil)","DIP8",1950.00,1450.00,270,top -UDIP270_TOP,"Dual in-line package, narrow (300 mil)","DIP8",1250.00,1450.00,0,top -UDIP0_TOP,"Dual in-line package, narrow (300 mil)","DIP8",550.00,1450.00,90,top -USO90_TOP,"Small outline package, narrow (150mil)","SO8",1700.00,3200.00,180,top -USO180_TOP,"Small outline package, narrow (150mil)","SO8",1300.00,3200.00,270,top -USO270_TOP,"Small outline package, narrow (150mil)","SO8",1000.00,3200.00,0,top -USO0_TOP,"Small outline package, narrow (150mil)","SO8",600.00,3200.00,90,top -UDIP270_BOT,"Dual in-line package, narrow (300 mil)","DIP8",2650.00,650.00,270,bottom -UDIP180_BOT,"Dual in-line package, narrow (300 mil)","DIP8",1950.00,650.00,180,bottom -UDIP90_BOT,"Dual in-line package, narrow (300 mil)","DIP8",1250.00,650.00,90,bottom -UDIP0_BOT,"Dual in-line package, narrow (300 mil)","DIP8",550.00,650.00,0,bottom -USO270_BOT,"Small outline package, narrow (150mil)","SO8",1700.00,2600.00,270,bottom -USO180_BOT,"Small outline package, narrow (150mil)","SO8",1300.00,2600.00,180,bottom -USO90_BOT,"Small outline package, narrow (150mil)","SO8",1000.00,2600.00,90,bottom -USO0_BOT,"Small outline package, narrow (150mil)","SO8",600.00,2600.00,0,bottom -R270_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1700.00,3900.00,270,bottom -R180_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1300.00,3900.00,180,bottom -R90_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",1000.00,3900.00,90,bottom -R0_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",600.00,3900.00,0,bottom Index: trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.bottom.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.bottom.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.bottom.cnc (nonexistent) @@ -1,49 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:55 2010 ) -(600 dpi) -(Unit: inch) -(Board size: 2.00x1.00 inches) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G20 G90 G64 P0.003 M3 S3000 M7 F1 -G0 Z#100 -(polygon 1) -G0 X1.085000 Y0.630000 (start point) -G1 Z#101 -G1 X1.063333 Y0.625000 -G1 X1.055000 Y0.621667 -G1 X0.276667 Y0.618333 -G1 X0.251667 Y0.610000 -G1 X0.230000 Y0.598333 -G1 X0.200000 Y0.568333 -G1 X0.188333 Y0.546667 -G1 X0.180000 Y0.521667 -G1 X0.180000 Y0.476667 -G1 X0.188333 Y0.451667 -G1 X0.200000 Y0.430000 -G1 X0.230000 Y0.400000 -G1 X0.251667 Y0.388333 -G1 X0.276667 Y0.380000 -G1 X1.055000 Y0.376667 -G1 X1.068333 Y0.371667 -G1 X1.093333 Y0.368333 -G1 X1.121667 Y0.370000 -G1 X1.140000 Y0.375000 -G1 X1.171667 Y0.390000 -G1 X1.191667 Y0.406667 -G1 X1.208333 Y0.426667 -G1 X1.223333 Y0.458333 -G1 X1.228333 Y0.478333 -G1 X1.228333 Y0.520000 -G1 X1.223333 Y0.540000 -G1 X1.208333 Y0.571667 -G1 X1.191667 Y0.591667 -G1 X1.171667 Y0.608333 -G1 X1.140000 Y0.623333 -G1 X1.121667 Y0.628333 -G1 X1.085000 Y0.630000 -G0 Z#100 -(polygon end, distance 2.39) -(end, total distance 60.74mm = 2.39in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.drill.cnc (nonexistent) @@ -1,12 +0,0 @@ -(Created by G-code exporter) -(drill file: 1 drills) -( Tue Mar 9 17:45:55 2010 ) -(Unit: inch) -(Board size: 2.00x1.00 inches) -#100=2.000000 (safe Z) -#101=-2.000000 (drill depth) -(---------------------------------) -G17 G20 G90 G64 P0.003 M3 S3000 M7 F1 -G81 X1.100000 Y0.500000 Z#101 R#100 -M5 M9 M2 -(end, total distance 0.00mm = 0.00in) Index: trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.top.cnc =================================================================== --- trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.top.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gcode11/gcode_oneline.gcode.top.cnc (nonexistent) @@ -1,45 +0,0 @@ -(Created by G-code exporter) -( Tue Mar 9 17:45:43 2010 ) -(600 dpi) -(Unit: inch) -(Board size: 2.00x1.00 inches) -#100=2.000000 (safe Z) -#101=-0.050000 (cutting depth) -(---------------------------------) -G17 G20 G90 G64 P0.003 M3 S3000 M7 F1 -G0 Z#100 -(polygon 1) -G0 X0.886667 Y0.630000 (start point) -G1 Z#101 -G1 X0.865000 Y0.625000 -G1 X0.856667 Y0.621667 -G1 X0.078333 Y0.618333 -G1 X0.053333 Y0.610000 -G1 X0.031667 Y0.598333 -G1 X0.000000 Y0.566667 -G1 X0.000000 Y0.431667 -G1 X0.031667 Y0.400000 -G1 X0.053333 Y0.388333 -G1 X0.078333 Y0.380000 -G1 X0.856667 Y0.376667 -G1 X0.870000 Y0.371667 -G1 X0.895000 Y0.368333 -G1 X0.923333 Y0.370000 -G1 X0.941667 Y0.375000 -G1 X0.973333 Y0.390000 -G1 X0.993333 Y0.406667 -G1 X1.010000 Y0.426667 -G1 X1.025000 Y0.458333 -G1 X1.030000 Y0.478333 -G1 X1.030000 Y0.520000 -G1 X1.025000 Y0.540000 -G1 X1.010000 Y0.571667 -G1 X0.993333 Y0.591667 -G1 X0.973333 Y0.608333 -G1 X0.941667 Y0.623333 -G1 X0.923333 Y0.628333 -G1 X0.886667 Y0.630000 -G0 Z#100 -(polygon end, distance 2.38) -(end, total distance 60.56mm = 2.38in) -M5 M9 M2 Index: trunk/tests/orig/golden/hid_xy4/bom_general.xy =================================================================== --- trunk/tests/orig/golden/hid_xy4/bom_general.xy (revision 33432) +++ trunk/tests/orig/golden/hid_xy4/bom_general.xy (nonexistent) @@ -1,32 +0,0 @@ -# $Id$ -# PcbXY Version 1.0 -# Date: Wed Jun 24 21:42:23 2009 UTC -# Author: Dan McMahill -# Title: Basic BOM/XY Test - PCB X-Y -# RefDes, Description, Value, X, Y, rotation, top/bottom -# X,Y in mm. rotation in degrees. -# -------------------------------------------- -R90_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",43.18,109.22,90,top -R180_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",33.02,109.22,180,top -R270_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",25.40,109.22,270,top -R0_TOP,"Standard SMT resistor, capacitor etc","RESC3216N",15.24,109.22,0,top -UDIP90_TOP,"Dual in-line package, narrow (300 mil)","DIP8",67.31,36.83,180,top -UDIP180_TOP,"Dual in-line package, narrow (300 mil)","DIP8",49.53,36.83,270,top -UDIP270_TOP,"Dual in-line package, narrow (300 mil)","DIP8",31.75,36.83,0,top -UDIP0_TOP,"Dual in-line package, narrow (300 mil)","DIP8",13.97,36.83,90,top -USO90_TOP,"Small outline package, narrow (150mil)","SO8",43.18,81.28,180,top -USO180_TOP,"Small outline package, narrow (150mil)","SO8",33.02,81.28,270,top -USO270_TOP,"Small outline package, narrow (150mil)","SO8",25.40,81.28,0,top -USO0_TOP,"Small outline package, narrow (150mil)","SO8",15.24,81.28,90,top -UDIP270_BOT,"Dual in-line package, narrow (300 mil)","DIP8",67.31,16.51,270,bottom -UDIP180_BOT,"Dual in-line package, narrow (300 mil)","DIP8",49.53,16.51,180,bottom -UDIP90_BOT,"Dual in-line package, narrow (300 mil)","DIP8",31.75,16.51,90,bottom -UDIP0_BOT,"Dual in-line package, narrow (300 mil)","DIP8",13.97,16.51,0,bottom -USO270_BOT,"Small outline package, narrow (150mil)","SO8",43.18,66.04,270,bottom -USO180_BOT,"Small outline package, narrow (150mil)","SO8",33.02,66.04,180,bottom -USO90_BOT,"Small outline package, narrow (150mil)","SO8",25.40,66.04,90,bottom -USO0_BOT,"Small outline package, narrow (150mil)","SO8",15.24,66.04,0,bottom -R270_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",43.18,99.06,270,bottom -R180_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",33.02,99.06,180,bottom -R90_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",25.40,99.06,90,bottom -R0_BOT,"Standard SMT resistor, capacitor etc","RESC3216N",15.24,99.06,0,bottom Index: trunk/tests/orig/golden/hid_gerber1/gerber_oneline.fab.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber1/gerber_oneline.fab.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber1/gerber_oneline.fab.gbr (nonexistent) @@ -1,1734 +0,0 @@ -G04 start of page 5 for group -3984 idx -3984 * -G04 Title: Basic Single Trace RS274-X Test, fab * -G04 Creator: pcb 1.99y * -G04 CreationDate: Wed Jun 24 21:42:24 2009 UTC * -G04 For: dan * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 200000 100000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNFAB*% -%ADD14C,0.0080*% -%ADD15C,0.0060*% -%ADD16C,0.0100*% -G54D14*X90000Y50000D02*Y48400D01* -Y50000D02*X91386Y50800D01* -X90000Y50000D02*X88614Y50800D01* -X15000Y156250D02*Y154650D01* -Y156250D02*X16386Y157050D01* -X15000Y156250D02*X13614Y157050D01* -G54D15*X135000Y158500D02*Y157750D01* -X136500Y156250D01* -X138000Y157750D01* -Y158500D02*Y157750D01* -X136500Y156250D02*Y152500D01* -X139801Y155500D02*X142051D01* -X139801Y152500D02*X142801D01* -X139801Y158500D02*Y152500D01* -Y158500D02*X142801D01* -X147603D02*X148353Y157750D01* -X145353Y158500D02*X147603D01* -X144603Y157750D02*X145353Y158500D01* -X144603Y157750D02*Y156250D01* -X145353Y155500D01* -X147603D01* -X148353Y154750D01* -Y153250D01* -X147603Y152500D02*X148353Y153250D01* -X145353Y152500D02*X147603D01* -X144603Y153250D02*X145353Y152500D01* -X135000Y149249D02*X150154D01* -X98750Y152500D02*X100250D01* -X99500Y158500D02*Y152500D01* -X98000Y157000D02*X99500Y158500D01* -X98000Y149249D02*X102051D01* -X45000Y153250D02*X45750Y152500D01* -X45000Y157750D02*Y153250D01* -Y157750D02*X45750Y158500D01* -X47250D01* -X48000Y157750D01* -Y153250D01* -X47250Y152500D02*X48000Y153250D01* -X45750Y152500D02*X47250D01* -X45000Y154000D02*X48000Y157000D01* -X49801Y152500D02*X50551D01* -X52353Y153250D02*X53103Y152500D01* -X52353Y157750D02*Y153250D01* -Y157750D02*X53103Y158500D01* -X54603D01* -X55353Y157750D01* -Y153250D01* -X54603Y152500D02*X55353Y153250D01* -X53103Y152500D02*X54603D01* -X52353Y154000D02*X55353Y157000D01* -X57154Y157750D02*X57904Y158500D01* -X59404D01* -X60154Y157750D01* -Y153250D01* -X59404Y152500D02*X60154Y153250D01* -X57904Y152500D02*X59404D01* -X57154Y153250D02*X57904Y152500D01* -Y155500D02*X60154D01* -X61956Y158500D02*X64956D01* -X61956D02*Y155500D01* -X62706Y156250D01* -X64206D01* -X64956Y155500D01* -Y153250D01* -X64206Y152500D02*X64956Y153250D01* -X62706Y152500D02*X64206D01* -X61956Y153250D02*X62706Y152500D01* -X45000Y149249D02*X66757D01* -X3000Y173500D02*X3750Y172750D01* -X750Y173500D02*X3000D01* -X0Y172750D02*X750Y173500D01* -X0Y172750D02*Y171250D01* -X750Y170500D01* -X3000D01* -X3750Y169750D01* -Y168250D01* -X3000Y167500D02*X3750Y168250D01* -X750Y167500D02*X3000D01* -X0Y168250D02*X750Y167500D01* -X5551Y170500D02*Y168250D01* -X6301Y167500D01* -X8551Y170500D02*Y166000D01* -X7801Y165250D02*X8551Y166000D01* -X6301Y165250D02*X7801D01* -X5551Y166000D02*X6301Y165250D01* -Y167500D02*X7801D01* -X8551Y168250D01* -X11103Y169750D02*Y167500D01* -Y169750D02*X11853Y170500D01* -X12603D01* -X13353Y169750D01* -Y167500D01* -Y169750D02*X14103Y170500D01* -X14853D01* -X15603Y169750D01* -Y167500D01* -X10353Y170500D02*X11103Y169750D01* -X17404Y173500D02*Y167500D01* -Y168250D02*X18154Y167500D01* -X19654D01* -X20404Y168250D01* -Y169750D02*Y168250D01* -X19654Y170500D02*X20404Y169750D01* -X18154Y170500D02*X19654D01* -X17404Y169750D02*X18154Y170500D01* -X22206Y169750D02*Y168250D01* -Y169750D02*X22956Y170500D01* -X24456D01* -X25206Y169750D01* -Y168250D01* -X24456Y167500D02*X25206Y168250D01* -X22956Y167500D02*X24456D01* -X22206Y168250D02*X22956Y167500D01* -X27007Y173500D02*Y168250D01* -X27757Y167500D01* -X41750Y173500D02*Y167500D01* -X44000Y173500D02*X44750Y172750D01* -Y168250D01* -X44000Y167500D02*X44750Y168250D01* -X41000Y167500D02*X44000D01* -X41000Y173500D02*X44000D01* -X46551Y172000D02*Y171250D01* -Y169750D02*Y167500D01* -X50303Y170500D02*X51053Y169750D01* -X48803Y170500D02*X50303D01* -X48053Y169750D02*X48803Y170500D01* -X48053Y169750D02*Y168250D01* -X48803Y167500D01* -X51053Y170500D02*Y168250D01* -X51803Y167500D01* -X48803D02*X50303D01* -X51053Y168250D01* -X54354Y169750D02*Y167500D01* -Y169750D02*X55104Y170500D01* -X55854D01* -X56604Y169750D01* -Y167500D01* -Y169750D02*X57354Y170500D01* -X58104D01* -X58854Y169750D01* -Y167500D01* -X53604Y170500D02*X54354Y169750D01* -X60656Y167500D02*X61406D01* -X65907Y168250D02*X66657Y167500D01* -X65907Y172750D02*X66657Y173500D01* -X65907Y172750D02*Y168250D01* -X68459Y173500D02*X69959D01* -X69209D02*Y167500D01* -X68459D02*X69959D01* -X72510Y169750D02*Y167500D01* -Y169750D02*X73260Y170500D01* -X74010D01* -X74760Y169750D01* -Y167500D01* -X71760Y170500D02*X72510Y169750D01* -X77312Y170500D02*X79562D01* -X76562Y169750D02*X77312Y170500D01* -X76562Y169750D02*Y168250D01* -X77312Y167500D01* -X79562D01* -X81363Y173500D02*Y167500D01* -Y169750D02*X82113Y170500D01* -X83613D01* -X84363Y169750D01* -Y167500D01* -X86165Y173500D02*X86915Y172750D01* -Y168250D01* -X86165Y167500D02*X86915Y168250D01* -X95750Y167500D02*X98000D01* -X95000Y168250D02*X95750Y167500D01* -X95000Y172750D02*Y168250D01* -Y172750D02*X95750Y173500D01* -X98000D01* -X99801Y169750D02*Y168250D01* -Y169750D02*X100551Y170500D01* -X102051D01* -X102801Y169750D01* -Y168250D01* -X102051Y167500D02*X102801Y168250D01* -X100551Y167500D02*X102051D01* -X99801Y168250D02*X100551Y167500D01* -X104603Y170500D02*Y168250D01* -X105353Y167500D01* -X106853D01* -X107603Y168250D01* -Y170500D02*Y168250D01* -X110154Y169750D02*Y167500D01* -Y169750D02*X110904Y170500D01* -X111654D01* -X112404Y169750D01* -Y167500D01* -X109404Y170500D02*X110154Y169750D01* -X114956Y173500D02*Y168250D01* -X115706Y167500D01* -X114206Y171250D02*X115706D01* -X130750Y173500D02*Y167500D01* -X130000Y173500D02*X133000D01* -X133750Y172750D01* -Y171250D01* -X133000Y170500D02*X133750Y171250D01* -X130750Y170500D02*X133000D01* -X135551Y173500D02*Y168250D01* -X136301Y167500D01* -X140053Y170500D02*X140803Y169750D01* -X138553Y170500D02*X140053D01* -X137803Y169750D02*X138553Y170500D01* -X137803Y169750D02*Y168250D01* -X138553Y167500D01* -X140803Y170500D02*Y168250D01* -X141553Y167500D01* -X138553D02*X140053D01* -X140803Y168250D01* -X144104Y173500D02*Y168250D01* -X144854Y167500D01* -X143354Y171250D02*X144854D01* -X147106Y167500D02*X149356D01* -X146356Y168250D02*X147106Y167500D01* -X146356Y169750D02*Y168250D01* -Y169750D02*X147106Y170500D01* -X148606D01* -X149356Y169750D01* -X146356Y169000D02*X149356D01* -Y169750D02*Y169000D01* -X154157Y173500D02*Y167500D01* -X153407D02*X154157Y168250D01* -X151907Y167500D02*X153407D01* -X151157Y168250D02*X151907Y167500D01* -X151157Y169750D02*Y168250D01* -Y169750D02*X151907Y170500D01* -X153407D01* -X154157Y169750D01* -X157459Y170500D02*Y169750D01* -Y168250D02*Y167500D01* -X155959Y172750D02*Y172000D01* -Y172750D02*X156709Y173500D01* -X158209D01* -X158959Y172750D01* -Y172000D01* -X157459Y170500D02*X158959Y172000D01* -X0Y188500D02*X3000D01* -X1500D02*Y182500D01* -X4801Y188500D02*Y182500D01* -Y184750D02*X5551Y185500D01* -X7051D01* -X7801Y184750D01* -Y182500D01* -X10353D02*X12603D01* -X9603Y183250D02*X10353Y182500D01* -X9603Y184750D02*Y183250D01* -Y184750D02*X10353Y185500D01* -X11853D01* -X12603Y184750D01* -X9603Y184000D02*X12603D01* -Y184750D02*Y184000D01* -X15154Y184750D02*Y182500D01* -Y184750D02*X15904Y185500D01* -X17404D01* -X14404D02*X15154Y184750D01* -X19956Y182500D02*X22206D01* -X19206Y183250D02*X19956Y182500D01* -X19206Y184750D02*Y183250D01* -Y184750D02*X19956Y185500D01* -X21456D01* -X22206Y184750D01* -X19206Y184000D02*X22206D01* -Y184750D02*Y184000D01* -X28957Y185500D02*X29707Y184750D01* -X27457Y185500D02*X28957D01* -X26707Y184750D02*X27457Y185500D01* -X26707Y184750D02*Y183250D01* -X27457Y182500D01* -X29707Y185500D02*Y183250D01* -X30457Y182500D01* -X27457D02*X28957D01* -X29707Y183250D01* -X33009Y184750D02*Y182500D01* -Y184750D02*X33759Y185500D01* -X35259D01* -X32259D02*X33009Y184750D01* -X37810Y182500D02*X40060D01* -X37060Y183250D02*X37810Y182500D01* -X37060Y184750D02*Y183250D01* -Y184750D02*X37810Y185500D01* -X39310D01* -X40060Y184750D01* -X37060Y184000D02*X40060D01* -Y184750D02*Y184000D01* -X45312Y182500D02*X46812D01* -X46062Y188500D02*Y182500D01* -X44562Y187000D02*X46062Y188500D01* -X54313D02*Y182500D01* -X53563D02*X54313Y183250D01* -X52063Y182500D02*X53563D01* -X51313Y183250D02*X52063Y182500D01* -X51313Y184750D02*Y183250D01* -Y184750D02*X52063Y185500D01* -X53563D01* -X54313Y184750D01* -X56115Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X58366Y187750D02*Y182500D01* -Y187750D02*X59116Y188500D01* -X59866D01* -X57616Y185500D02*X59116D01* -X62118Y187750D02*Y182500D01* -Y187750D02*X62868Y188500D01* -X63618D01* -X61368Y185500D02*X62868D01* -X65869Y182500D02*X68119D01* -X65119Y183250D02*X65869Y182500D01* -X65119Y184750D02*Y183250D01* -Y184750D02*X65869Y185500D01* -X67369D01* -X68119Y184750D01* -X65119Y184000D02*X68119D01* -Y184750D02*Y184000D01* -X70671Y184750D02*Y182500D01* -Y184750D02*X71421Y185500D01* -X72921D01* -X69921D02*X70671Y184750D01* -X75472Y182500D02*X77722D01* -X74722Y183250D02*X75472Y182500D01* -X74722Y184750D02*Y183250D01* -Y184750D02*X75472Y185500D01* -X76972D01* -X77722Y184750D01* -X74722Y184000D02*X77722D01* -Y184750D02*Y184000D01* -X80274Y184750D02*Y182500D01* -Y184750D02*X81024Y185500D01* -X81774D01* -X82524Y184750D01* -Y182500D01* -X79524Y185500D02*X80274Y184750D01* -X85075Y188500D02*Y183250D01* -X85825Y182500D01* -X84325Y186250D02*X85825D01* -X93027Y188500D02*Y182500D01* -X92277D02*X93027Y183250D01* -X90777Y182500D02*X92277D01* -X90027Y183250D02*X90777Y182500D01* -X90027Y184750D02*Y183250D01* -Y184750D02*X90777Y185500D01* -X92277D01* -X93027Y184750D01* -X95578D02*Y182500D01* -Y184750D02*X96328Y185500D01* -X97828D01* -X94828D02*X95578Y184750D01* -X99630Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X101131Y188500D02*Y183250D01* -X101881Y182500D01* -X103383Y188500D02*Y183250D01* -X104133Y182500D01* -X109084D02*X111334D01* -X112084Y183250D01* -X111334Y184000D02*X112084Y183250D01* -X109084Y184000D02*X111334D01* -X108334Y184750D02*X109084Y184000D01* -X108334Y184750D02*X109084Y185500D01* -X111334D01* -X112084Y184750D01* -X108334Y183250D02*X109084Y182500D01* -X113886Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X115387Y185500D02*X118387D01* -X115387Y182500D02*X118387Y185500D01* -X115387Y182500D02*X118387D01* -X120939D02*X123189D01* -X120189Y183250D02*X120939Y182500D01* -X120189Y184750D02*Y183250D01* -Y184750D02*X120939Y185500D01* -X122439D01* -X123189Y184750D01* -X120189Y184000D02*X123189D01* -Y184750D02*Y184000D01* -X125740Y182500D02*X127990D01* -X128740Y183250D01* -X127990Y184000D02*X128740Y183250D01* -X125740Y184000D02*X127990D01* -X124990Y184750D02*X125740Y184000D01* -X124990Y184750D02*X125740Y185500D01* -X127990D01* -X128740Y184750D01* -X124990Y183250D02*X125740Y182500D01* -X133242Y185500D02*Y183250D01* -X133992Y182500D01* -X135492D01* -X136242Y183250D01* -Y185500D02*Y183250D01* -X138793Y182500D02*X141043D01* -X141793Y183250D01* -X141043Y184000D02*X141793Y183250D01* -X138793Y184000D02*X141043D01* -X138043Y184750D02*X138793Y184000D01* -X138043Y184750D02*X138793Y185500D01* -X141043D01* -X141793Y184750D01* -X138043Y183250D02*X138793Y182500D01* -X144345D02*X146595D01* -X143595Y183250D02*X144345Y182500D01* -X143595Y184750D02*Y183250D01* -Y184750D02*X144345Y185500D01* -X145845D01* -X146595Y184750D01* -X143595Y184000D02*X146595D01* -Y184750D02*Y184000D01* -X151396Y188500D02*Y182500D01* -X150646D02*X151396Y183250D01* -X149146Y182500D02*X150646D01* -X148396Y183250D02*X149146Y182500D01* -X148396Y184750D02*Y183250D01* -Y184750D02*X149146Y185500D01* -X150646D01* -X151396Y184750D01* -X155898Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X158149Y184750D02*Y182500D01* -Y184750D02*X158899Y185500D01* -X159649D01* -X160399Y184750D01* -Y182500D01* -X157399Y185500D02*X158149Y184750D01* -X165651Y188500D02*Y183250D01* -X166401Y182500D01* -X164901Y186250D02*X166401D01* -X167902Y188500D02*Y182500D01* -Y184750D02*X168652Y185500D01* -X170152D01* -X170902Y184750D01* -Y182500D01* -X172704Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X174955D02*X177205D01* -X177955Y183250D01* -X177205Y184000D02*X177955Y183250D01* -X174955Y184000D02*X177205D01* -X174205Y184750D02*X174955Y184000D01* -X174205Y184750D02*X174955Y185500D01* -X177205D01* -X177955Y184750D01* -X174205Y183250D02*X174955Y182500D01* -X182457Y188500D02*Y183250D01* -X183207Y182500D01* -X186958Y185500D02*X187708Y184750D01* -X185458Y185500D02*X186958D01* -X184708Y184750D02*X185458Y185500D01* -X184708Y184750D02*Y183250D01* -X185458Y182500D01* -X187708Y185500D02*Y183250D01* -X188458Y182500D01* -X185458D02*X186958D01* -X187708Y183250D01* -X190260Y185500D02*Y183250D01* -X191010Y182500D01* -X193260Y185500D02*Y181000D01* -X192510Y180250D02*X193260Y181000D01* -X191010Y180250D02*X192510D01* -X190260Y181000D02*X191010Y180250D01* -Y182500D02*X192510D01* -X193260Y183250D01* -X195061Y184750D02*Y183250D01* -Y184750D02*X195811Y185500D01* -X197311D01* -X198061Y184750D01* -Y183250D01* -X197311Y182500D02*X198061Y183250D01* -X195811Y182500D02*X197311D01* -X195061Y183250D02*X195811Y182500D01* -X199863Y185500D02*Y183250D01* -X200613Y182500D01* -X202113D01* -X202863Y183250D01* -Y185500D02*Y183250D01* -X205414Y188500D02*Y183250D01* -X206164Y182500D01* -X204664Y186250D02*X206164D01* -X207666Y181000D02*X209166Y182500D01* -X214417D02*X215917D01* -X215167Y188500D02*Y182500D01* -X213667Y187000D02*X215167Y188500D01* -X220419D02*Y182500D01* -Y184750D02*X221169Y185500D01* -X222669D01* -X223419Y184750D01* -Y182500D01* -X225220Y184750D02*Y183250D01* -Y184750D02*X225970Y185500D01* -X227470D01* -X228220Y184750D01* -Y183250D01* -X227470Y182500D02*X228220Y183250D01* -X225970Y182500D02*X227470D01* -X225220Y183250D02*X225970Y182500D01* -X230022Y188500D02*Y183250D01* -X230772Y182500D01* -X233023D02*X235273D01* -X232273Y183250D02*X233023Y182500D01* -X232273Y184750D02*Y183250D01* -Y184750D02*X233023Y185500D01* -X234523D01* -X235273Y184750D01* -X232273Y184000D02*X235273D01* -Y184750D02*Y184000D01* -X237825Y182500D02*X240075D01* -X240825Y183250D01* -X240075Y184000D02*X240825Y183250D01* -X237825Y184000D02*X240075D01* -X237075Y184750D02*X237825Y184000D01* -X237075Y184750D02*X237825Y185500D01* -X240075D01* -X240825Y184750D01* -X237075Y183250D02*X237825Y182500D01* -X246076Y188500D02*Y183250D01* -X246826Y182500D01* -X245326Y186250D02*X246826D01* -X248328Y184750D02*Y183250D01* -Y184750D02*X249078Y185500D01* -X250578D01* -X251328Y184750D01* -Y183250D01* -X250578Y182500D02*X251328Y183250D01* -X249078Y182500D02*X250578D01* -X248328Y183250D02*X249078Y182500D01* -X253879Y188500D02*Y183250D01* -X254629Y182500D01* -X253129Y186250D02*X254629D01* -X258381Y185500D02*X259131Y184750D01* -X256881Y185500D02*X258381D01* -X256131Y184750D02*X256881Y185500D01* -X256131Y184750D02*Y183250D01* -X256881Y182500D01* -X259131Y185500D02*Y183250D01* -X259881Y182500D01* -X256881D02*X258381D01* -X259131Y183250D01* -X261682Y188500D02*Y183250D01* -X262432Y182500D01* -G54D16*X0Y100000D02*X200000D01* -X0D02*Y0D01* -X200000Y100000D02*Y0D01* -X0D02*X200000D01* -G54D15*Y113500D02*Y107500D01* -Y113500D02*X202250Y111250D01* -X204500Y113500D01* -Y107500D01* -X208551Y110500D02*X209301Y109750D01* -X207051Y110500D02*X208551D01* -X206301Y109750D02*X207051Y110500D01* -X206301Y109750D02*Y108250D01* -X207051Y107500D01* -X209301Y110500D02*Y108250D01* -X210051Y107500D01* -X207051D02*X208551D01* -X209301Y108250D01* -X211853Y110500D02*X214853Y107500D01* -X211853D02*X214853Y110500D01* -X216654Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X218906Y109750D02*Y107500D01* -Y109750D02*X219656Y110500D01* -X220406D01* -X221156Y109750D01* -Y107500D01* -Y109750D02*X221906Y110500D01* -X222656D01* -X223406Y109750D01* -Y107500D01* -X218156Y110500D02*X218906Y109750D01* -X225207Y110500D02*Y108250D01* -X225957Y107500D01* -X227457D01* -X228207Y108250D01* -Y110500D02*Y108250D01* -X230759Y109750D02*Y107500D01* -Y109750D02*X231509Y110500D01* -X232259D01* -X233009Y109750D01* -Y107500D01* -Y109750D02*X233759Y110500D01* -X234509D01* -X235259Y109750D01* -Y107500D01* -X230009Y110500D02*X230759Y109750D01* -X240510Y113500D02*Y107500D01* -X242760Y113500D02*X243510Y112750D01* -Y108250D01* -X242760Y107500D02*X243510Y108250D01* -X239760Y107500D02*X242760D01* -X239760Y113500D02*X242760D01* -X245312Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X247563Y109750D02*Y107500D01* -Y109750D02*X248313Y110500D01* -X249063D01* -X249813Y109750D01* -Y107500D01* -Y109750D02*X250563Y110500D01* -X251313D01* -X252063Y109750D01* -Y107500D01* -X246813Y110500D02*X247563Y109750D01* -X254615Y107500D02*X256865D01* -X253865Y108250D02*X254615Y107500D01* -X253865Y109750D02*Y108250D01* -Y109750D02*X254615Y110500D01* -X256115D01* -X256865Y109750D01* -X253865Y109000D02*X256865D01* -Y109750D02*Y109000D01* -X259416Y109750D02*Y107500D01* -Y109750D02*X260166Y110500D01* -X260916D01* -X261666Y109750D01* -Y107500D01* -X258666Y110500D02*X259416Y109750D01* -X264218Y107500D02*X266468D01* -X267218Y108250D01* -X266468Y109000D02*X267218Y108250D01* -X264218Y109000D02*X266468D01* -X263468Y109750D02*X264218Y109000D01* -X263468Y109750D02*X264218Y110500D01* -X266468D01* -X267218Y109750D01* -X263468Y108250D02*X264218Y107500D01* -X269019Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X270521Y109750D02*Y108250D01* -Y109750D02*X271271Y110500D01* -X272771D01* -X273521Y109750D01* -Y108250D01* -X272771Y107500D02*X273521Y108250D01* -X271271Y107500D02*X272771D01* -X270521Y108250D02*X271271Y107500D01* -X276072Y109750D02*Y107500D01* -Y109750D02*X276822Y110500D01* -X277572D01* -X278322Y109750D01* -Y107500D01* -X275322Y110500D02*X276072Y109750D01* -X280874Y107500D02*X283124D01* -X283874Y108250D01* -X283124Y109000D02*X283874Y108250D01* -X280874Y109000D02*X283124D01* -X280124Y109750D02*X280874Y109000D01* -X280124Y109750D02*X280874Y110500D01* -X283124D01* -X283874Y109750D01* -X280124Y108250D02*X280874Y107500D01* -X285675Y111250D02*X286425D01* -X285675Y109750D02*X286425D01* -X290927Y112750D02*X291677Y113500D01* -X293927D01* -X294677Y112750D01* -Y111250D01* -X290927Y107500D02*X294677Y111250D01* -X290927Y107500D02*X294677D01* -X296478Y108250D02*X297228Y107500D01* -X296478Y112750D02*Y108250D01* -Y112750D02*X297228Y113500D01* -X298728D01* -X299478Y112750D01* -Y108250D01* -X298728Y107500D02*X299478Y108250D01* -X297228Y107500D02*X298728D01* -X296478Y109000D02*X299478Y112000D01* -X301280Y108250D02*X302030Y107500D01* -X301280Y112750D02*Y108250D01* -Y112750D02*X302030Y113500D01* -X303530D01* -X304280Y112750D01* -Y108250D01* -X303530Y107500D02*X304280Y108250D01* -X302030Y107500D02*X303530D01* -X301280Y109000D02*X304280Y112000D01* -X306081Y108250D02*X306831Y107500D01* -X306081Y112750D02*Y108250D01* -Y112750D02*X306831Y113500D01* -X308331D01* -X309081Y112750D01* -Y108250D01* -X308331Y107500D02*X309081Y108250D01* -X306831Y107500D02*X308331D01* -X306081Y109000D02*X309081Y112000D01* -X314333Y109750D02*Y107500D01* -Y109750D02*X315083Y110500D01* -X315833D01* -X316583Y109750D01* -Y107500D01* -Y109750D02*X317333Y110500D01* -X318083D01* -X318833Y109750D01* -Y107500D01* -X313583Y110500D02*X314333Y109750D01* -X320634Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X322136Y113500D02*Y108250D01* -X322886Y107500D01* -X325137D02*X327387D01* -X328137Y108250D01* -X327387Y109000D02*X328137Y108250D01* -X325137Y109000D02*X327387D01* -X324387Y109750D02*X325137Y109000D01* -X324387Y109750D02*X325137Y110500D01* -X327387D01* -X328137Y109750D01* -X324387Y108250D02*X325137Y107500D01* -X332639Y110500D02*Y108250D01* -X333389Y107500D01* -X334139D01* -X334889Y108250D01* -Y110500D02*Y108250D01* -X335639Y107500D01* -X336389D01* -X337139Y108250D01* -Y110500D02*Y108250D01* -X338940Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X343442Y113500D02*Y107500D01* -X342692D02*X343442Y108250D01* -X341192Y107500D02*X342692D01* -X340442Y108250D02*X341192Y107500D01* -X340442Y109750D02*Y108250D01* -Y109750D02*X341192Y110500D01* -X342692D01* -X343442Y109750D01* -X345993Y107500D02*X348243D01* -X345243Y108250D02*X345993Y107500D01* -X345243Y109750D02*Y108250D01* -Y109750D02*X345993Y110500D01* -X347493D01* -X348243Y109750D01* -X345243Y109000D02*X348243D01* -Y109750D02*Y109000D01* -X350045Y106000D02*X351545Y107500D01* -X356796D02*X358296D01* -X357546Y113500D02*Y107500D01* -X356046Y112000D02*X357546Y113500D01* -X360098Y108250D02*X360848Y107500D01* -X360098Y112750D02*Y108250D01* -Y112750D02*X360848Y113500D01* -X362348D01* -X363098Y112750D01* -Y108250D01* -X362348Y107500D02*X363098Y108250D01* -X360848Y107500D02*X362348D01* -X360098Y109000D02*X363098Y112000D01* -X364899Y108250D02*X365649Y107500D01* -X364899Y112750D02*Y108250D01* -Y112750D02*X365649Y113500D01* -X367149D01* -X367899Y112750D01* -Y108250D01* -X367149Y107500D02*X367899Y108250D01* -X365649Y107500D02*X367149D01* -X364899Y109000D02*X367899Y112000D01* -X369701Y108250D02*X370451Y107500D01* -X369701Y112750D02*Y108250D01* -Y112750D02*X370451Y113500D01* -X371951D01* -X372701Y112750D01* -Y108250D01* -X371951Y107500D02*X372701Y108250D01* -X370451Y107500D02*X371951D01* -X369701Y109000D02*X372701Y112000D01* -X377952Y109750D02*Y107500D01* -Y109750D02*X378702Y110500D01* -X379452D01* -X380202Y109750D01* -Y107500D01* -Y109750D02*X380952Y110500D01* -X381702D01* -X382452Y109750D01* -Y107500D01* -X377202Y110500D02*X377952Y109750D01* -X384254Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X385755Y113500D02*Y108250D01* -X386505Y107500D01* -X388757D02*X391007D01* -X391757Y108250D01* -X391007Y109000D02*X391757Y108250D01* -X388757Y109000D02*X391007D01* -X388007Y109750D02*X388757Y109000D01* -X388007Y109750D02*X388757Y110500D01* -X391007D01* -X391757Y109750D01* -X388007Y108250D02*X388757Y107500D01* -X396258Y113500D02*Y107500D01* -Y109750D02*X397008Y110500D01* -X398508D01* -X399258Y109750D01* -Y107500D01* -X401060Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X404811Y110500D02*X405561Y109750D01* -X403311Y110500D02*X404811D01* -X402561Y109750D02*X403311Y110500D01* -X402561Y109750D02*Y108250D01* -X403311Y107500D01* -X404811D01* -X405561Y108250D01* -X402561Y106000D02*X403311Y105250D01* -X404811D01* -X405561Y106000D01* -Y110500D02*Y106000D01* -X407363Y113500D02*Y107500D01* -Y109750D02*X408113Y110500D01* -X409613D01* -X410363Y109750D01* -Y107500D01* -X0Y-9500D02*X3000D01* -X3750Y-8750D01* -Y-7250D02*Y-8750D01* -X3000Y-6500D02*X3750Y-7250D01* -X750Y-6500D02*X3000D01* -X750Y-3500D02*Y-9500D01* -X0Y-3500D02*X3000D01* -X3750Y-4250D01* -Y-5750D01* -X3000Y-6500D02*X3750Y-5750D01* -X5551Y-7250D02*Y-8750D01* -Y-7250D02*X6301Y-6500D01* -X7801D01* -X8551Y-7250D01* -Y-8750D01* -X7801Y-9500D02*X8551Y-8750D01* -X6301Y-9500D02*X7801D01* -X5551Y-8750D02*X6301Y-9500D01* -X12603Y-6500D02*X13353Y-7250D01* -X11103Y-6500D02*X12603D01* -X10353Y-7250D02*X11103Y-6500D01* -X10353Y-7250D02*Y-8750D01* -X11103Y-9500D01* -X13353Y-6500D02*Y-8750D01* -X14103Y-9500D01* -X11103D02*X12603D01* -X13353Y-8750D01* -X16654Y-7250D02*Y-9500D01* -Y-7250D02*X17404Y-6500D01* -X18904D01* -X15904D02*X16654Y-7250D01* -X23706Y-3500D02*Y-9500D01* -X22956D02*X23706Y-8750D01* -X21456Y-9500D02*X22956D01* -X20706Y-8750D02*X21456Y-9500D01* -X20706Y-7250D02*Y-8750D01* -Y-7250D02*X21456Y-6500D01* -X22956D01* -X23706Y-7250D01* -X28207D02*Y-8750D01* -Y-7250D02*X28957Y-6500D01* -X30457D01* -X31207Y-7250D01* -Y-8750D01* -X30457Y-9500D02*X31207Y-8750D01* -X28957Y-9500D02*X30457D01* -X28207Y-8750D02*X28957Y-9500D01* -X33009Y-6500D02*Y-8750D01* -X33759Y-9500D01* -X35259D01* -X36009Y-8750D01* -Y-6500D02*Y-8750D01* -X38560Y-3500D02*Y-8750D01* -X39310Y-9500D01* -X37810Y-5750D02*X39310D01* -X40812Y-3500D02*Y-8750D01* -X41562Y-9500D01* -X43063Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X45315Y-7250D02*Y-9500D01* -Y-7250D02*X46065Y-6500D01* -X46815D01* -X47565Y-7250D01* -Y-9500D01* -X44565Y-6500D02*X45315Y-7250D01* -X50116Y-9500D02*X52366D01* -X49366Y-8750D02*X50116Y-9500D01* -X49366Y-7250D02*Y-8750D01* -Y-7250D02*X50116Y-6500D01* -X51616D01* -X52366Y-7250D01* -X49366Y-8000D02*X52366D01* -Y-7250D02*Y-8000D01* -X56868Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X59119D02*X61369D01* -X62119Y-8750D01* -X61369Y-8000D02*X62119Y-8750D01* -X59119Y-8000D02*X61369D01* -X58369Y-7250D02*X59119Y-8000D01* -X58369Y-7250D02*X59119Y-6500D01* -X61369D01* -X62119Y-7250D01* -X58369Y-8750D02*X59119Y-9500D01* -X67371Y-3500D02*Y-8750D01* -X68121Y-9500D01* -X66621Y-5750D02*X68121D01* -X69622Y-3500D02*Y-9500D01* -Y-7250D02*X70372Y-6500D01* -X71872D01* -X72622Y-7250D01* -Y-9500D01* -X75174D02*X77424D01* -X74424Y-8750D02*X75174Y-9500D01* -X74424Y-7250D02*Y-8750D01* -Y-7250D02*X75174Y-6500D01* -X76674D01* -X77424Y-7250D01* -X74424Y-8000D02*X77424D01* -Y-7250D02*Y-8000D01* -X82675Y-6500D02*X84925D01* -X81925Y-7250D02*X82675Y-6500D01* -X81925Y-7250D02*Y-8750D01* -X82675Y-9500D01* -X84925D01* -X87477D02*X89727D01* -X86727Y-8750D02*X87477Y-9500D01* -X86727Y-7250D02*Y-8750D01* -Y-7250D02*X87477Y-6500D01* -X88977D01* -X89727Y-7250D01* -X86727Y-8000D02*X89727D01* -Y-7250D02*Y-8000D01* -X92278Y-7250D02*Y-9500D01* -Y-7250D02*X93028Y-6500D01* -X93778D01* -X94528Y-7250D01* -Y-9500D01* -X91528Y-6500D02*X92278Y-7250D01* -X97080Y-3500D02*Y-8750D01* -X97830Y-9500D01* -X96330Y-5750D02*X97830D01* -X100081Y-9500D02*X102331D01* -X99331Y-8750D02*X100081Y-9500D01* -X99331Y-7250D02*Y-8750D01* -Y-7250D02*X100081Y-6500D01* -X101581D01* -X102331Y-7250D01* -X99331Y-8000D02*X102331D01* -Y-7250D02*Y-8000D01* -X104883Y-7250D02*Y-9500D01* -Y-7250D02*X105633Y-6500D01* -X107133D01* -X104133D02*X104883Y-7250D01* -X108934Y-3500D02*Y-8750D01* -X109684Y-9500D01* -X111186Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X113437Y-7250D02*Y-9500D01* -Y-7250D02*X114187Y-6500D01* -X114937D01* -X115687Y-7250D01* -Y-9500D01* -X112687Y-6500D02*X113437Y-7250D01* -X118239Y-9500D02*X120489D01* -X117489Y-8750D02*X118239Y-9500D01* -X117489Y-7250D02*Y-8750D01* -Y-7250D02*X118239Y-6500D01* -X119739D01* -X120489Y-7250D01* -X117489Y-8000D02*X120489D01* -Y-7250D02*Y-8000D01* -X124990Y-7250D02*Y-8750D01* -Y-7250D02*X125740Y-6500D01* -X127240D01* -X127990Y-7250D01* -Y-8750D01* -X127240Y-9500D02*X127990Y-8750D01* -X125740Y-9500D02*X127240D01* -X124990Y-8750D02*X125740Y-9500D01* -X130542Y-4250D02*Y-9500D01* -Y-4250D02*X131292Y-3500D01* -X132042D01* -X129792Y-6500D02*X131292D01* -X136993Y-3500D02*Y-8750D01* -X137743Y-9500D01* -X136243Y-5750D02*X137743D01* -X139245Y-3500D02*Y-9500D01* -Y-7250D02*X139995Y-6500D01* -X141495D01* -X142245Y-7250D01* -Y-9500D01* -X144046Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X146298D02*X148548D01* -X149298Y-8750D01* -X148548Y-8000D02*X149298Y-8750D01* -X146298Y-8000D02*X148548D01* -X145548Y-7250D02*X146298Y-8000D01* -X145548Y-7250D02*X146298Y-6500D01* -X148548D01* -X149298Y-7250D01* -X145548Y-8750D02*X146298Y-9500D01* -X154549D02*X156049D01* -X155299Y-3500D02*Y-9500D01* -X153799Y-5000D02*X155299Y-3500D01* -X157851Y-8750D02*X158601Y-9500D01* -X157851Y-4250D02*Y-8750D01* -Y-4250D02*X158601Y-3500D01* -X160101D01* -X160851Y-4250D01* -Y-8750D01* -X160101Y-9500D02*X160851Y-8750D01* -X158601Y-9500D02*X160101D01* -X157851Y-8000D02*X160851Y-5000D01* -X166102Y-7250D02*Y-9500D01* -Y-7250D02*X166852Y-6500D01* -X167602D01* -X168352Y-7250D01* -Y-9500D01* -Y-7250D02*X169102Y-6500D01* -X169852D01* -X170602Y-7250D01* -Y-9500D01* -X165352Y-6500D02*X166102Y-7250D01* -X172404Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X173905Y-3500D02*Y-8750D01* -X174655Y-9500D01* -X179607Y-7250D02*Y-9500D01* -Y-7250D02*X180357Y-6500D01* -X181857D01* -X178857D02*X179607Y-7250D01* -X184408Y-9500D02*X186658D01* -X183658Y-8750D02*X184408Y-9500D01* -X183658Y-7250D02*Y-8750D01* -Y-7250D02*X184408Y-6500D01* -X185908D01* -X186658Y-7250D01* -X183658Y-8000D02*X186658D01* -Y-7250D02*Y-8000D01* -X189210Y-6500D02*X191460D01* -X188460Y-7250D02*X189210Y-6500D01* -X188460Y-7250D02*Y-8750D01* -X189210Y-9500D01* -X191460D01* -X194011Y-3500D02*Y-8750D01* -X194761Y-9500D01* -X193261Y-5750D02*X194761D01* -X198513Y-6500D02*X199263Y-7250D01* -X197013Y-6500D02*X198513D01* -X196263Y-7250D02*X197013Y-6500D01* -X196263Y-7250D02*Y-8750D01* -X197013Y-9500D01* -X199263Y-6500D02*Y-8750D01* -X200013Y-9500D01* -X197013D02*X198513D01* -X199263Y-8750D01* -X202564Y-7250D02*Y-9500D01* -Y-7250D02*X203314Y-6500D01* -X204064D01* -X204814Y-7250D01* -Y-9500D01* -X201814Y-6500D02*X202564Y-7250D01* -X208866Y-6500D02*X209616Y-7250D01* -X207366Y-6500D02*X208866D01* -X206616Y-7250D02*X207366Y-6500D01* -X206616Y-7250D02*Y-8750D01* -X207366Y-9500D01* -X208866D01* -X209616Y-8750D01* -X206616Y-11000D02*X207366Y-11750D01* -X208866D01* -X209616Y-11000D01* -Y-6500D02*Y-11000D01* -X211417Y-3500D02*Y-8750D01* -X212167Y-9500D01* -X214419D02*X216669D01* -X213669Y-8750D02*X214419Y-9500D01* -X213669Y-7250D02*Y-8750D01* -Y-7250D02*X214419Y-6500D01* -X215919D01* -X216669Y-7250D01* -X213669Y-8000D02*X216669D01* -Y-7250D02*Y-8000D01* -X221170Y-6500D02*X224170D01* -X228672Y-8750D02*X229422Y-9500D01* -X228672Y-4250D02*Y-8750D01* -Y-4250D02*X229422Y-3500D01* -X230922D01* -X231672Y-4250D01* -Y-8750D01* -X230922Y-9500D02*X231672Y-8750D01* -X229422Y-9500D02*X230922D01* -X228672Y-8000D02*X231672Y-5000D01* -X233473Y-11000D02*X234973Y-9500D01* -X236775Y-8750D02*X237525Y-9500D01* -X236775Y-4250D02*Y-8750D01* -Y-4250D02*X237525Y-3500D01* -X239025D01* -X239775Y-4250D01* -Y-8750D01* -X239025Y-9500D02*X239775Y-8750D01* -X237525Y-9500D02*X239025D01* -X236775Y-8000D02*X239775Y-5000D01* -X245026Y-3500D02*Y-8750D01* -X245776Y-9500D01* -X244276Y-5750D02*X245776D01* -X247278Y-7250D02*Y-8750D01* -Y-7250D02*X248028Y-6500D01* -X249528D01* -X250278Y-7250D01* -Y-8750D01* -X249528Y-9500D02*X250278Y-8750D01* -X248028Y-9500D02*X249528D01* -X247278Y-8750D02*X248028Y-9500D01* -X254779Y-4250D02*X255529Y-3500D01* -X257779D01* -X258529Y-4250D01* -Y-5750D01* -X254779Y-9500D02*X258529Y-5750D01* -X254779Y-9500D02*X258529D01* -X260331Y-8750D02*X261081Y-9500D01* -X260331Y-4250D02*Y-8750D01* -Y-4250D02*X261081Y-3500D01* -X262581D01* -X263331Y-4250D01* -Y-8750D01* -X262581Y-9500D02*X263331Y-8750D01* -X261081Y-9500D02*X262581D01* -X260331Y-8000D02*X263331Y-5000D01* -X265132Y-8750D02*X265882Y-9500D01* -X265132Y-4250D02*Y-8750D01* -Y-4250D02*X265882Y-3500D01* -X267382D01* -X268132Y-4250D01* -Y-8750D01* -X267382Y-9500D02*X268132Y-8750D01* -X265882Y-9500D02*X267382D01* -X265132Y-8000D02*X268132Y-5000D01* -X269934Y-8750D02*X270684Y-9500D01* -X269934Y-4250D02*Y-8750D01* -Y-4250D02*X270684Y-3500D01* -X272184D01* -X272934Y-4250D01* -Y-8750D01* -X272184Y-9500D02*X272934Y-8750D01* -X270684Y-9500D02*X272184D01* -X269934Y-8000D02*X272934Y-5000D01* -X274735Y-11000D02*X276235Y-9500D01* -X278787D02*X280287D01* -X279537Y-3500D02*Y-9500D01* -X278037Y-5000D02*X279537Y-3500D01* -X282088Y-8750D02*X282838Y-9500D01* -X282088Y-4250D02*Y-8750D01* -Y-4250D02*X282838Y-3500D01* -X284338D01* -X285088Y-4250D01* -Y-8750D01* -X284338Y-9500D02*X285088Y-8750D01* -X282838Y-9500D02*X284338D01* -X282088Y-8000D02*X285088Y-5000D01* -X286890Y-8750D02*X287640Y-9500D01* -X286890Y-4250D02*Y-8750D01* -Y-4250D02*X287640Y-3500D01* -X289140D01* -X289890Y-4250D01* -Y-8750D01* -X289140Y-9500D02*X289890Y-8750D01* -X287640Y-9500D02*X289140D01* -X286890Y-8000D02*X289890Y-5000D01* -X291691Y-8750D02*X292441Y-9500D01* -X291691Y-4250D02*Y-8750D01* -Y-4250D02*X292441Y-3500D01* -X293941D01* -X294691Y-4250D01* -Y-8750D01* -X293941Y-9500D02*X294691Y-8750D01* -X292441Y-9500D02*X293941D01* -X291691Y-8000D02*X294691Y-5000D01* -X299943Y-7250D02*Y-9500D01* -Y-7250D02*X300693Y-6500D01* -X301443D01* -X302193Y-7250D01* -Y-9500D01* -Y-7250D02*X302943Y-6500D01* -X303693D01* -X304443Y-7250D01* -Y-9500D01* -X299193Y-6500D02*X299943Y-7250D01* -X306244Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X307746Y-3500D02*Y-8750D01* -X308496Y-9500D01* -X310747D02*X312997D01* -X313747Y-8750D01* -X312997Y-8000D02*X313747Y-8750D01* -X310747Y-8000D02*X312997D01* -X309997Y-7250D02*X310747Y-8000D01* -X309997Y-7250D02*X310747Y-6500D01* -X312997D01* -X313747Y-7250D01* -X309997Y-8750D02*X310747Y-9500D01* -X200750Y128500D02*Y122500D01* -X203000Y128500D02*X203750Y127750D01* -Y123250D01* -X203000Y122500D02*X203750Y123250D01* -X200000Y122500D02*X203000D01* -X200000Y128500D02*X203000D01* -X207801Y125500D02*X208551Y124750D01* -X206301Y125500D02*X207801D01* -X205551Y124750D02*X206301Y125500D01* -X205551Y124750D02*Y123250D01* -X206301Y122500D01* -X208551Y125500D02*Y123250D01* -X209301Y122500D01* -X206301D02*X207801D01* -X208551Y123250D01* -X211853Y128500D02*Y123250D01* -X212603Y122500D01* -X211103Y126250D02*X212603D01* -X214854Y122500D02*X217104D01* -X214104Y123250D02*X214854Y122500D01* -X214104Y124750D02*Y123250D01* -Y124750D02*X214854Y125500D01* -X216354D01* -X217104Y124750D01* -X214104Y124000D02*X217104D01* -Y124750D02*Y124000D01* -X218906Y126250D02*X219656D01* -X218906Y124750D02*X219656D01* -X224157Y128500D02*Y122500D01* -X226407Y124750D01* -X228657Y122500D01* -Y128500D02*Y122500D01* -X231209D02*X233459D01* -X230459Y123250D02*X231209Y122500D01* -X230459Y124750D02*Y123250D01* -Y124750D02*X231209Y125500D01* -X232709D01* -X233459Y124750D01* -X230459Y124000D02*X233459D01* -Y124750D02*Y124000D01* -X238260Y128500D02*Y122500D01* -X237510D02*X238260Y123250D01* -X236010Y122500D02*X237510D01* -X235260Y123250D02*X236010Y122500D01* -X235260Y124750D02*Y123250D01* -Y124750D02*X236010Y125500D01* -X237510D01* -X238260Y124750D01* -X242762Y128500D02*X245012D01* -Y123250D01* -X244262Y122500D02*X245012Y123250D01* -X243512Y122500D02*X244262D01* -X242762Y123250D02*X243512Y122500D01* -X246813Y125500D02*Y123250D01* -X247563Y122500D01* -X249063D01* -X249813Y123250D01* -Y125500D02*Y123250D01* -X252365Y124750D02*Y122500D01* -Y124750D02*X253115Y125500D01* -X253865D01* -X254615Y124750D01* -Y122500D01* -X251615Y125500D02*X252365Y124750D01* -X259116Y127750D02*X259866Y128500D01* -X262116D01* -X262866Y127750D01* -Y126250D01* -X259116Y122500D02*X262866Y126250D01* -X259116Y122500D02*X262866D01* -X264668Y125500D02*X267668Y128500D01* -X264668Y125500D02*X268418D01* -X267668Y128500D02*Y122500D01* -X272919Y127750D02*X273669Y128500D01* -X275919D01* -X276669Y127750D01* -Y126250D01* -X272919Y122500D02*X276669Y126250D01* -X272919Y122500D02*X276669D01* -X279221D02*X280721D01* -X279971Y128500D02*Y122500D01* -X278471Y127000D02*X279971Y128500D01* -X282522Y126250D02*X283272D01* -X282522Y124750D02*X283272D01* -X285074Y125500D02*X288074Y128500D01* -X285074Y125500D02*X288824D01* -X288074Y128500D02*Y122500D01* -X290625Y127750D02*X291375Y128500D01* -X293625D01* -X294375Y127750D01* -Y126250D01* -X290625Y122500D02*X294375Y126250D01* -X290625Y122500D02*X294375D01* -X296177Y126250D02*X296927D01* -X296177Y124750D02*X296927D01* -X298728Y127750D02*X299478Y128500D01* -X301728D01* -X302478Y127750D01* -Y126250D01* -X298728Y122500D02*X302478Y126250D01* -X298728Y122500D02*X302478D01* -X304280Y125500D02*X307280Y128500D01* -X304280Y125500D02*X308030D01* -X307280Y128500D02*Y122500D01* -X312531Y127750D02*X313281Y128500D01* -X315531D01* -X316281Y127750D01* -Y126250D01* -X312531Y122500D02*X316281Y126250D01* -X312531Y122500D02*X316281D01* -X318083Y123250D02*X318833Y122500D01* -X318083Y127750D02*Y123250D01* -Y127750D02*X318833Y128500D01* -X320333D01* -X321083Y127750D01* -Y123250D01* -X320333Y122500D02*X321083Y123250D01* -X318833Y122500D02*X320333D01* -X318083Y124000D02*X321083Y127000D01* -X322884Y123250D02*X323634Y122500D01* -X322884Y127750D02*Y123250D01* -Y127750D02*X323634Y128500D01* -X325134D01* -X325884Y127750D01* -Y123250D01* -X325134Y122500D02*X325884Y123250D01* -X323634Y122500D02*X325134D01* -X322884Y124000D02*X325884Y127000D01* -X327686Y122500D02*X330686Y125500D01* -Y127750D02*Y125500D01* -X329936Y128500D02*X330686Y127750D01* -X328436Y128500D02*X329936D01* -X327686Y127750D02*X328436Y128500D01* -X327686Y127750D02*Y126250D01* -X328436Y125500D01* -X330686D01* -X335187Y128500D02*Y123250D01* -X335937Y122500D01* -X337437D01* -X338187Y123250D01* -Y128500D02*Y123250D01* -X339989Y128500D02*X342989D01* -X341489D02*Y122500D01* -X345540D02*X347790D01* -X344790Y123250D02*X345540Y122500D01* -X344790Y127750D02*Y123250D01* -Y127750D02*X345540Y128500D01* -X347790D01* -X200000Y142750D02*Y137500D01* -Y142750D02*X200750Y143500D01* -X203000D01* -X203750Y142750D01* -Y137500D01* -X200000Y140500D02*X203750D01* -X205551D02*Y138250D01* -X206301Y137500D01* -X207801D01* -X208551Y138250D01* -Y140500D02*Y138250D01* -X211103Y143500D02*Y138250D01* -X211853Y137500D01* -X210353Y141250D02*X211853D01* -X213354Y143500D02*Y137500D01* -Y139750D02*X214104Y140500D01* -X215604D01* -X216354Y139750D01* -Y137500D01* -X218156Y139750D02*Y138250D01* -Y139750D02*X218906Y140500D01* -X220406D01* -X221156Y139750D01* -Y138250D01* -X220406Y137500D02*X221156Y138250D01* -X218906Y137500D02*X220406D01* -X218156Y138250D02*X218906Y137500D01* -X223707Y139750D02*Y137500D01* -Y139750D02*X224457Y140500D01* -X225957D01* -X222957D02*X223707Y139750D01* -X227759Y141250D02*X228509D01* -X227759Y139750D02*X228509D01* -X233760Y143500D02*Y137500D01* -X236010Y143500D02*X236760Y142750D01* -Y138250D01* -X236010Y137500D02*X236760Y138250D01* -X233010Y137500D02*X236010D01* -X233010Y143500D02*X236010D01* -X240812Y140500D02*X241562Y139750D01* -X239312Y140500D02*X240812D01* -X238562Y139750D02*X239312Y140500D01* -X238562Y139750D02*Y138250D01* -X239312Y137500D01* -X241562Y140500D02*Y138250D01* -X242312Y137500D01* -X239312D02*X240812D01* -X241562Y138250D01* -X244863Y139750D02*Y137500D01* -Y139750D02*X245613Y140500D01* -X246363D01* -X247113Y139750D01* -Y137500D01* -X244113Y140500D02*X244863Y139750D01* -X251615Y143500D02*Y137500D01* -Y143500D02*X253865Y141250D01* -X256115Y143500D01* -Y137500D01* -X258666Y140500D02*X260916D01* -X257916Y139750D02*X258666Y140500D01* -X257916Y139750D02*Y138250D01* -X258666Y137500D01* -X260916D01* -X262718Y143500D02*Y137500D01* -Y143500D02*X264968Y141250D01* -X267218Y143500D01* -Y137500D01* -X271269Y140500D02*X272019Y139750D01* -X269769Y140500D02*X271269D01* -X269019Y139750D02*X269769Y140500D01* -X269019Y139750D02*Y138250D01* -X269769Y137500D01* -X272019Y140500D02*Y138250D01* -X272769Y137500D01* -X269769D02*X271269D01* -X272019Y138250D01* -X274571Y143500D02*Y137500D01* -Y139750D02*X275321Y140500D01* -X276821D01* -X277571Y139750D01* -Y137500D01* -X279372Y142000D02*Y141250D01* -Y139750D02*Y137500D01* -X280874Y143500D02*Y138250D01* -X281624Y137500D01* -X283125Y143500D02*Y138250D01* -X283875Y137500D01* -X200000Y158500D02*X203000D01* -X201500D02*Y152500D01* -X204801Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X207053Y158500D02*Y153250D01* -X207803Y152500D01* -X206303Y156250D02*X207803D01* -X209304Y158500D02*Y153250D01* -X210054Y152500D01* -X212306D02*X214556D01* -X211556Y153250D02*X212306Y152500D01* -X211556Y154750D02*Y153250D01* -Y154750D02*X212306Y155500D01* -X213806D01* -X214556Y154750D01* -X211556Y154000D02*X214556D01* -Y154750D02*Y154000D01* -X216357Y156250D02*X217107D01* -X216357Y154750D02*X217107D01* -X221609Y152500D02*X224609D01* -X225359Y153250D01* -Y154750D02*Y153250D01* -X224609Y155500D02*X225359Y154750D01* -X222359Y155500D02*X224609D01* -X222359Y158500D02*Y152500D01* -X221609Y158500D02*X224609D01* -X225359Y157750D01* -Y156250D01* -X224609Y155500D02*X225359Y156250D01* -X229410Y155500D02*X230160Y154750D01* -X227910Y155500D02*X229410D01* -X227160Y154750D02*X227910Y155500D01* -X227160Y154750D02*Y153250D01* -X227910Y152500D01* -X230160Y155500D02*Y153250D01* -X230910Y152500D01* -X227910D02*X229410D01* -X230160Y153250D01* -X233462Y152500D02*X235712D01* -X236462Y153250D01* -X235712Y154000D02*X236462Y153250D01* -X233462Y154000D02*X235712D01* -X232712Y154750D02*X233462Y154000D01* -X232712Y154750D02*X233462Y155500D01* -X235712D01* -X236462Y154750D01* -X232712Y153250D02*X233462Y152500D01* -X238263Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X240515Y155500D02*X242765D01* -X239765Y154750D02*X240515Y155500D01* -X239765Y154750D02*Y153250D01* -X240515Y152500D01* -X242765D01* -X250266Y158500D02*X251016Y157750D01* -X248016Y158500D02*X250266D01* -X247266Y157750D02*X248016Y158500D01* -X247266Y157750D02*Y156250D01* -X248016Y155500D01* -X250266D01* -X251016Y154750D01* -Y153250D01* -X250266Y152500D02*X251016Y153250D01* -X248016Y152500D02*X250266D01* -X247266Y153250D02*X248016Y152500D01* -X252818Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X255069Y154750D02*Y152500D01* -Y154750D02*X255819Y155500D01* -X256569D01* -X257319Y154750D01* -Y152500D01* -X254319Y155500D02*X255069Y154750D01* -X261371Y155500D02*X262121Y154750D01* -X259871Y155500D02*X261371D01* -X259121Y154750D02*X259871Y155500D01* -X259121Y154750D02*Y153250D01* -X259871Y152500D01* -X261371D01* -X262121Y153250D01* -X259121Y151000D02*X259871Y150250D01* -X261371D01* -X262121Y151000D01* -Y155500D02*Y151000D01* -X263922Y158500D02*Y153250D01* -X264672Y152500D01* -X266924D02*X269174D01* -X266174Y153250D02*X266924Y152500D01* -X266174Y154750D02*Y153250D01* -Y154750D02*X266924Y155500D01* -X268424D01* -X269174Y154750D01* -X266174Y154000D02*X269174D01* -Y154750D02*Y154000D01* -X273675Y158500D02*X276675D01* -X275175D02*Y152500D01* -X279227Y154750D02*Y152500D01* -Y154750D02*X279977Y155500D01* -X281477D01* -X278477D02*X279227Y154750D01* -X285528Y155500D02*X286278Y154750D01* -X284028Y155500D02*X285528D01* -X283278Y154750D02*X284028Y155500D01* -X283278Y154750D02*Y153250D01* -X284028Y152500D01* -X286278Y155500D02*Y153250D01* -X287028Y152500D01* -X284028D02*X285528D01* -X286278Y153250D01* -X289580Y155500D02*X291830D01* -X288830Y154750D02*X289580Y155500D01* -X288830Y154750D02*Y153250D01* -X289580Y152500D01* -X291830D01* -X294381D02*X296631D01* -X293631Y153250D02*X294381Y152500D01* -X293631Y154750D02*Y153250D01* -Y154750D02*X294381Y155500D01* -X295881D01* -X296631Y154750D01* -X293631Y154000D02*X296631D01* -Y154750D02*Y154000D01* -X301133Y158500D02*X304133D01* -X304883Y157750D01* -Y156250D01* -X304133Y155500D02*X304883Y156250D01* -X301883Y155500D02*X304133D01* -X301883Y158500D02*Y152500D01* -Y155500D02*X304883Y152500D01* -X309684Y158500D02*X310434Y157750D01* -X307434Y158500D02*X309684D01* -X306684Y157750D02*X307434Y158500D01* -X306684Y157750D02*Y156250D01* -X307434Y155500D01* -X309684D01* -X310434Y154750D01* -Y153250D01* -X309684Y152500D02*X310434Y153250D01* -X307434Y152500D02*X309684D01* -X306684Y153250D02*X307434Y152500D01* -X312236Y157750D02*X312986Y158500D01* -X315236D01* -X315986Y157750D01* -Y156250D01* -X312236Y152500D02*X315986Y156250D01* -X312236Y152500D02*X315986D01* -X317787D02*X321537Y156250D01* -Y158500D02*Y156250D01* -X317787Y158500D02*X321537D01* -X323339Y155500D02*X326339Y158500D01* -X323339Y155500D02*X327089D01* -X326339Y158500D02*Y152500D01* -X328890Y155500D02*X331890D01* -X333692Y158500D02*Y157750D01* -X337442Y154000D01* -Y152500D01* -X333692Y154000D02*Y152500D01* -Y154000D02*X337442Y157750D01* -Y158500D02*Y157750D01* -X341943Y158500D02*X344943D01* -X343443D02*Y152500D01* -X347495D02*X349745D01* -X346745Y153250D02*X347495Y152500D01* -X346745Y154750D02*Y153250D01* -Y154750D02*X347495Y155500D01* -X348995D01* -X349745Y154750D01* -X346745Y154000D02*X349745D01* -Y154750D02*Y154000D01* -X352296Y152500D02*X354546D01* -X355296Y153250D01* -X354546Y154000D02*X355296Y153250D01* -X352296Y154000D02*X354546D01* -X351546Y154750D02*X352296Y154000D01* -X351546Y154750D02*X352296Y155500D01* -X354546D01* -X355296Y154750D01* -X351546Y153250D02*X352296Y152500D01* -X357848Y158500D02*Y153250D01* -X358598Y152500D01* -X357098Y156250D02*X358598D01* -X362799Y155500D02*X365799D01* -X370301Y158500D02*Y152500D01* -Y158500D02*X373301D01* -X370301Y155500D02*X372551D01* -X377352D02*X378102Y154750D01* -X375852Y155500D02*X377352D01* -X375102Y154750D02*X375852Y155500D01* -X375102Y154750D02*Y153250D01* -X375852Y152500D01* -X378102Y155500D02*Y153250D01* -X378852Y152500D01* -X375852D02*X377352D01* -X378102Y153250D01* -X380654Y158500D02*Y152500D01* -Y153250D02*X381404Y152500D01* -X382904D01* -X383654Y153250D01* -Y154750D02*Y153250D01* -X382904Y155500D02*X383654Y154750D01* -X381404Y155500D02*X382904D01* -X380654Y154750D02*X381404Y155500D01* -X386205Y154750D02*Y152500D01* -Y154750D02*X386955Y155500D01* -X388455D01* -X385455D02*X386205Y154750D01* -X390257Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X392508Y155500D02*X394758D01* -X391758Y154750D02*X392508Y155500D01* -X391758Y154750D02*Y153250D01* -X392508Y152500D01* -X394758D01* -X398810Y155500D02*X399560Y154750D01* -X397310Y155500D02*X398810D01* -X396560Y154750D02*X397310Y155500D01* -X396560Y154750D02*Y153250D01* -X397310Y152500D01* -X399560Y155500D02*Y153250D01* -X400310Y152500D01* -X397310D02*X398810D01* -X399560Y153250D01* -X402861Y158500D02*Y153250D01* -X403611Y152500D01* -X402111Y156250D02*X403611D01* -X405113Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X406614Y154750D02*Y153250D01* -Y154750D02*X407364Y155500D01* -X408864D01* -X409614Y154750D01* -Y153250D01* -X408864Y152500D02*X409614Y153250D01* -X407364Y152500D02*X408864D01* -X406614Y153250D02*X407364Y152500D01* -X412166Y154750D02*Y152500D01* -Y154750D02*X412916Y155500D01* -X413666D01* -X414416Y154750D01* -Y152500D01* -X411416Y155500D02*X412166Y154750D01* -X419667Y158500D02*Y152500D01* -X421917Y158500D02*X422667Y157750D01* -Y153250D01* -X421917Y152500D02*X422667Y153250D01* -X418917Y152500D02*X421917D01* -X418917Y158500D02*X421917D01* -X425219Y154750D02*Y152500D01* -Y154750D02*X425969Y155500D01* -X427469D01* -X424469D02*X425219Y154750D01* -X431520Y155500D02*X432270Y154750D01* -X430020Y155500D02*X431520D01* -X429270Y154750D02*X430020Y155500D01* -X429270Y154750D02*Y153250D01* -X430020Y152500D01* -X432270Y155500D02*Y153250D01* -X433020Y152500D01* -X430020D02*X431520D01* -X432270Y153250D01* -X434822Y155500D02*Y153250D01* -X435572Y152500D01* -X436322D01* -X437072Y153250D01* -Y155500D02*Y153250D01* -X437822Y152500D01* -X438572D01* -X439322Y153250D01* -Y155500D02*Y153250D01* -X441123Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X443375Y154750D02*Y152500D01* -Y154750D02*X444125Y155500D01* -X444875D01* -X445625Y154750D01* -Y152500D01* -X442625Y155500D02*X443375Y154750D01* -X449676Y155500D02*X450426Y154750D01* -X448176Y155500D02*X449676D01* -X447426Y154750D02*X448176Y155500D01* -X447426Y154750D02*Y153250D01* -X448176Y152500D01* -X449676D01* -X450426Y153250D01* -X447426Y151000D02*X448176Y150250D01* -X449676D01* -X450426Y151000D01* -Y155500D02*Y151000D01* -M02* Index: trunk/tests/orig/golden/hid_gerber1/gerber_oneline.top.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber1/gerber_oneline.top.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber1/gerber_oneline.top.gbr (nonexistent) @@ -1,17 +0,0 @@ -G04 start of page 2 for group 0 idx 0 * -G04 Title: Basic Single Trace RS274-X Test, component * -G04 Creator: pcb 1.99y * -G04 CreationDate: Wed Jun 24 21:42:24 2009 UTC * -G04 For: dan * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 200000 100000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNFRONT*% -%ADD11C,0.0400*% -%ADD12C,0.0600*% -%ADD13C,0.0350*% -G54D11*X10000Y50000D02*X90000D01* -G54D12*D03* -G54D13*M02* Index: trunk/tests/orig/golden/hid_gerber1/gerber_oneline.bottom.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber1/gerber_oneline.bottom.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber1/gerber_oneline.bottom.gbr (nonexistent) @@ -1,17 +0,0 @@ -G04 start of page 3 for group 1 idx 1 * -G04 Title: Basic Single Trace RS274-X Test, solder * -G04 Creator: pcb 1.99y * -G04 CreationDate: Wed Jun 24 21:42:24 2009 UTC * -G04 For: dan * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 200000 100000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNBACK*% -%ADD11C,0.0400*% -%ADD12C,0.0600*% -%ADD13C,0.0350*% -G54D11*X170000Y50000D02*X90000D01* -G54D12*D03* -G54D13*M02* Index: trunk/tests/orig/golden/hid_gerber1/gerber_oneline.plated-drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gerber1/gerber_oneline.plated-drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gerber1/gerber_oneline.plated-drill.cnc (nonexistent) @@ -1,7 +0,0 @@ -M48 -INCH -T13C0.035 -% -T13 -X009000Y005000 -M30 Index: trunk/tests/orig/golden/hid_gerber2/out.top.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber2/out.top.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber2/out.top.gbr (nonexistent) @@ -1,17 +0,0 @@ -G04 start of page 2 for group 0 idx 0 * -G04 Title: Basic Single Trace RS274-X Test, component * -G04 Creator: pcb 1.99y * -G04 CreationDate: Wed Jun 24 22:05:35 2009 UTC * -G04 For: dan * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 200000 100000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNFRONT*% -%ADD11C,0.0400*% -%ADD12C,0.0600*% -%ADD13C,0.0350*% -G54D11*X10000Y50000D02*X90000D01* -G54D12*D03* -G54D13*M02* Index: trunk/tests/orig/golden/hid_gerber2/out.bottom.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber2/out.bottom.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber2/out.bottom.gbr (nonexistent) @@ -1,17 +0,0 @@ -G04 start of page 3 for group 1 idx 1 * -G04 Title: Basic Single Trace RS274-X Test, solder * -G04 Creator: pcb 1.99y * -G04 CreationDate: Wed Jun 24 22:05:35 2009 UTC * -G04 For: dan * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 200000 100000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNBACK*% -%ADD11C,0.0400*% -%ADD12C,0.0600*% -%ADD13C,0.0350*% -G54D11*X170000Y50000D02*X90000D01* -G54D12*D03* -G54D13*M02* Index: trunk/tests/orig/golden/hid_gerber2/out.plated-drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gerber2/out.plated-drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gerber2/out.plated-drill.cnc (nonexistent) @@ -1,7 +0,0 @@ -M48 -INCH -T13C0.035 -% -T13 -X009000Y005000 -M30 Index: trunk/tests/orig/golden/hid_gerber2/out.fab.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber2/out.fab.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber2/out.fab.gbr (nonexistent) @@ -1,1754 +0,0 @@ -G04 start of page 5 for group -3984 idx -3984 * -G04 Title: Basic Single Trace RS274-X Test, fab * -G04 Creator: pcb 1.99y * -G04 CreationDate: Wed Jun 24 22:05:35 2009 UTC * -G04 For: dan * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 200000 100000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNFAB*% -%ADD14C,0.0080*% -%ADD15C,0.0060*% -%ADD16C,0.0100*% -G54D14*X90000Y50000D02*Y48400D01* -Y50000D02*X91386Y50800D01* -X90000Y50000D02*X88614Y50800D01* -X15000Y156250D02*Y154650D01* -Y156250D02*X16386Y157050D01* -X15000Y156250D02*X13614Y157050D01* -G54D15*X135000Y158500D02*Y157750D01* -X136500Y156250D01* -X138000Y157750D01* -Y158500D02*Y157750D01* -X136500Y156250D02*Y152500D01* -X139801Y155500D02*X142051D01* -X139801Y152500D02*X142801D01* -X139801Y158500D02*Y152500D01* -Y158500D02*X142801D01* -X147603D02*X148353Y157750D01* -X145353Y158500D02*X147603D01* -X144603Y157750D02*X145353Y158500D01* -X144603Y157750D02*Y156250D01* -X145353Y155500D01* -X147603D01* -X148353Y154750D01* -Y153250D01* -X147603Y152500D02*X148353Y153250D01* -X145353Y152500D02*X147603D01* -X144603Y153250D02*X145353Y152500D01* -X135000Y149249D02*X150154D01* -X98750Y152500D02*X100250D01* -X99500Y158500D02*Y152500D01* -X98000Y157000D02*X99500Y158500D01* -X98000Y149249D02*X102051D01* -X45000Y153250D02*X45750Y152500D01* -X45000Y157750D02*Y153250D01* -Y157750D02*X45750Y158500D01* -X47250D01* -X48000Y157750D01* -Y153250D01* -X47250Y152500D02*X48000Y153250D01* -X45750Y152500D02*X47250D01* -X45000Y154000D02*X48000Y157000D01* -X49801Y152500D02*X50551D01* -X52353Y153250D02*X53103Y152500D01* -X52353Y157750D02*Y153250D01* -Y157750D02*X53103Y158500D01* -X54603D01* -X55353Y157750D01* -Y153250D01* -X54603Y152500D02*X55353Y153250D01* -X53103Y152500D02*X54603D01* -X52353Y154000D02*X55353Y157000D01* -X57154Y157750D02*X57904Y158500D01* -X59404D01* -X60154Y157750D01* -Y153250D01* -X59404Y152500D02*X60154Y153250D01* -X57904Y152500D02*X59404D01* -X57154Y153250D02*X57904Y152500D01* -Y155500D02*X60154D01* -X61956Y158500D02*X64956D01* -X61956D02*Y155500D01* -X62706Y156250D01* -X64206D01* -X64956Y155500D01* -Y153250D01* -X64206Y152500D02*X64956Y153250D01* -X62706Y152500D02*X64206D01* -X61956Y153250D02*X62706Y152500D01* -X45000Y149249D02*X66757D01* -X3000Y173500D02*X3750Y172750D01* -X750Y173500D02*X3000D01* -X0Y172750D02*X750Y173500D01* -X0Y172750D02*Y171250D01* -X750Y170500D01* -X3000D01* -X3750Y169750D01* -Y168250D01* -X3000Y167500D02*X3750Y168250D01* -X750Y167500D02*X3000D01* -X0Y168250D02*X750Y167500D01* -X5551Y170500D02*Y168250D01* -X6301Y167500D01* -X8551Y170500D02*Y166000D01* -X7801Y165250D02*X8551Y166000D01* -X6301Y165250D02*X7801D01* -X5551Y166000D02*X6301Y165250D01* -Y167500D02*X7801D01* -X8551Y168250D01* -X11103Y169750D02*Y167500D01* -Y169750D02*X11853Y170500D01* -X12603D01* -X13353Y169750D01* -Y167500D01* -Y169750D02*X14103Y170500D01* -X14853D01* -X15603Y169750D01* -Y167500D01* -X10353Y170500D02*X11103Y169750D01* -X17404Y173500D02*Y167500D01* -Y168250D02*X18154Y167500D01* -X19654D01* -X20404Y168250D01* -Y169750D02*Y168250D01* -X19654Y170500D02*X20404Y169750D01* -X18154Y170500D02*X19654D01* -X17404Y169750D02*X18154Y170500D01* -X22206Y169750D02*Y168250D01* -Y169750D02*X22956Y170500D01* -X24456D01* -X25206Y169750D01* -Y168250D01* -X24456Y167500D02*X25206Y168250D01* -X22956Y167500D02*X24456D01* -X22206Y168250D02*X22956Y167500D01* -X27007Y173500D02*Y168250D01* -X27757Y167500D01* -X41750Y173500D02*Y167500D01* -X44000Y173500D02*X44750Y172750D01* -Y168250D01* -X44000Y167500D02*X44750Y168250D01* -X41000Y167500D02*X44000D01* -X41000Y173500D02*X44000D01* -X46551Y172000D02*Y171250D01* -Y169750D02*Y167500D01* -X50303Y170500D02*X51053Y169750D01* -X48803Y170500D02*X50303D01* -X48053Y169750D02*X48803Y170500D01* -X48053Y169750D02*Y168250D01* -X48803Y167500D01* -X51053Y170500D02*Y168250D01* -X51803Y167500D01* -X48803D02*X50303D01* -X51053Y168250D01* -X54354Y169750D02*Y167500D01* -Y169750D02*X55104Y170500D01* -X55854D01* -X56604Y169750D01* -Y167500D01* -Y169750D02*X57354Y170500D01* -X58104D01* -X58854Y169750D01* -Y167500D01* -X53604Y170500D02*X54354Y169750D01* -X60656Y167500D02*X61406D01* -X65907Y168250D02*X66657Y167500D01* -X65907Y172750D02*X66657Y173500D01* -X65907Y172750D02*Y168250D01* -X68459Y173500D02*X69959D01* -X69209D02*Y167500D01* -X68459D02*X69959D01* -X72510Y169750D02*Y167500D01* -Y169750D02*X73260Y170500D01* -X74010D01* -X74760Y169750D01* -Y167500D01* -X71760Y170500D02*X72510Y169750D01* -X77312Y170500D02*X79562D01* -X76562Y169750D02*X77312Y170500D01* -X76562Y169750D02*Y168250D01* -X77312Y167500D01* -X79562D01* -X81363Y173500D02*Y167500D01* -Y169750D02*X82113Y170500D01* -X83613D01* -X84363Y169750D01* -Y167500D01* -X86165Y173500D02*X86915Y172750D01* -Y168250D01* -X86165Y167500D02*X86915Y168250D01* -X95750Y167500D02*X98000D01* -X95000Y168250D02*X95750Y167500D01* -X95000Y172750D02*Y168250D01* -Y172750D02*X95750Y173500D01* -X98000D01* -X99801Y169750D02*Y168250D01* -Y169750D02*X100551Y170500D01* -X102051D01* -X102801Y169750D01* -Y168250D01* -X102051Y167500D02*X102801Y168250D01* -X100551Y167500D02*X102051D01* -X99801Y168250D02*X100551Y167500D01* -X104603Y170500D02*Y168250D01* -X105353Y167500D01* -X106853D01* -X107603Y168250D01* -Y170500D02*Y168250D01* -X110154Y169750D02*Y167500D01* -Y169750D02*X110904Y170500D01* -X111654D01* -X112404Y169750D01* -Y167500D01* -X109404Y170500D02*X110154Y169750D01* -X114956Y173500D02*Y168250D01* -X115706Y167500D01* -X114206Y171250D02*X115706D01* -X130750Y173500D02*Y167500D01* -X130000Y173500D02*X133000D01* -X133750Y172750D01* -Y171250D01* -X133000Y170500D02*X133750Y171250D01* -X130750Y170500D02*X133000D01* -X135551Y173500D02*Y168250D01* -X136301Y167500D01* -X140053Y170500D02*X140803Y169750D01* -X138553Y170500D02*X140053D01* -X137803Y169750D02*X138553Y170500D01* -X137803Y169750D02*Y168250D01* -X138553Y167500D01* -X140803Y170500D02*Y168250D01* -X141553Y167500D01* -X138553D02*X140053D01* -X140803Y168250D01* -X144104Y173500D02*Y168250D01* -X144854Y167500D01* -X143354Y171250D02*X144854D01* -X147106Y167500D02*X149356D01* -X146356Y168250D02*X147106Y167500D01* -X146356Y169750D02*Y168250D01* -Y169750D02*X147106Y170500D01* -X148606D01* -X149356Y169750D01* -X146356Y169000D02*X149356D01* -Y169750D02*Y169000D01* -X154157Y173500D02*Y167500D01* -X153407D02*X154157Y168250D01* -X151907Y167500D02*X153407D01* -X151157Y168250D02*X151907Y167500D01* -X151157Y169750D02*Y168250D01* -Y169750D02*X151907Y170500D01* -X153407D01* -X154157Y169750D01* -X157459Y170500D02*Y169750D01* -Y168250D02*Y167500D01* -X155959Y172750D02*Y172000D01* -Y172750D02*X156709Y173500D01* -X158209D01* -X158959Y172750D01* -Y172000D01* -X157459Y170500D02*X158959Y172000D01* -X0Y188500D02*X3000D01* -X1500D02*Y182500D01* -X4801Y188500D02*Y182500D01* -Y184750D02*X5551Y185500D01* -X7051D01* -X7801Y184750D01* -Y182500D01* -X10353D02*X12603D01* -X9603Y183250D02*X10353Y182500D01* -X9603Y184750D02*Y183250D01* -Y184750D02*X10353Y185500D01* -X11853D01* -X12603Y184750D01* -X9603Y184000D02*X12603D01* -Y184750D02*Y184000D01* -X15154Y184750D02*Y182500D01* -Y184750D02*X15904Y185500D01* -X17404D01* -X14404D02*X15154Y184750D01* -X19956Y182500D02*X22206D01* -X19206Y183250D02*X19956Y182500D01* -X19206Y184750D02*Y183250D01* -Y184750D02*X19956Y185500D01* -X21456D01* -X22206Y184750D01* -X19206Y184000D02*X22206D01* -Y184750D02*Y184000D01* -X28957Y185500D02*X29707Y184750D01* -X27457Y185500D02*X28957D01* -X26707Y184750D02*X27457Y185500D01* -X26707Y184750D02*Y183250D01* -X27457Y182500D01* -X29707Y185500D02*Y183250D01* -X30457Y182500D01* -X27457D02*X28957D01* -X29707Y183250D01* -X33009Y184750D02*Y182500D01* -Y184750D02*X33759Y185500D01* -X35259D01* -X32259D02*X33009Y184750D01* -X37810Y182500D02*X40060D01* -X37060Y183250D02*X37810Y182500D01* -X37060Y184750D02*Y183250D01* -Y184750D02*X37810Y185500D01* -X39310D01* -X40060Y184750D01* -X37060Y184000D02*X40060D01* -Y184750D02*Y184000D01* -X45312Y182500D02*X46812D01* -X46062Y188500D02*Y182500D01* -X44562Y187000D02*X46062Y188500D01* -X54313D02*Y182500D01* -X53563D02*X54313Y183250D01* -X52063Y182500D02*X53563D01* -X51313Y183250D02*X52063Y182500D01* -X51313Y184750D02*Y183250D01* -Y184750D02*X52063Y185500D01* -X53563D01* -X54313Y184750D01* -X56115Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X58366Y187750D02*Y182500D01* -Y187750D02*X59116Y188500D01* -X59866D01* -X57616Y185500D02*X59116D01* -X62118Y187750D02*Y182500D01* -Y187750D02*X62868Y188500D01* -X63618D01* -X61368Y185500D02*X62868D01* -X65869Y182500D02*X68119D01* -X65119Y183250D02*X65869Y182500D01* -X65119Y184750D02*Y183250D01* -Y184750D02*X65869Y185500D01* -X67369D01* -X68119Y184750D01* -X65119Y184000D02*X68119D01* -Y184750D02*Y184000D01* -X70671Y184750D02*Y182500D01* -Y184750D02*X71421Y185500D01* -X72921D01* -X69921D02*X70671Y184750D01* -X75472Y182500D02*X77722D01* -X74722Y183250D02*X75472Y182500D01* -X74722Y184750D02*Y183250D01* -Y184750D02*X75472Y185500D01* -X76972D01* -X77722Y184750D01* -X74722Y184000D02*X77722D01* -Y184750D02*Y184000D01* -X80274Y184750D02*Y182500D01* -Y184750D02*X81024Y185500D01* -X81774D01* -X82524Y184750D01* -Y182500D01* -X79524Y185500D02*X80274Y184750D01* -X85075Y188500D02*Y183250D01* -X85825Y182500D01* -X84325Y186250D02*X85825D01* -X93027Y188500D02*Y182500D01* -X92277D02*X93027Y183250D01* -X90777Y182500D02*X92277D01* -X90027Y183250D02*X90777Y182500D01* -X90027Y184750D02*Y183250D01* -Y184750D02*X90777Y185500D01* -X92277D01* -X93027Y184750D01* -X95578D02*Y182500D01* -Y184750D02*X96328Y185500D01* -X97828D01* -X94828D02*X95578Y184750D01* -X99630Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X101131Y188500D02*Y183250D01* -X101881Y182500D01* -X103383Y188500D02*Y183250D01* -X104133Y182500D01* -X109084D02*X111334D01* -X112084Y183250D01* -X111334Y184000D02*X112084Y183250D01* -X109084Y184000D02*X111334D01* -X108334Y184750D02*X109084Y184000D01* -X108334Y184750D02*X109084Y185500D01* -X111334D01* -X112084Y184750D01* -X108334Y183250D02*X109084Y182500D01* -X113886Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X115387Y185500D02*X118387D01* -X115387Y182500D02*X118387Y185500D01* -X115387Y182500D02*X118387D01* -X120939D02*X123189D01* -X120189Y183250D02*X120939Y182500D01* -X120189Y184750D02*Y183250D01* -Y184750D02*X120939Y185500D01* -X122439D01* -X123189Y184750D01* -X120189Y184000D02*X123189D01* -Y184750D02*Y184000D01* -X125740Y182500D02*X127990D01* -X128740Y183250D01* -X127990Y184000D02*X128740Y183250D01* -X125740Y184000D02*X127990D01* -X124990Y184750D02*X125740Y184000D01* -X124990Y184750D02*X125740Y185500D01* -X127990D01* -X128740Y184750D01* -X124990Y183250D02*X125740Y182500D01* -X133242Y185500D02*Y183250D01* -X133992Y182500D01* -X135492D01* -X136242Y183250D01* -Y185500D02*Y183250D01* -X138793Y182500D02*X141043D01* -X141793Y183250D01* -X141043Y184000D02*X141793Y183250D01* -X138793Y184000D02*X141043D01* -X138043Y184750D02*X138793Y184000D01* -X138043Y184750D02*X138793Y185500D01* -X141043D01* -X141793Y184750D01* -X138043Y183250D02*X138793Y182500D01* -X144345D02*X146595D01* -X143595Y183250D02*X144345Y182500D01* -X143595Y184750D02*Y183250D01* -Y184750D02*X144345Y185500D01* -X145845D01* -X146595Y184750D01* -X143595Y184000D02*X146595D01* -Y184750D02*Y184000D01* -X151396Y188500D02*Y182500D01* -X150646D02*X151396Y183250D01* -X149146Y182500D02*X150646D01* -X148396Y183250D02*X149146Y182500D01* -X148396Y184750D02*Y183250D01* -Y184750D02*X149146Y185500D01* -X150646D01* -X151396Y184750D01* -X155898Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X158149Y184750D02*Y182500D01* -Y184750D02*X158899Y185500D01* -X159649D01* -X160399Y184750D01* -Y182500D01* -X157399Y185500D02*X158149Y184750D01* -X165651Y188500D02*Y183250D01* -X166401Y182500D01* -X164901Y186250D02*X166401D01* -X167902Y188500D02*Y182500D01* -Y184750D02*X168652Y185500D01* -X170152D01* -X170902Y184750D01* -Y182500D01* -X172704Y187000D02*Y186250D01* -Y184750D02*Y182500D01* -X174955D02*X177205D01* -X177955Y183250D01* -X177205Y184000D02*X177955Y183250D01* -X174955Y184000D02*X177205D01* -X174205Y184750D02*X174955Y184000D01* -X174205Y184750D02*X174955Y185500D01* -X177205D01* -X177955Y184750D01* -X174205Y183250D02*X174955Y182500D01* -X182457Y188500D02*Y183250D01* -X183207Y182500D01* -X186958Y185500D02*X187708Y184750D01* -X185458Y185500D02*X186958D01* -X184708Y184750D02*X185458Y185500D01* -X184708Y184750D02*Y183250D01* -X185458Y182500D01* -X187708Y185500D02*Y183250D01* -X188458Y182500D01* -X185458D02*X186958D01* -X187708Y183250D01* -X190260Y185500D02*Y183250D01* -X191010Y182500D01* -X193260Y185500D02*Y181000D01* -X192510Y180250D02*X193260Y181000D01* -X191010Y180250D02*X192510D01* -X190260Y181000D02*X191010Y180250D01* -Y182500D02*X192510D01* -X193260Y183250D01* -X195061Y184750D02*Y183250D01* -Y184750D02*X195811Y185500D01* -X197311D01* -X198061Y184750D01* -Y183250D01* -X197311Y182500D02*X198061Y183250D01* -X195811Y182500D02*X197311D01* -X195061Y183250D02*X195811Y182500D01* -X199863Y185500D02*Y183250D01* -X200613Y182500D01* -X202113D01* -X202863Y183250D01* -Y185500D02*Y183250D01* -X205414Y188500D02*Y183250D01* -X206164Y182500D01* -X204664Y186250D02*X206164D01* -X207666Y181000D02*X209166Y182500D01* -X214417D02*X215917D01* -X215167Y188500D02*Y182500D01* -X213667Y187000D02*X215167Y188500D01* -X220419D02*Y182500D01* -Y184750D02*X221169Y185500D01* -X222669D01* -X223419Y184750D01* -Y182500D01* -X225220Y184750D02*Y183250D01* -Y184750D02*X225970Y185500D01* -X227470D01* -X228220Y184750D01* -Y183250D01* -X227470Y182500D02*X228220Y183250D01* -X225970Y182500D02*X227470D01* -X225220Y183250D02*X225970Y182500D01* -X230022Y188500D02*Y183250D01* -X230772Y182500D01* -X233023D02*X235273D01* -X232273Y183250D02*X233023Y182500D01* -X232273Y184750D02*Y183250D01* -Y184750D02*X233023Y185500D01* -X234523D01* -X235273Y184750D01* -X232273Y184000D02*X235273D01* -Y184750D02*Y184000D01* -X237825Y182500D02*X240075D01* -X240825Y183250D01* -X240075Y184000D02*X240825Y183250D01* -X237825Y184000D02*X240075D01* -X237075Y184750D02*X237825Y184000D01* -X237075Y184750D02*X237825Y185500D01* -X240075D01* -X240825Y184750D01* -X237075Y183250D02*X237825Y182500D01* -X246076Y188500D02*Y183250D01* -X246826Y182500D01* -X245326Y186250D02*X246826D01* -X248328Y184750D02*Y183250D01* -Y184750D02*X249078Y185500D01* -X250578D01* -X251328Y184750D01* -Y183250D01* -X250578Y182500D02*X251328Y183250D01* -X249078Y182500D02*X250578D01* -X248328Y183250D02*X249078Y182500D01* -X253879Y188500D02*Y183250D01* -X254629Y182500D01* -X253129Y186250D02*X254629D01* -X258381Y185500D02*X259131Y184750D01* -X256881Y185500D02*X258381D01* -X256131Y184750D02*X256881Y185500D01* -X256131Y184750D02*Y183250D01* -X256881Y182500D01* -X259131Y185500D02*Y183250D01* -X259881Y182500D01* -X256881D02*X258381D01* -X259131Y183250D01* -X261682Y188500D02*Y183250D01* -X262432Y182500D01* -G54D16*X0Y100000D02*X200000D01* -X0D02*Y0D01* -X200000Y100000D02*Y0D01* -X0D02*X200000D01* -G54D15*Y113500D02*Y107500D01* -Y113500D02*X202250Y111250D01* -X204500Y113500D01* -Y107500D01* -X208551Y110500D02*X209301Y109750D01* -X207051Y110500D02*X208551D01* -X206301Y109750D02*X207051Y110500D01* -X206301Y109750D02*Y108250D01* -X207051Y107500D01* -X209301Y110500D02*Y108250D01* -X210051Y107500D01* -X207051D02*X208551D01* -X209301Y108250D01* -X211853Y110500D02*X214853Y107500D01* -X211853D02*X214853Y110500D01* -X216654Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X218906Y109750D02*Y107500D01* -Y109750D02*X219656Y110500D01* -X220406D01* -X221156Y109750D01* -Y107500D01* -Y109750D02*X221906Y110500D01* -X222656D01* -X223406Y109750D01* -Y107500D01* -X218156Y110500D02*X218906Y109750D01* -X225207Y110500D02*Y108250D01* -X225957Y107500D01* -X227457D01* -X228207Y108250D01* -Y110500D02*Y108250D01* -X230759Y109750D02*Y107500D01* -Y109750D02*X231509Y110500D01* -X232259D01* -X233009Y109750D01* -Y107500D01* -Y109750D02*X233759Y110500D01* -X234509D01* -X235259Y109750D01* -Y107500D01* -X230009Y110500D02*X230759Y109750D01* -X240510Y113500D02*Y107500D01* -X242760Y113500D02*X243510Y112750D01* -Y108250D01* -X242760Y107500D02*X243510Y108250D01* -X239760Y107500D02*X242760D01* -X239760Y113500D02*X242760D01* -X245312Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X247563Y109750D02*Y107500D01* -Y109750D02*X248313Y110500D01* -X249063D01* -X249813Y109750D01* -Y107500D01* -Y109750D02*X250563Y110500D01* -X251313D01* -X252063Y109750D01* -Y107500D01* -X246813Y110500D02*X247563Y109750D01* -X254615Y107500D02*X256865D01* -X253865Y108250D02*X254615Y107500D01* -X253865Y109750D02*Y108250D01* -Y109750D02*X254615Y110500D01* -X256115D01* -X256865Y109750D01* -X253865Y109000D02*X256865D01* -Y109750D02*Y109000D01* -X259416Y109750D02*Y107500D01* -Y109750D02*X260166Y110500D01* -X260916D01* -X261666Y109750D01* -Y107500D01* -X258666Y110500D02*X259416Y109750D01* -X264218Y107500D02*X266468D01* -X267218Y108250D01* -X266468Y109000D02*X267218Y108250D01* -X264218Y109000D02*X266468D01* -X263468Y109750D02*X264218Y109000D01* -X263468Y109750D02*X264218Y110500D01* -X266468D01* -X267218Y109750D01* -X263468Y108250D02*X264218Y107500D01* -X269019Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X270521Y109750D02*Y108250D01* -Y109750D02*X271271Y110500D01* -X272771D01* -X273521Y109750D01* -Y108250D01* -X272771Y107500D02*X273521Y108250D01* -X271271Y107500D02*X272771D01* -X270521Y108250D02*X271271Y107500D01* -X276072Y109750D02*Y107500D01* -Y109750D02*X276822Y110500D01* -X277572D01* -X278322Y109750D01* -Y107500D01* -X275322Y110500D02*X276072Y109750D01* -X280874Y107500D02*X283124D01* -X283874Y108250D01* -X283124Y109000D02*X283874Y108250D01* -X280874Y109000D02*X283124D01* -X280124Y109750D02*X280874Y109000D01* -X280124Y109750D02*X280874Y110500D01* -X283124D01* -X283874Y109750D01* -X280124Y108250D02*X280874Y107500D01* -X285675Y111250D02*X286425D01* -X285675Y109750D02*X286425D01* -X290927Y112750D02*X291677Y113500D01* -X293927D01* -X294677Y112750D01* -Y111250D01* -X290927Y107500D02*X294677Y111250D01* -X290927Y107500D02*X294677D01* -X296478Y108250D02*X297228Y107500D01* -X296478Y112750D02*Y108250D01* -Y112750D02*X297228Y113500D01* -X298728D01* -X299478Y112750D01* -Y108250D01* -X298728Y107500D02*X299478Y108250D01* -X297228Y107500D02*X298728D01* -X296478Y109000D02*X299478Y112000D01* -X301280Y108250D02*X302030Y107500D01* -X301280Y112750D02*Y108250D01* -Y112750D02*X302030Y113500D01* -X303530D01* -X304280Y112750D01* -Y108250D01* -X303530Y107500D02*X304280Y108250D01* -X302030Y107500D02*X303530D01* -X301280Y109000D02*X304280Y112000D01* -X306081Y108250D02*X306831Y107500D01* -X306081Y112750D02*Y108250D01* -Y112750D02*X306831Y113500D01* -X308331D01* -X309081Y112750D01* -Y108250D01* -X308331Y107500D02*X309081Y108250D01* -X306831Y107500D02*X308331D01* -X306081Y109000D02*X309081Y112000D01* -X314333Y109750D02*Y107500D01* -Y109750D02*X315083Y110500D01* -X315833D01* -X316583Y109750D01* -Y107500D01* -Y109750D02*X317333Y110500D01* -X318083D01* -X318833Y109750D01* -Y107500D01* -X313583Y110500D02*X314333Y109750D01* -X320634Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X322136Y113500D02*Y108250D01* -X322886Y107500D01* -X325137D02*X327387D01* -X328137Y108250D01* -X327387Y109000D02*X328137Y108250D01* -X325137Y109000D02*X327387D01* -X324387Y109750D02*X325137Y109000D01* -X324387Y109750D02*X325137Y110500D01* -X327387D01* -X328137Y109750D01* -X324387Y108250D02*X325137Y107500D01* -X332639Y110500D02*Y108250D01* -X333389Y107500D01* -X334139D01* -X334889Y108250D01* -Y110500D02*Y108250D01* -X335639Y107500D01* -X336389D01* -X337139Y108250D01* -Y110500D02*Y108250D01* -X338940Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X343442Y113500D02*Y107500D01* -X342692D02*X343442Y108250D01* -X341192Y107500D02*X342692D01* -X340442Y108250D02*X341192Y107500D01* -X340442Y109750D02*Y108250D01* -Y109750D02*X341192Y110500D01* -X342692D01* -X343442Y109750D01* -X345993Y107500D02*X348243D01* -X345243Y108250D02*X345993Y107500D01* -X345243Y109750D02*Y108250D01* -Y109750D02*X345993Y110500D01* -X347493D01* -X348243Y109750D01* -X345243Y109000D02*X348243D01* -Y109750D02*Y109000D01* -X350045Y106000D02*X351545Y107500D01* -X356796D02*X358296D01* -X357546Y113500D02*Y107500D01* -X356046Y112000D02*X357546Y113500D01* -X360098Y108250D02*X360848Y107500D01* -X360098Y112750D02*Y108250D01* -Y112750D02*X360848Y113500D01* -X362348D01* -X363098Y112750D01* -Y108250D01* -X362348Y107500D02*X363098Y108250D01* -X360848Y107500D02*X362348D01* -X360098Y109000D02*X363098Y112000D01* -X364899Y108250D02*X365649Y107500D01* -X364899Y112750D02*Y108250D01* -Y112750D02*X365649Y113500D01* -X367149D01* -X367899Y112750D01* -Y108250D01* -X367149Y107500D02*X367899Y108250D01* -X365649Y107500D02*X367149D01* -X364899Y109000D02*X367899Y112000D01* -X369701Y108250D02*X370451Y107500D01* -X369701Y112750D02*Y108250D01* -Y112750D02*X370451Y113500D01* -X371951D01* -X372701Y112750D01* -Y108250D01* -X371951Y107500D02*X372701Y108250D01* -X370451Y107500D02*X371951D01* -X369701Y109000D02*X372701Y112000D01* -X377952Y109750D02*Y107500D01* -Y109750D02*X378702Y110500D01* -X379452D01* -X380202Y109750D01* -Y107500D01* -Y109750D02*X380952Y110500D01* -X381702D01* -X382452Y109750D01* -Y107500D01* -X377202Y110500D02*X377952Y109750D01* -X384254Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X385755Y113500D02*Y108250D01* -X386505Y107500D01* -X388757D02*X391007D01* -X391757Y108250D01* -X391007Y109000D02*X391757Y108250D01* -X388757Y109000D02*X391007D01* -X388007Y109750D02*X388757Y109000D01* -X388007Y109750D02*X388757Y110500D01* -X391007D01* -X391757Y109750D01* -X388007Y108250D02*X388757Y107500D01* -X396258Y113500D02*Y107500D01* -Y109750D02*X397008Y110500D01* -X398508D01* -X399258Y109750D01* -Y107500D01* -X401060Y112000D02*Y111250D01* -Y109750D02*Y107500D01* -X404811Y110500D02*X405561Y109750D01* -X403311Y110500D02*X404811D01* -X402561Y109750D02*X403311Y110500D01* -X402561Y109750D02*Y108250D01* -X403311Y107500D01* -X404811D01* -X405561Y108250D01* -X402561Y106000D02*X403311Y105250D01* -X404811D01* -X405561Y106000D01* -Y110500D02*Y106000D01* -X407363Y113500D02*Y107500D01* -Y109750D02*X408113Y110500D01* -X409613D01* -X410363Y109750D01* -Y107500D01* -X0Y-9500D02*X3000D01* -X3750Y-8750D01* -Y-7250D02*Y-8750D01* -X3000Y-6500D02*X3750Y-7250D01* -X750Y-6500D02*X3000D01* -X750Y-3500D02*Y-9500D01* -X0Y-3500D02*X3000D01* -X3750Y-4250D01* -Y-5750D01* -X3000Y-6500D02*X3750Y-5750D01* -X5551Y-7250D02*Y-8750D01* -Y-7250D02*X6301Y-6500D01* -X7801D01* -X8551Y-7250D01* -Y-8750D01* -X7801Y-9500D02*X8551Y-8750D01* -X6301Y-9500D02*X7801D01* -X5551Y-8750D02*X6301Y-9500D01* -X12603Y-6500D02*X13353Y-7250D01* -X11103Y-6500D02*X12603D01* -X10353Y-7250D02*X11103Y-6500D01* -X10353Y-7250D02*Y-8750D01* -X11103Y-9500D01* -X13353Y-6500D02*Y-8750D01* -X14103Y-9500D01* -X11103D02*X12603D01* -X13353Y-8750D01* -X16654Y-7250D02*Y-9500D01* -Y-7250D02*X17404Y-6500D01* -X18904D01* -X15904D02*X16654Y-7250D01* -X23706Y-3500D02*Y-9500D01* -X22956D02*X23706Y-8750D01* -X21456Y-9500D02*X22956D01* -X20706Y-8750D02*X21456Y-9500D01* -X20706Y-7250D02*Y-8750D01* -Y-7250D02*X21456Y-6500D01* -X22956D01* -X23706Y-7250D01* -X28207D02*Y-8750D01* -Y-7250D02*X28957Y-6500D01* -X30457D01* -X31207Y-7250D01* -Y-8750D01* -X30457Y-9500D02*X31207Y-8750D01* -X28957Y-9500D02*X30457D01* -X28207Y-8750D02*X28957Y-9500D01* -X33009Y-6500D02*Y-8750D01* -X33759Y-9500D01* -X35259D01* -X36009Y-8750D01* -Y-6500D02*Y-8750D01* -X38560Y-3500D02*Y-8750D01* -X39310Y-9500D01* -X37810Y-5750D02*X39310D01* -X40812Y-3500D02*Y-8750D01* -X41562Y-9500D01* -X43063Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X45315Y-7250D02*Y-9500D01* -Y-7250D02*X46065Y-6500D01* -X46815D01* -X47565Y-7250D01* -Y-9500D01* -X44565Y-6500D02*X45315Y-7250D01* -X50116Y-9500D02*X52366D01* -X49366Y-8750D02*X50116Y-9500D01* -X49366Y-7250D02*Y-8750D01* -Y-7250D02*X50116Y-6500D01* -X51616D01* -X52366Y-7250D01* -X49366Y-8000D02*X52366D01* -Y-7250D02*Y-8000D01* -X56868Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X59119D02*X61369D01* -X62119Y-8750D01* -X61369Y-8000D02*X62119Y-8750D01* -X59119Y-8000D02*X61369D01* -X58369Y-7250D02*X59119Y-8000D01* -X58369Y-7250D02*X59119Y-6500D01* -X61369D01* -X62119Y-7250D01* -X58369Y-8750D02*X59119Y-9500D01* -X67371Y-3500D02*Y-8750D01* -X68121Y-9500D01* -X66621Y-5750D02*X68121D01* -X69622Y-3500D02*Y-9500D01* -Y-7250D02*X70372Y-6500D01* -X71872D01* -X72622Y-7250D01* -Y-9500D01* -X75174D02*X77424D01* -X74424Y-8750D02*X75174Y-9500D01* -X74424Y-7250D02*Y-8750D01* -Y-7250D02*X75174Y-6500D01* -X76674D01* -X77424Y-7250D01* -X74424Y-8000D02*X77424D01* -Y-7250D02*Y-8000D01* -X82675Y-6500D02*X84925D01* -X81925Y-7250D02*X82675Y-6500D01* -X81925Y-7250D02*Y-8750D01* -X82675Y-9500D01* -X84925D01* -X87477D02*X89727D01* -X86727Y-8750D02*X87477Y-9500D01* -X86727Y-7250D02*Y-8750D01* -Y-7250D02*X87477Y-6500D01* -X88977D01* -X89727Y-7250D01* -X86727Y-8000D02*X89727D01* -Y-7250D02*Y-8000D01* -X92278Y-7250D02*Y-9500D01* -Y-7250D02*X93028Y-6500D01* -X93778D01* -X94528Y-7250D01* -Y-9500D01* -X91528Y-6500D02*X92278Y-7250D01* -X97080Y-3500D02*Y-8750D01* -X97830Y-9500D01* -X96330Y-5750D02*X97830D01* -X100081Y-9500D02*X102331D01* -X99331Y-8750D02*X100081Y-9500D01* -X99331Y-7250D02*Y-8750D01* -Y-7250D02*X100081Y-6500D01* -X101581D01* -X102331Y-7250D01* -X99331Y-8000D02*X102331D01* -Y-7250D02*Y-8000D01* -X104883Y-7250D02*Y-9500D01* -Y-7250D02*X105633Y-6500D01* -X107133D01* -X104133D02*X104883Y-7250D01* -X108934Y-3500D02*Y-8750D01* -X109684Y-9500D01* -X111186Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X113437Y-7250D02*Y-9500D01* -Y-7250D02*X114187Y-6500D01* -X114937D01* -X115687Y-7250D01* -Y-9500D01* -X112687Y-6500D02*X113437Y-7250D01* -X118239Y-9500D02*X120489D01* -X117489Y-8750D02*X118239Y-9500D01* -X117489Y-7250D02*Y-8750D01* -Y-7250D02*X118239Y-6500D01* -X119739D01* -X120489Y-7250D01* -X117489Y-8000D02*X120489D01* -Y-7250D02*Y-8000D01* -X124990Y-7250D02*Y-8750D01* -Y-7250D02*X125740Y-6500D01* -X127240D01* -X127990Y-7250D01* -Y-8750D01* -X127240Y-9500D02*X127990Y-8750D01* -X125740Y-9500D02*X127240D01* -X124990Y-8750D02*X125740Y-9500D01* -X130542Y-4250D02*Y-9500D01* -Y-4250D02*X131292Y-3500D01* -X132042D01* -X129792Y-6500D02*X131292D01* -X136993Y-3500D02*Y-8750D01* -X137743Y-9500D01* -X136243Y-5750D02*X137743D01* -X139245Y-3500D02*Y-9500D01* -Y-7250D02*X139995Y-6500D01* -X141495D01* -X142245Y-7250D01* -Y-9500D01* -X144046Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X146298D02*X148548D01* -X149298Y-8750D01* -X148548Y-8000D02*X149298Y-8750D01* -X146298Y-8000D02*X148548D01* -X145548Y-7250D02*X146298Y-8000D01* -X145548Y-7250D02*X146298Y-6500D01* -X148548D01* -X149298Y-7250D01* -X145548Y-8750D02*X146298Y-9500D01* -X154549D02*X156049D01* -X155299Y-3500D02*Y-9500D01* -X153799Y-5000D02*X155299Y-3500D01* -X157851Y-8750D02*X158601Y-9500D01* -X157851Y-4250D02*Y-8750D01* -Y-4250D02*X158601Y-3500D01* -X160101D01* -X160851Y-4250D01* -Y-8750D01* -X160101Y-9500D02*X160851Y-8750D01* -X158601Y-9500D02*X160101D01* -X157851Y-8000D02*X160851Y-5000D01* -X166102Y-7250D02*Y-9500D01* -Y-7250D02*X166852Y-6500D01* -X167602D01* -X168352Y-7250D01* -Y-9500D01* -Y-7250D02*X169102Y-6500D01* -X169852D01* -X170602Y-7250D01* -Y-9500D01* -X165352Y-6500D02*X166102Y-7250D01* -X172404Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X173905Y-3500D02*Y-8750D01* -X174655Y-9500D01* -X179607Y-7250D02*Y-9500D01* -Y-7250D02*X180357Y-6500D01* -X181857D01* -X178857D02*X179607Y-7250D01* -X184408Y-9500D02*X186658D01* -X183658Y-8750D02*X184408Y-9500D01* -X183658Y-7250D02*Y-8750D01* -Y-7250D02*X184408Y-6500D01* -X185908D01* -X186658Y-7250D01* -X183658Y-8000D02*X186658D01* -Y-7250D02*Y-8000D01* -X189210Y-6500D02*X191460D01* -X188460Y-7250D02*X189210Y-6500D01* -X188460Y-7250D02*Y-8750D01* -X189210Y-9500D01* -X191460D01* -X194011Y-3500D02*Y-8750D01* -X194761Y-9500D01* -X193261Y-5750D02*X194761D01* -X198513Y-6500D02*X199263Y-7250D01* -X197013Y-6500D02*X198513D01* -X196263Y-7250D02*X197013Y-6500D01* -X196263Y-7250D02*Y-8750D01* -X197013Y-9500D01* -X199263Y-6500D02*Y-8750D01* -X200013Y-9500D01* -X197013D02*X198513D01* -X199263Y-8750D01* -X202564Y-7250D02*Y-9500D01* -Y-7250D02*X203314Y-6500D01* -X204064D01* -X204814Y-7250D01* -Y-9500D01* -X201814Y-6500D02*X202564Y-7250D01* -X208866Y-6500D02*X209616Y-7250D01* -X207366Y-6500D02*X208866D01* -X206616Y-7250D02*X207366Y-6500D01* -X206616Y-7250D02*Y-8750D01* -X207366Y-9500D01* -X208866D01* -X209616Y-8750D01* -X206616Y-11000D02*X207366Y-11750D01* -X208866D01* -X209616Y-11000D01* -Y-6500D02*Y-11000D01* -X211417Y-3500D02*Y-8750D01* -X212167Y-9500D01* -X214419D02*X216669D01* -X213669Y-8750D02*X214419Y-9500D01* -X213669Y-7250D02*Y-8750D01* -Y-7250D02*X214419Y-6500D01* -X215919D01* -X216669Y-7250D01* -X213669Y-8000D02*X216669D01* -Y-7250D02*Y-8000D01* -X221170Y-6500D02*X224170D01* -X228672Y-8750D02*X229422Y-9500D01* -X228672Y-4250D02*Y-8750D01* -Y-4250D02*X229422Y-3500D01* -X230922D01* -X231672Y-4250D01* -Y-8750D01* -X230922Y-9500D02*X231672Y-8750D01* -X229422Y-9500D02*X230922D01* -X228672Y-8000D02*X231672Y-5000D01* -X233473Y-11000D02*X234973Y-9500D01* -X236775Y-8750D02*X237525Y-9500D01* -X236775Y-4250D02*Y-8750D01* -Y-4250D02*X237525Y-3500D01* -X239025D01* -X239775Y-4250D01* -Y-8750D01* -X239025Y-9500D02*X239775Y-8750D01* -X237525Y-9500D02*X239025D01* -X236775Y-8000D02*X239775Y-5000D01* -X245026Y-3500D02*Y-8750D01* -X245776Y-9500D01* -X244276Y-5750D02*X245776D01* -X247278Y-7250D02*Y-8750D01* -Y-7250D02*X248028Y-6500D01* -X249528D01* -X250278Y-7250D01* -Y-8750D01* -X249528Y-9500D02*X250278Y-8750D01* -X248028Y-9500D02*X249528D01* -X247278Y-8750D02*X248028Y-9500D01* -X254779Y-4250D02*X255529Y-3500D01* -X257779D01* -X258529Y-4250D01* -Y-5750D01* -X254779Y-9500D02*X258529Y-5750D01* -X254779Y-9500D02*X258529D01* -X260331Y-8750D02*X261081Y-9500D01* -X260331Y-4250D02*Y-8750D01* -Y-4250D02*X261081Y-3500D01* -X262581D01* -X263331Y-4250D01* -Y-8750D01* -X262581Y-9500D02*X263331Y-8750D01* -X261081Y-9500D02*X262581D01* -X260331Y-8000D02*X263331Y-5000D01* -X265132Y-8750D02*X265882Y-9500D01* -X265132Y-4250D02*Y-8750D01* -Y-4250D02*X265882Y-3500D01* -X267382D01* -X268132Y-4250D01* -Y-8750D01* -X267382Y-9500D02*X268132Y-8750D01* -X265882Y-9500D02*X267382D01* -X265132Y-8000D02*X268132Y-5000D01* -X269934Y-8750D02*X270684Y-9500D01* -X269934Y-4250D02*Y-8750D01* -Y-4250D02*X270684Y-3500D01* -X272184D01* -X272934Y-4250D01* -Y-8750D01* -X272184Y-9500D02*X272934Y-8750D01* -X270684Y-9500D02*X272184D01* -X269934Y-8000D02*X272934Y-5000D01* -X274735Y-11000D02*X276235Y-9500D01* -X278787D02*X280287D01* -X279537Y-3500D02*Y-9500D01* -X278037Y-5000D02*X279537Y-3500D01* -X282088Y-8750D02*X282838Y-9500D01* -X282088Y-4250D02*Y-8750D01* -Y-4250D02*X282838Y-3500D01* -X284338D01* -X285088Y-4250D01* -Y-8750D01* -X284338Y-9500D02*X285088Y-8750D01* -X282838Y-9500D02*X284338D01* -X282088Y-8000D02*X285088Y-5000D01* -X286890Y-8750D02*X287640Y-9500D01* -X286890Y-4250D02*Y-8750D01* -Y-4250D02*X287640Y-3500D01* -X289140D01* -X289890Y-4250D01* -Y-8750D01* -X289140Y-9500D02*X289890Y-8750D01* -X287640Y-9500D02*X289140D01* -X286890Y-8000D02*X289890Y-5000D01* -X291691Y-8750D02*X292441Y-9500D01* -X291691Y-4250D02*Y-8750D01* -Y-4250D02*X292441Y-3500D01* -X293941D01* -X294691Y-4250D01* -Y-8750D01* -X293941Y-9500D02*X294691Y-8750D01* -X292441Y-9500D02*X293941D01* -X291691Y-8000D02*X294691Y-5000D01* -X299943Y-7250D02*Y-9500D01* -Y-7250D02*X300693Y-6500D01* -X301443D01* -X302193Y-7250D01* -Y-9500D01* -Y-7250D02*X302943Y-6500D01* -X303693D01* -X304443Y-7250D01* -Y-9500D01* -X299193Y-6500D02*X299943Y-7250D01* -X306244Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X307746Y-3500D02*Y-8750D01* -X308496Y-9500D01* -X310747D02*X312997D01* -X313747Y-8750D01* -X312997Y-8000D02*X313747Y-8750D01* -X310747Y-8000D02*X312997D01* -X309997Y-7250D02*X310747Y-8000D01* -X309997Y-7250D02*X310747Y-6500D01* -X312997D01* -X313747Y-7250D01* -X309997Y-8750D02*X310747Y-9500D01* -X200750Y128500D02*Y122500D01* -X203000Y128500D02*X203750Y127750D01* -Y123250D01* -X203000Y122500D02*X203750Y123250D01* -X200000Y122500D02*X203000D01* -X200000Y128500D02*X203000D01* -X207801Y125500D02*X208551Y124750D01* -X206301Y125500D02*X207801D01* -X205551Y124750D02*X206301Y125500D01* -X205551Y124750D02*Y123250D01* -X206301Y122500D01* -X208551Y125500D02*Y123250D01* -X209301Y122500D01* -X206301D02*X207801D01* -X208551Y123250D01* -X211853Y128500D02*Y123250D01* -X212603Y122500D01* -X211103Y126250D02*X212603D01* -X214854Y122500D02*X217104D01* -X214104Y123250D02*X214854Y122500D01* -X214104Y124750D02*Y123250D01* -Y124750D02*X214854Y125500D01* -X216354D01* -X217104Y124750D01* -X214104Y124000D02*X217104D01* -Y124750D02*Y124000D01* -X218906Y126250D02*X219656D01* -X218906Y124750D02*X219656D01* -X224157Y128500D02*Y122500D01* -X226407Y124750D01* -X228657Y122500D01* -Y128500D02*Y122500D01* -X231209D02*X233459D01* -X230459Y123250D02*X231209Y122500D01* -X230459Y124750D02*Y123250D01* -Y124750D02*X231209Y125500D01* -X232709D01* -X233459Y124750D01* -X230459Y124000D02*X233459D01* -Y124750D02*Y124000D01* -X238260Y128500D02*Y122500D01* -X237510D02*X238260Y123250D01* -X236010Y122500D02*X237510D01* -X235260Y123250D02*X236010Y122500D01* -X235260Y124750D02*Y123250D01* -Y124750D02*X236010Y125500D01* -X237510D01* -X238260Y124750D01* -X242762Y128500D02*X245012D01* -Y123250D01* -X244262Y122500D02*X245012Y123250D01* -X243512Y122500D02*X244262D01* -X242762Y123250D02*X243512Y122500D01* -X246813Y125500D02*Y123250D01* -X247563Y122500D01* -X249063D01* -X249813Y123250D01* -Y125500D02*Y123250D01* -X252365Y124750D02*Y122500D01* -Y124750D02*X253115Y125500D01* -X253865D01* -X254615Y124750D01* -Y122500D01* -X251615Y125500D02*X252365Y124750D01* -X259116Y127750D02*X259866Y128500D01* -X262116D01* -X262866Y127750D01* -Y126250D01* -X259116Y122500D02*X262866Y126250D01* -X259116Y122500D02*X262866D01* -X264668Y125500D02*X267668Y128500D01* -X264668Y125500D02*X268418D01* -X267668Y128500D02*Y122500D01* -X272919Y127750D02*X273669Y128500D01* -X275919D01* -X276669Y127750D01* -Y126250D01* -X272919Y122500D02*X276669Y126250D01* -X272919Y122500D02*X276669D01* -X278471Y127750D02*X279221Y128500D01* -X281471D01* -X282221Y127750D01* -Y126250D01* -X278471Y122500D02*X282221Y126250D01* -X278471Y122500D02*X282221D01* -X284022Y126250D02*X284772D01* -X284022Y124750D02*X284772D01* -X286574Y123250D02*X287324Y122500D01* -X286574Y127750D02*Y123250D01* -Y127750D02*X287324Y128500D01* -X288824D01* -X289574Y127750D01* -Y123250D01* -X288824Y122500D02*X289574Y123250D01* -X287324Y122500D02*X288824D01* -X286574Y124000D02*X289574Y127000D01* -X291375Y128500D02*X294375D01* -X291375D02*Y125500D01* -X292125Y126250D01* -X293625D01* -X294375Y125500D01* -Y123250D01* -X293625Y122500D02*X294375Y123250D01* -X292125Y122500D02*X293625D01* -X291375Y123250D02*X292125Y122500D01* -X296177Y126250D02*X296927D01* -X296177Y124750D02*X296927D01* -X298728Y127750D02*X299478Y128500D01* -X300978D01* -X301728Y127750D01* -Y123250D01* -X300978Y122500D02*X301728Y123250D01* -X299478Y122500D02*X300978D01* -X298728Y123250D02*X299478Y122500D01* -Y125500D02*X301728D01* -X303530Y128500D02*X306530D01* -X303530D02*Y125500D01* -X304280Y126250D01* -X305780D01* -X306530Y125500D01* -Y123250D01* -X305780Y122500D02*X306530Y123250D01* -X304280Y122500D02*X305780D01* -X303530Y123250D02*X304280Y122500D01* -X311031Y127750D02*X311781Y128500D01* -X314031D01* -X314781Y127750D01* -Y126250D01* -X311031Y122500D02*X314781Y126250D01* -X311031Y122500D02*X314781D01* -X316583Y123250D02*X317333Y122500D01* -X316583Y127750D02*Y123250D01* -Y127750D02*X317333Y128500D01* -X318833D01* -X319583Y127750D01* -Y123250D01* -X318833Y122500D02*X319583Y123250D01* -X317333Y122500D02*X318833D01* -X316583Y124000D02*X319583Y127000D01* -X321384Y123250D02*X322134Y122500D01* -X321384Y127750D02*Y123250D01* -Y127750D02*X322134Y128500D01* -X323634D01* -X324384Y127750D01* -Y123250D01* -X323634Y122500D02*X324384Y123250D01* -X322134Y122500D02*X323634D01* -X321384Y124000D02*X324384Y127000D01* -X326186Y122500D02*X329186Y125500D01* -Y127750D02*Y125500D01* -X328436Y128500D02*X329186Y127750D01* -X326936Y128500D02*X328436D01* -X326186Y127750D02*X326936Y128500D01* -X326186Y127750D02*Y126250D01* -X326936Y125500D01* -X329186D01* -X333687Y128500D02*Y123250D01* -X334437Y122500D01* -X335937D01* -X336687Y123250D01* -Y128500D02*Y123250D01* -X338489Y128500D02*X341489D01* -X339989D02*Y122500D01* -X344040D02*X346290D01* -X343290Y123250D02*X344040Y122500D01* -X343290Y127750D02*Y123250D01* -Y127750D02*X344040Y128500D01* -X346290D01* -X200000Y142750D02*Y137500D01* -Y142750D02*X200750Y143500D01* -X203000D01* -X203750Y142750D01* -Y137500D01* -X200000Y140500D02*X203750D01* -X205551D02*Y138250D01* -X206301Y137500D01* -X207801D01* -X208551Y138250D01* -Y140500D02*Y138250D01* -X211103Y143500D02*Y138250D01* -X211853Y137500D01* -X210353Y141250D02*X211853D01* -X213354Y143500D02*Y137500D01* -Y139750D02*X214104Y140500D01* -X215604D01* -X216354Y139750D01* -Y137500D01* -X218156Y139750D02*Y138250D01* -Y139750D02*X218906Y140500D01* -X220406D01* -X221156Y139750D01* -Y138250D01* -X220406Y137500D02*X221156Y138250D01* -X218906Y137500D02*X220406D01* -X218156Y138250D02*X218906Y137500D01* -X223707Y139750D02*Y137500D01* -Y139750D02*X224457Y140500D01* -X225957D01* -X222957D02*X223707Y139750D01* -X227759Y141250D02*X228509D01* -X227759Y139750D02*X228509D01* -X233760Y143500D02*Y137500D01* -X236010Y143500D02*X236760Y142750D01* -Y138250D01* -X236010Y137500D02*X236760Y138250D01* -X233010Y137500D02*X236010D01* -X233010Y143500D02*X236010D01* -X240812Y140500D02*X241562Y139750D01* -X239312Y140500D02*X240812D01* -X238562Y139750D02*X239312Y140500D01* -X238562Y139750D02*Y138250D01* -X239312Y137500D01* -X241562Y140500D02*Y138250D01* -X242312Y137500D01* -X239312D02*X240812D01* -X241562Y138250D01* -X244863Y139750D02*Y137500D01* -Y139750D02*X245613Y140500D01* -X246363D01* -X247113Y139750D01* -Y137500D01* -X244113Y140500D02*X244863Y139750D01* -X251615Y143500D02*Y137500D01* -Y143500D02*X253865Y141250D01* -X256115Y143500D01* -Y137500D01* -X258666Y140500D02*X260916D01* -X257916Y139750D02*X258666Y140500D01* -X257916Y139750D02*Y138250D01* -X258666Y137500D01* -X260916D01* -X262718Y143500D02*Y137500D01* -Y143500D02*X264968Y141250D01* -X267218Y143500D01* -Y137500D01* -X271269Y140500D02*X272019Y139750D01* -X269769Y140500D02*X271269D01* -X269019Y139750D02*X269769Y140500D01* -X269019Y139750D02*Y138250D01* -X269769Y137500D01* -X272019Y140500D02*Y138250D01* -X272769Y137500D01* -X269769D02*X271269D01* -X272019Y138250D01* -X274571Y143500D02*Y137500D01* -Y139750D02*X275321Y140500D01* -X276821D01* -X277571Y139750D01* -Y137500D01* -X279372Y142000D02*Y141250D01* -Y139750D02*Y137500D01* -X280874Y143500D02*Y138250D01* -X281624Y137500D01* -X283125Y143500D02*Y138250D01* -X283875Y137500D01* -X200000Y158500D02*X203000D01* -X201500D02*Y152500D01* -X204801Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X207053Y158500D02*Y153250D01* -X207803Y152500D01* -X206303Y156250D02*X207803D01* -X209304Y158500D02*Y153250D01* -X210054Y152500D01* -X212306D02*X214556D01* -X211556Y153250D02*X212306Y152500D01* -X211556Y154750D02*Y153250D01* -Y154750D02*X212306Y155500D01* -X213806D01* -X214556Y154750D01* -X211556Y154000D02*X214556D01* -Y154750D02*Y154000D01* -X216357Y156250D02*X217107D01* -X216357Y154750D02*X217107D01* -X221609Y152500D02*X224609D01* -X225359Y153250D01* -Y154750D02*Y153250D01* -X224609Y155500D02*X225359Y154750D01* -X222359Y155500D02*X224609D01* -X222359Y158500D02*Y152500D01* -X221609Y158500D02*X224609D01* -X225359Y157750D01* -Y156250D01* -X224609Y155500D02*X225359Y156250D01* -X229410Y155500D02*X230160Y154750D01* -X227910Y155500D02*X229410D01* -X227160Y154750D02*X227910Y155500D01* -X227160Y154750D02*Y153250D01* -X227910Y152500D01* -X230160Y155500D02*Y153250D01* -X230910Y152500D01* -X227910D02*X229410D01* -X230160Y153250D01* -X233462Y152500D02*X235712D01* -X236462Y153250D01* -X235712Y154000D02*X236462Y153250D01* -X233462Y154000D02*X235712D01* -X232712Y154750D02*X233462Y154000D01* -X232712Y154750D02*X233462Y155500D01* -X235712D01* -X236462Y154750D01* -X232712Y153250D02*X233462Y152500D01* -X238263Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X240515Y155500D02*X242765D01* -X239765Y154750D02*X240515Y155500D01* -X239765Y154750D02*Y153250D01* -X240515Y152500D01* -X242765D01* -X250266Y158500D02*X251016Y157750D01* -X248016Y158500D02*X250266D01* -X247266Y157750D02*X248016Y158500D01* -X247266Y157750D02*Y156250D01* -X248016Y155500D01* -X250266D01* -X251016Y154750D01* -Y153250D01* -X250266Y152500D02*X251016Y153250D01* -X248016Y152500D02*X250266D01* -X247266Y153250D02*X248016Y152500D01* -X252818Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X255069Y154750D02*Y152500D01* -Y154750D02*X255819Y155500D01* -X256569D01* -X257319Y154750D01* -Y152500D01* -X254319Y155500D02*X255069Y154750D01* -X261371Y155500D02*X262121Y154750D01* -X259871Y155500D02*X261371D01* -X259121Y154750D02*X259871Y155500D01* -X259121Y154750D02*Y153250D01* -X259871Y152500D01* -X261371D01* -X262121Y153250D01* -X259121Y151000D02*X259871Y150250D01* -X261371D01* -X262121Y151000D01* -Y155500D02*Y151000D01* -X263922Y158500D02*Y153250D01* -X264672Y152500D01* -X266924D02*X269174D01* -X266174Y153250D02*X266924Y152500D01* -X266174Y154750D02*Y153250D01* -Y154750D02*X266924Y155500D01* -X268424D01* -X269174Y154750D01* -X266174Y154000D02*X269174D01* -Y154750D02*Y154000D01* -X273675Y158500D02*X276675D01* -X275175D02*Y152500D01* -X279227Y154750D02*Y152500D01* -Y154750D02*X279977Y155500D01* -X281477D01* -X278477D02*X279227Y154750D01* -X285528Y155500D02*X286278Y154750D01* -X284028Y155500D02*X285528D01* -X283278Y154750D02*X284028Y155500D01* -X283278Y154750D02*Y153250D01* -X284028Y152500D01* -X286278Y155500D02*Y153250D01* -X287028Y152500D01* -X284028D02*X285528D01* -X286278Y153250D01* -X289580Y155500D02*X291830D01* -X288830Y154750D02*X289580Y155500D01* -X288830Y154750D02*Y153250D01* -X289580Y152500D01* -X291830D01* -X294381D02*X296631D01* -X293631Y153250D02*X294381Y152500D01* -X293631Y154750D02*Y153250D01* -Y154750D02*X294381Y155500D01* -X295881D01* -X296631Y154750D01* -X293631Y154000D02*X296631D01* -Y154750D02*Y154000D01* -X301133Y158500D02*X304133D01* -X304883Y157750D01* -Y156250D01* -X304133Y155500D02*X304883Y156250D01* -X301883Y155500D02*X304133D01* -X301883Y158500D02*Y152500D01* -Y155500D02*X304883Y152500D01* -X309684Y158500D02*X310434Y157750D01* -X307434Y158500D02*X309684D01* -X306684Y157750D02*X307434Y158500D01* -X306684Y157750D02*Y156250D01* -X307434Y155500D01* -X309684D01* -X310434Y154750D01* -Y153250D01* -X309684Y152500D02*X310434Y153250D01* -X307434Y152500D02*X309684D01* -X306684Y153250D02*X307434Y152500D01* -X312236Y157750D02*X312986Y158500D01* -X315236D01* -X315986Y157750D01* -Y156250D01* -X312236Y152500D02*X315986Y156250D01* -X312236Y152500D02*X315986D01* -X317787D02*X321537Y156250D01* -Y158500D02*Y156250D01* -X317787Y158500D02*X321537D01* -X323339Y155500D02*X326339Y158500D01* -X323339Y155500D02*X327089D01* -X326339Y158500D02*Y152500D01* -X328890Y155500D02*X331890D01* -X333692Y158500D02*Y157750D01* -X337442Y154000D01* -Y152500D01* -X333692Y154000D02*Y152500D01* -Y154000D02*X337442Y157750D01* -Y158500D02*Y157750D01* -X341943Y158500D02*X344943D01* -X343443D02*Y152500D01* -X347495D02*X349745D01* -X346745Y153250D02*X347495Y152500D01* -X346745Y154750D02*Y153250D01* -Y154750D02*X347495Y155500D01* -X348995D01* -X349745Y154750D01* -X346745Y154000D02*X349745D01* -Y154750D02*Y154000D01* -X352296Y152500D02*X354546D01* -X355296Y153250D01* -X354546Y154000D02*X355296Y153250D01* -X352296Y154000D02*X354546D01* -X351546Y154750D02*X352296Y154000D01* -X351546Y154750D02*X352296Y155500D01* -X354546D01* -X355296Y154750D01* -X351546Y153250D02*X352296Y152500D01* -X357848Y158500D02*Y153250D01* -X358598Y152500D01* -X357098Y156250D02*X358598D01* -X362799Y155500D02*X365799D01* -X370301Y158500D02*Y152500D01* -Y158500D02*X373301D01* -X370301Y155500D02*X372551D01* -X377352D02*X378102Y154750D01* -X375852Y155500D02*X377352D01* -X375102Y154750D02*X375852Y155500D01* -X375102Y154750D02*Y153250D01* -X375852Y152500D01* -X378102Y155500D02*Y153250D01* -X378852Y152500D01* -X375852D02*X377352D01* -X378102Y153250D01* -X380654Y158500D02*Y152500D01* -Y153250D02*X381404Y152500D01* -X382904D01* -X383654Y153250D01* -Y154750D02*Y153250D01* -X382904Y155500D02*X383654Y154750D01* -X381404Y155500D02*X382904D01* -X380654Y154750D02*X381404Y155500D01* -X386205Y154750D02*Y152500D01* -Y154750D02*X386955Y155500D01* -X388455D01* -X385455D02*X386205Y154750D01* -X390257Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X392508Y155500D02*X394758D01* -X391758Y154750D02*X392508Y155500D01* -X391758Y154750D02*Y153250D01* -X392508Y152500D01* -X394758D01* -X398810Y155500D02*X399560Y154750D01* -X397310Y155500D02*X398810D01* -X396560Y154750D02*X397310Y155500D01* -X396560Y154750D02*Y153250D01* -X397310Y152500D01* -X399560Y155500D02*Y153250D01* -X400310Y152500D01* -X397310D02*X398810D01* -X399560Y153250D01* -X402861Y158500D02*Y153250D01* -X403611Y152500D01* -X402111Y156250D02*X403611D01* -X405113Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X406614Y154750D02*Y153250D01* -Y154750D02*X407364Y155500D01* -X408864D01* -X409614Y154750D01* -Y153250D01* -X408864Y152500D02*X409614Y153250D01* -X407364Y152500D02*X408864D01* -X406614Y153250D02*X407364Y152500D01* -X412166Y154750D02*Y152500D01* -Y154750D02*X412916Y155500D01* -X413666D01* -X414416Y154750D01* -Y152500D01* -X411416Y155500D02*X412166Y154750D01* -X419667Y158500D02*Y152500D01* -X421917Y158500D02*X422667Y157750D01* -Y153250D01* -X421917Y152500D02*X422667Y153250D01* -X418917Y152500D02*X421917D01* -X418917Y158500D02*X421917D01* -X425219Y154750D02*Y152500D01* -Y154750D02*X425969Y155500D01* -X427469D01* -X424469D02*X425219Y154750D01* -X431520Y155500D02*X432270Y154750D01* -X430020Y155500D02*X431520D01* -X429270Y154750D02*X430020Y155500D01* -X429270Y154750D02*Y153250D01* -X430020Y152500D01* -X432270Y155500D02*Y153250D01* -X433020Y152500D01* -X430020D02*X431520D01* -X432270Y153250D01* -X434822Y155500D02*Y153250D01* -X435572Y152500D01* -X436322D01* -X437072Y153250D01* -Y155500D02*Y153250D01* -X437822Y152500D01* -X438572D01* -X439322Y153250D01* -Y155500D02*Y153250D01* -X441123Y157000D02*Y156250D01* -Y154750D02*Y152500D01* -X443375Y154750D02*Y152500D01* -Y154750D02*X444125Y155500D01* -X444875D01* -X445625Y154750D01* -Y152500D01* -X442625Y155500D02*X443375Y154750D01* -X449676Y155500D02*X450426Y154750D01* -X448176Y155500D02*X449676D01* -X447426Y154750D02*X448176Y155500D01* -X447426Y154750D02*Y153250D01* -X448176Y152500D01* -X449676D01* -X450426Y153250D01* -X447426Y151000D02*X448176Y150250D01* -X449676D01* -X450426Y151000D01* -Y155500D02*Y151000D01* -M02* Index: trunk/tests/orig/golden/hid_gerber3/arcs.group5.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber3/arcs.group5.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber3/arcs.group5.gbr (nonexistent) @@ -1,28 +0,0 @@ -G04 start of page 3 for group 1 idx 1 * -G04 Title: (unknown), ground * -G04 Creator: pcb 1.99z * -G04 CreationDate: Fri Jun 17 03:18:51 2011 UTC * -G04 For: apoelstra * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 3000000 2000000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNGROUP1*% -%ADD22C,0.6500*% -%ADD21C,0.7500*% -%ADD20C,1.0000*% -%ADD19C,0.5000*% -%ADD18C,0.2500*% -%ADD17C,0.1000*% -G54D17*X1497000Y1791000D02*G75*G03X2430000Y858000I933000J0D01*G01* -G54D18*X1861000Y1776000D02*G75*G02X2415000Y1222000I0J-554000D01*G01* -G54D19*X1845000Y1608000D02*G75*G02X2203000Y1250000I0J-358000D01*G01* -G54D20*X1845000Y1455000D02*G75*G02X2029000Y1271000I0J-184000D01*G01* -G54D21*X600000Y450000D03* -G54D22*Y290000D03* -G54D20*X450000Y600000D03* -X600000D03* -G54D22*X450000Y290000D03* -G54D21*Y450000D03* -G54D19*G54D18*G54D19*G54D18*G54D19*M02* Index: trunk/tests/orig/golden/hid_gerber3/arcs.top.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber3/arcs.top.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber3/arcs.top.gbr (nonexistent) @@ -1,28 +0,0 @@ -G04 start of page 2 for group 0 idx 0 * -G04 Title: (unknown), top * -G04 Creator: pcb 1.99z * -G04 CreationDate: Fri Jun 17 03:18:51 2011 UTC * -G04 For: apoelstra * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 3000000 2000000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNTOP*% -%ADD16C,0.2500*% -%ADD15C,0.5000*% -%ADD14C,1.0000*% -%ADD13C,0.6500*% -%ADD12C,0.7500*% -%ADD11C,0.0100*% -G54D11*X1266000Y1791000D02*G75*G02X775000Y1300000I-491000J0D01*G01* -X772000Y1303000D02*G75*G03X286000Y817000I0J-486000D01*G01* -X285999D02*G75*G03X772000Y1303000I0J486000D01*G01* -X775000Y1300000D02*G75*G02X1266000Y1791000I491000J0D01*G01* -G54D12*X600000Y450000D03* -G54D13*Y290000D03* -G54D14*X450000Y600000D03* -X600000D03* -G54D13*X450000Y290000D03* -G54D12*Y450000D03* -G54D15*G54D16*G54D15*G54D16*G54D15*M02* Index: trunk/tests/orig/golden/hid_gerber3/arcs.bottom.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber3/arcs.bottom.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber3/arcs.bottom.gbr (nonexistent) @@ -1,23 +0,0 @@ -G04 start of page 5 for group 5 idx 5 * -G04 Title: (unknown), bottom * -G04 Creator: pcb 1.99z * -G04 CreationDate: Fri Jun 17 03:18:51 2011 UTC * -G04 For: apoelstra * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 3000000 2000000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNBOTTOM*% -%ADD32C,0.2500*% -%ADD31C,0.5000*% -%ADD30C,1.0000*% -%ADD29C,0.6500*% -%ADD28C,0.7500*% -G54D28*X600000Y450000D03* -G54D29*Y290000D03* -G54D30*X450000Y600000D03* -X600000D03* -G54D29*X450000Y290000D03* -G54D28*Y450000D03* -G54D31*G54D32*G54D31*G54D32*G54D31*M02* Index: trunk/tests/orig/golden/hid_gerber3/arcs.plated-drill.cnc =================================================================== --- trunk/tests/orig/golden/hid_gerber3/arcs.plated-drill.cnc (revision 33432) +++ trunk/tests/orig/golden/hid_gerber3/arcs.plated-drill.cnc (nonexistent) @@ -1,14 +0,0 @@ -M48 -INCH -T37C0.250 -T36C0.500 -% -T37 -X060000Y029000 -X045000Y029000 -T36 -X060000Y045000 -X045000Y060000 -X060000Y060000 -X045000Y045000 -M30 Index: trunk/tests/orig/golden/hid_gerber3/arcs.fab.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber3/arcs.fab.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber3/arcs.fab.gbr (nonexistent) @@ -1,2025 +0,0 @@ -G04 start of page 7 for group -3984 idx -3984 * -G04 Title: (unknown), fab * -G04 Creator: pcb 1.99z * -G04 CreationDate: Fri Jun 17 03:18:51 2011 UTC * -G04 For: apoelstra * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 3000000 2000000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNFAB*% -%ADD37C,0.0100*% -%ADD36C,0.0060*% -%ADD35C,0.0080*% -G54D35*X600000Y451600D02*Y448400D01* -X598400Y450000D02*X601600D01* -X450000Y601600D02*Y598400D01* -X448400Y600000D02*X451600D01* -X600000Y601600D02*Y598400D01* -X598400Y600000D02*X601600D01* -X450000Y451600D02*Y448400D01* -X448400Y450000D02*X451600D01* -X15000Y2042850D02*Y2039650D01* -X13400Y2041250D02*X16600D01* -G54D36*X135000Y2043500D02*Y2042750D01* -X136500Y2041250D01* -X138000Y2042750D01* -Y2043500D02*Y2042750D01* -X136500Y2041250D02*Y2037500D01* -X139801Y2040500D02*X142051D01* -X139801Y2037500D02*X142801D01* -X139801Y2043500D02*Y2037500D01* -Y2043500D02*X142801D01* -X147603D02*X148353Y2042750D01* -X145353Y2043500D02*X147603D01* -X144603Y2042750D02*X145353Y2043500D01* -X144603Y2042750D02*Y2041250D01* -X145353Y2040500D01* -X147603D01* -X148353Y2039750D01* -Y2038250D01* -X147603Y2037500D02*X148353Y2038250D01* -X145353Y2037500D02*X147603D01* -X144603Y2038250D02*X145353Y2037500D01* -X135000Y2034249D02*X150154D01* -X98000Y2040500D02*X101000Y2043500D01* -X98000Y2040500D02*X101750D01* -X101000Y2043500D02*Y2037500D01* -X98000Y2034249D02*X103551D01* -X45000Y2038250D02*X45750Y2037500D01* -X45000Y2042750D02*Y2038250D01* -Y2042750D02*X45750Y2043500D01* -X47250D01* -X48000Y2042750D01* -Y2038250D01* -X47250Y2037500D02*X48000Y2038250D01* -X45750Y2037500D02*X47250D01* -X45000Y2039000D02*X48000Y2042000D01* -X49801Y2037500D02*X50551D01* -X52353Y2043500D02*X55353D01* -X52353D02*Y2040500D01* -X53103Y2041250D01* -X54603D01* -X55353Y2040500D01* -Y2038250D01* -X54603Y2037500D02*X55353Y2038250D01* -X53103Y2037500D02*X54603D01* -X52353Y2038250D02*X53103Y2037500D01* -X57154Y2038250D02*X57904Y2037500D01* -X57154Y2042750D02*Y2038250D01* -Y2042750D02*X57904Y2043500D01* -X59404D01* -X60154Y2042750D01* -Y2038250D01* -X59404Y2037500D02*X60154Y2038250D01* -X57904Y2037500D02*X59404D01* -X57154Y2039000D02*X60154Y2042000D01* -X61956Y2038250D02*X62706Y2037500D01* -X61956Y2042750D02*Y2038250D01* -Y2042750D02*X62706Y2043500D01* -X64206D01* -X64956Y2042750D01* -Y2038250D01* -X64206Y2037500D02*X64956Y2038250D01* -X62706Y2037500D02*X64206D01* -X61956Y2039000D02*X64956Y2042000D01* -X45000Y2034249D02*X66757D01* -X600000Y290000D02*Y288400D01* -Y290000D02*X601386Y290800D01* -X600000Y290000D02*X598614Y290800D01* -X450000Y290000D02*Y288400D01* -Y290000D02*X451386Y290800D01* -X450000Y290000D02*X448614Y290800D01* -X15000Y2056250D02*Y2054650D01* -Y2056250D02*X16386Y2057050D01* -X15000Y2056250D02*X13614Y2057050D01* -X135000Y2058500D02*Y2057750D01* -X136500Y2056250D01* -X138000Y2057750D01* -Y2058500D02*Y2057750D01* -X136500Y2056250D02*Y2052500D01* -X139801Y2055500D02*X142051D01* -X139801Y2052500D02*X142801D01* -X139801Y2058500D02*Y2052500D01* -Y2058500D02*X142801D01* -X147603D02*X148353Y2057750D01* -X145353Y2058500D02*X147603D01* -X144603Y2057750D02*X145353Y2058500D01* -X144603Y2057750D02*Y2056250D01* -X145353Y2055500D01* -X147603D01* -X148353Y2054750D01* -Y2053250D01* -X147603Y2052500D02*X148353Y2053250D01* -X145353Y2052500D02*X147603D01* -X144603Y2053250D02*X145353Y2052500D01* -X135000Y2049249D02*X150154D01* -X98000Y2057750D02*X98750Y2058500D01* -X101000D01* -X101750Y2057750D01* -Y2056250D01* -X98000Y2052500D02*X101750Y2056250D01* -X98000Y2052500D02*X101750D01* -X98000Y2049249D02*X103551D01* -X45000Y2053250D02*X45750Y2052500D01* -X45000Y2057750D02*Y2053250D01* -Y2057750D02*X45750Y2058500D01* -X47250D01* -X48000Y2057750D01* -Y2053250D01* -X47250Y2052500D02*X48000Y2053250D01* -X45750Y2052500D02*X47250D01* -X45000Y2054000D02*X48000Y2057000D01* -X49801Y2052500D02*X50551D01* -X52353Y2057750D02*X53103Y2058500D01* -X55353D01* -X56103Y2057750D01* -Y2056250D01* -X52353Y2052500D02*X56103Y2056250D01* -X52353Y2052500D02*X56103D01* -X57904Y2058500D02*X60904D01* -X57904D02*Y2055500D01* -X58654Y2056250D01* -X60154D01* -X60904Y2055500D01* -Y2053250D01* -X60154Y2052500D02*X60904Y2053250D01* -X58654Y2052500D02*X60154D01* -X57904Y2053250D02*X58654Y2052500D01* -X62706Y2053250D02*X63456Y2052500D01* -X62706Y2057750D02*Y2053250D01* -Y2057750D02*X63456Y2058500D01* -X64956D01* -X65706Y2057750D01* -Y2053250D01* -X64956Y2052500D02*X65706Y2053250D01* -X63456Y2052500D02*X64956D01* -X62706Y2054000D02*X65706Y2057000D01* -X45000Y2049249D02*X67507D01* -X3000Y2073500D02*X3750Y2072750D01* -X750Y2073500D02*X3000D01* -X0Y2072750D02*X750Y2073500D01* -X0Y2072750D02*Y2071250D01* -X750Y2070500D01* -X3000D01* -X3750Y2069750D01* -Y2068250D01* -X3000Y2067500D02*X3750Y2068250D01* -X750Y2067500D02*X3000D01* -X0Y2068250D02*X750Y2067500D01* -X5551Y2070500D02*Y2068250D01* -X6301Y2067500D01* -X8551Y2070500D02*Y2066000D01* -X7801Y2065250D02*X8551Y2066000D01* -X6301Y2065250D02*X7801D01* -X5551Y2066000D02*X6301Y2065250D01* -Y2067500D02*X7801D01* -X8551Y2068250D01* -X11103Y2069750D02*Y2067500D01* -Y2069750D02*X11853Y2070500D01* -X12603D01* -X13353Y2069750D01* -Y2067500D01* -Y2069750D02*X14103Y2070500D01* -X14853D01* -X15603Y2069750D01* -Y2067500D01* -X10353Y2070500D02*X11103Y2069750D01* -X17404Y2073500D02*Y2067500D01* -Y2068250D02*X18154Y2067500D01* -X19654D01* -X20404Y2068250D01* -Y2069750D02*Y2068250D01* -X19654Y2070500D02*X20404Y2069750D01* -X18154Y2070500D02*X19654D01* -X17404Y2069750D02*X18154Y2070500D01* -X22206Y2069750D02*Y2068250D01* -Y2069750D02*X22956Y2070500D01* -X24456D01* -X25206Y2069750D01* -Y2068250D01* -X24456Y2067500D02*X25206Y2068250D01* -X22956Y2067500D02*X24456D01* -X22206Y2068250D02*X22956Y2067500D01* -X27007Y2073500D02*Y2068250D01* -X27757Y2067500D01* -X41750Y2073500D02*Y2067500D01* -X44000Y2073500D02*X44750Y2072750D01* -Y2068250D01* -X44000Y2067500D02*X44750Y2068250D01* -X41000Y2067500D02*X44000D01* -X41000Y2073500D02*X44000D01* -X46551Y2072000D02*Y2071250D01* -Y2069750D02*Y2067500D01* -X50303Y2070500D02*X51053Y2069750D01* -X48803Y2070500D02*X50303D01* -X48053Y2069750D02*X48803Y2070500D01* -X48053Y2069750D02*Y2068250D01* -X48803Y2067500D01* -X51053Y2070500D02*Y2068250D01* -X51803Y2067500D01* -X48803D02*X50303D01* -X51053Y2068250D01* -X54354Y2069750D02*Y2067500D01* -Y2069750D02*X55104Y2070500D01* -X55854D01* -X56604Y2069750D01* -Y2067500D01* -Y2069750D02*X57354Y2070500D01* -X58104D01* -X58854Y2069750D01* -Y2067500D01* -X53604Y2070500D02*X54354Y2069750D01* -X60656Y2067500D02*X61406D01* -X65907Y2068250D02*X66657Y2067500D01* -X65907Y2072750D02*X66657Y2073500D01* -X65907Y2072750D02*Y2068250D01* -X68459Y2073500D02*X69959D01* -X69209D02*Y2067500D01* -X68459D02*X69959D01* -X72510Y2069750D02*Y2067500D01* -Y2069750D02*X73260Y2070500D01* -X74010D01* -X74760Y2069750D01* -Y2067500D01* -X71760Y2070500D02*X72510Y2069750D01* -X77312Y2070500D02*X79562D01* -X76562Y2069750D02*X77312Y2070500D01* -X76562Y2069750D02*Y2068250D01* -X77312Y2067500D01* -X79562D01* -X81363Y2073500D02*Y2067500D01* -Y2069750D02*X82113Y2070500D01* -X83613D01* -X84363Y2069750D01* -Y2067500D01* -X86165Y2073500D02*X86915Y2072750D01* -Y2068250D01* -X86165Y2067500D02*X86915Y2068250D01* -X95750Y2067500D02*X98000D01* -X95000Y2068250D02*X95750Y2067500D01* -X95000Y2072750D02*Y2068250D01* -Y2072750D02*X95750Y2073500D01* -X98000D01* -X99801Y2069750D02*Y2068250D01* -Y2069750D02*X100551Y2070500D01* -X102051D01* -X102801Y2069750D01* -Y2068250D01* -X102051Y2067500D02*X102801Y2068250D01* -X100551Y2067500D02*X102051D01* -X99801Y2068250D02*X100551Y2067500D01* -X104603Y2070500D02*Y2068250D01* -X105353Y2067500D01* -X106853D01* -X107603Y2068250D01* -Y2070500D02*Y2068250D01* -X110154Y2069750D02*Y2067500D01* -Y2069750D02*X110904Y2070500D01* -X111654D01* -X112404Y2069750D01* -Y2067500D01* -X109404Y2070500D02*X110154Y2069750D01* -X114956Y2073500D02*Y2068250D01* -X115706Y2067500D01* -X114206Y2071250D02*X115706D01* -X130750Y2073500D02*Y2067500D01* -X130000Y2073500D02*X133000D01* -X133750Y2072750D01* -Y2071250D01* -X133000Y2070500D02*X133750Y2071250D01* -X130750Y2070500D02*X133000D01* -X135551Y2073500D02*Y2068250D01* -X136301Y2067500D01* -X140053Y2070500D02*X140803Y2069750D01* -X138553Y2070500D02*X140053D01* -X137803Y2069750D02*X138553Y2070500D01* -X137803Y2069750D02*Y2068250D01* -X138553Y2067500D01* -X140803Y2070500D02*Y2068250D01* -X141553Y2067500D01* -X138553D02*X140053D01* -X140803Y2068250D01* -X144104Y2073500D02*Y2068250D01* -X144854Y2067500D01* -X143354Y2071250D02*X144854D01* -X147106Y2067500D02*X149356D01* -X146356Y2068250D02*X147106Y2067500D01* -X146356Y2069750D02*Y2068250D01* -Y2069750D02*X147106Y2070500D01* -X148606D01* -X149356Y2069750D01* -X146356Y2069000D02*X149356D01* -Y2069750D02*Y2069000D01* -X154157Y2073500D02*Y2067500D01* -X153407D02*X154157Y2068250D01* -X151907Y2067500D02*X153407D01* -X151157Y2068250D02*X151907Y2067500D01* -X151157Y2069750D02*Y2068250D01* -Y2069750D02*X151907Y2070500D01* -X153407D01* -X154157Y2069750D01* -X157459Y2070500D02*Y2069750D01* -Y2068250D02*Y2067500D01* -X155959Y2072750D02*Y2072000D01* -Y2072750D02*X156709Y2073500D01* -X158209D01* -X158959Y2072750D01* -Y2072000D01* -X157459Y2070500D02*X158959Y2072000D01* -X0Y2088500D02*X3000D01* -X1500D02*Y2082500D01* -X4801Y2088500D02*Y2082500D01* -Y2084750D02*X5551Y2085500D01* -X7051D01* -X7801Y2084750D01* -Y2082500D01* -X10353D02*X12603D01* -X9603Y2083250D02*X10353Y2082500D01* -X9603Y2084750D02*Y2083250D01* -Y2084750D02*X10353Y2085500D01* -X11853D01* -X12603Y2084750D01* -X9603Y2084000D02*X12603D01* -Y2084750D02*Y2084000D01* -X15154Y2084750D02*Y2082500D01* -Y2084750D02*X15904Y2085500D01* -X17404D01* -X14404D02*X15154Y2084750D01* -X19956Y2082500D02*X22206D01* -X19206Y2083250D02*X19956Y2082500D01* -X19206Y2084750D02*Y2083250D01* -Y2084750D02*X19956Y2085500D01* -X21456D01* -X22206Y2084750D01* -X19206Y2084000D02*X22206D01* -Y2084750D02*Y2084000D01* -X28957Y2085500D02*X29707Y2084750D01* -X27457Y2085500D02*X28957D01* -X26707Y2084750D02*X27457Y2085500D01* -X26707Y2084750D02*Y2083250D01* -X27457Y2082500D01* -X29707Y2085500D02*Y2083250D01* -X30457Y2082500D01* -X27457D02*X28957D01* -X29707Y2083250D01* -X33009Y2084750D02*Y2082500D01* -Y2084750D02*X33759Y2085500D01* -X35259D01* -X32259D02*X33009Y2084750D01* -X37810Y2082500D02*X40060D01* -X37060Y2083250D02*X37810Y2082500D01* -X37060Y2084750D02*Y2083250D01* -Y2084750D02*X37810Y2085500D01* -X39310D01* -X40060Y2084750D01* -X37060Y2084000D02*X40060D01* -Y2084750D02*Y2084000D01* -X44562Y2087750D02*X45312Y2088500D01* -X47562D01* -X48312Y2087750D01* -Y2086250D01* -X44562Y2082500D02*X48312Y2086250D01* -X44562Y2082500D02*X48312D01* -X55813Y2088500D02*Y2082500D01* -X55063D02*X55813Y2083250D01* -X53563Y2082500D02*X55063D01* -X52813Y2083250D02*X53563Y2082500D01* -X52813Y2084750D02*Y2083250D01* -Y2084750D02*X53563Y2085500D01* -X55063D01* -X55813Y2084750D01* -X57615Y2087000D02*Y2086250D01* -Y2084750D02*Y2082500D01* -X59866Y2087750D02*Y2082500D01* -Y2087750D02*X60616Y2088500D01* -X61366D01* -X59116Y2085500D02*X60616D01* -X63618Y2087750D02*Y2082500D01* -Y2087750D02*X64368Y2088500D01* -X65118D01* -X62868Y2085500D02*X64368D01* -X67369Y2082500D02*X69619D01* -X66619Y2083250D02*X67369Y2082500D01* -X66619Y2084750D02*Y2083250D01* -Y2084750D02*X67369Y2085500D01* -X68869D01* -X69619Y2084750D01* -X66619Y2084000D02*X69619D01* -Y2084750D02*Y2084000D01* -X72171Y2084750D02*Y2082500D01* -Y2084750D02*X72921Y2085500D01* -X74421D01* -X71421D02*X72171Y2084750D01* -X76972Y2082500D02*X79222D01* -X76222Y2083250D02*X76972Y2082500D01* -X76222Y2084750D02*Y2083250D01* -Y2084750D02*X76972Y2085500D01* -X78472D01* -X79222Y2084750D01* -X76222Y2084000D02*X79222D01* -Y2084750D02*Y2084000D01* -X81774Y2084750D02*Y2082500D01* -Y2084750D02*X82524Y2085500D01* -X83274D01* -X84024Y2084750D01* -Y2082500D01* -X81024Y2085500D02*X81774Y2084750D01* -X86575Y2088500D02*Y2083250D01* -X87325Y2082500D01* -X85825Y2086250D02*X87325D01* -X94527Y2088500D02*Y2082500D01* -X93777D02*X94527Y2083250D01* -X92277Y2082500D02*X93777D01* -X91527Y2083250D02*X92277Y2082500D01* -X91527Y2084750D02*Y2083250D01* -Y2084750D02*X92277Y2085500D01* -X93777D01* -X94527Y2084750D01* -X97078D02*Y2082500D01* -Y2084750D02*X97828Y2085500D01* -X99328D01* -X96328D02*X97078Y2084750D01* -X101130Y2087000D02*Y2086250D01* -Y2084750D02*Y2082500D01* -X102631Y2088500D02*Y2083250D01* -X103381Y2082500D01* -X104883Y2088500D02*Y2083250D01* -X105633Y2082500D01* -X110584D02*X112834D01* -X113584Y2083250D01* -X112834Y2084000D02*X113584Y2083250D01* -X110584Y2084000D02*X112834D01* -X109834Y2084750D02*X110584Y2084000D01* -X109834Y2084750D02*X110584Y2085500D01* -X112834D01* -X113584Y2084750D01* -X109834Y2083250D02*X110584Y2082500D01* -X115386Y2087000D02*Y2086250D01* -Y2084750D02*Y2082500D01* -X116887Y2085500D02*X119887D01* -X116887Y2082500D02*X119887Y2085500D01* -X116887Y2082500D02*X119887D01* -X122439D02*X124689D01* -X121689Y2083250D02*X122439Y2082500D01* -X121689Y2084750D02*Y2083250D01* -Y2084750D02*X122439Y2085500D01* -X123939D01* -X124689Y2084750D01* -X121689Y2084000D02*X124689D01* -Y2084750D02*Y2084000D01* -X127240Y2082500D02*X129490D01* -X130240Y2083250D01* -X129490Y2084000D02*X130240Y2083250D01* -X127240Y2084000D02*X129490D01* -X126490Y2084750D02*X127240Y2084000D01* -X126490Y2084750D02*X127240Y2085500D01* -X129490D01* -X130240Y2084750D01* -X126490Y2083250D02*X127240Y2082500D01* -X134742Y2085500D02*Y2083250D01* -X135492Y2082500D01* -X136992D01* -X137742Y2083250D01* -Y2085500D02*Y2083250D01* -X140293Y2082500D02*X142543D01* -X143293Y2083250D01* -X142543Y2084000D02*X143293Y2083250D01* -X140293Y2084000D02*X142543D01* -X139543Y2084750D02*X140293Y2084000D01* -X139543Y2084750D02*X140293Y2085500D01* -X142543D01* -X143293Y2084750D01* -X139543Y2083250D02*X140293Y2082500D01* -X145845D02*X148095D01* -X145095Y2083250D02*X145845Y2082500D01* -X145095Y2084750D02*Y2083250D01* -Y2084750D02*X145845Y2085500D01* -X147345D01* -X148095Y2084750D01* -X145095Y2084000D02*X148095D01* -Y2084750D02*Y2084000D01* -X152896Y2088500D02*Y2082500D01* -X152146D02*X152896Y2083250D01* -X150646Y2082500D02*X152146D01* -X149896Y2083250D02*X150646Y2082500D01* -X149896Y2084750D02*Y2083250D01* -Y2084750D02*X150646Y2085500D01* -X152146D01* -X152896Y2084750D01* -X157398Y2087000D02*Y2086250D01* -Y2084750D02*Y2082500D01* -X159649Y2084750D02*Y2082500D01* -Y2084750D02*X160399Y2085500D01* -X161149D01* -X161899Y2084750D01* -Y2082500D01* -X158899Y2085500D02*X159649Y2084750D01* -X167151Y2088500D02*Y2083250D01* -X167901Y2082500D01* -X166401Y2086250D02*X167901D01* -X169402Y2088500D02*Y2082500D01* -Y2084750D02*X170152Y2085500D01* -X171652D01* -X172402Y2084750D01* -Y2082500D01* -X174204Y2087000D02*Y2086250D01* -Y2084750D02*Y2082500D01* -X176455D02*X178705D01* -X179455Y2083250D01* -X178705Y2084000D02*X179455Y2083250D01* -X176455Y2084000D02*X178705D01* -X175705Y2084750D02*X176455Y2084000D01* -X175705Y2084750D02*X176455Y2085500D01* -X178705D01* -X179455Y2084750D01* -X175705Y2083250D02*X176455Y2082500D01* -X183957Y2088500D02*Y2083250D01* -X184707Y2082500D01* -X188458Y2085500D02*X189208Y2084750D01* -X186958Y2085500D02*X188458D01* -X186208Y2084750D02*X186958Y2085500D01* -X186208Y2084750D02*Y2083250D01* -X186958Y2082500D01* -X189208Y2085500D02*Y2083250D01* -X189958Y2082500D01* -X186958D02*X188458D01* -X189208Y2083250D01* -X191760Y2085500D02*Y2083250D01* -X192510Y2082500D01* -X194760Y2085500D02*Y2081000D01* -X194010Y2080250D02*X194760Y2081000D01* -X192510Y2080250D02*X194010D01* -X191760Y2081000D02*X192510Y2080250D01* -Y2082500D02*X194010D01* -X194760Y2083250D01* -X196561Y2084750D02*Y2083250D01* -Y2084750D02*X197311Y2085500D01* -X198811D01* -X199561Y2084750D01* -Y2083250D01* -X198811Y2082500D02*X199561Y2083250D01* -X197311Y2082500D02*X198811D01* -X196561Y2083250D02*X197311Y2082500D01* -X201363Y2085500D02*Y2083250D01* -X202113Y2082500D01* -X203613D01* -X204363Y2083250D01* -Y2085500D02*Y2083250D01* -X206914Y2088500D02*Y2083250D01* -X207664Y2082500D01* -X206164Y2086250D02*X207664D01* -X209166Y2081000D02*X210666Y2082500D01* -X217417Y2088500D02*X218167Y2087750D01* -X215917Y2088500D02*X217417D01* -X215167Y2087750D02*X215917Y2088500D01* -X215167Y2087750D02*Y2083250D01* -X215917Y2082500D01* -X217417Y2085500D02*X218167Y2084750D01* -X215167Y2085500D02*X217417D01* -X215917Y2082500D02*X217417D01* -X218167Y2083250D01* -Y2084750D02*Y2083250D01* -X222669Y2088500D02*Y2082500D01* -Y2084750D02*X223419Y2085500D01* -X224919D01* -X225669Y2084750D01* -Y2082500D01* -X227470Y2084750D02*Y2083250D01* -Y2084750D02*X228220Y2085500D01* -X229720D01* -X230470Y2084750D01* -Y2083250D01* -X229720Y2082500D02*X230470Y2083250D01* -X228220Y2082500D02*X229720D01* -X227470Y2083250D02*X228220Y2082500D01* -X232272Y2088500D02*Y2083250D01* -X233022Y2082500D01* -X235273D02*X237523D01* -X234523Y2083250D02*X235273Y2082500D01* -X234523Y2084750D02*Y2083250D01* -Y2084750D02*X235273Y2085500D01* -X236773D01* -X237523Y2084750D01* -X234523Y2084000D02*X237523D01* -Y2084750D02*Y2084000D01* -X240075Y2082500D02*X242325D01* -X243075Y2083250D01* -X242325Y2084000D02*X243075Y2083250D01* -X240075Y2084000D02*X242325D01* -X239325Y2084750D02*X240075Y2084000D01* -X239325Y2084750D02*X240075Y2085500D01* -X242325D01* -X243075Y2084750D01* -X239325Y2083250D02*X240075Y2082500D01* -X248326Y2088500D02*Y2083250D01* -X249076Y2082500D01* -X247576Y2086250D02*X249076D01* -X250578Y2084750D02*Y2083250D01* -Y2084750D02*X251328Y2085500D01* -X252828D01* -X253578Y2084750D01* -Y2083250D01* -X252828Y2082500D02*X253578Y2083250D01* -X251328Y2082500D02*X252828D01* -X250578Y2083250D02*X251328Y2082500D01* -X256129Y2088500D02*Y2083250D01* -X256879Y2082500D01* -X255379Y2086250D02*X256879D01* -X260631Y2085500D02*X261381Y2084750D01* -X259131Y2085500D02*X260631D01* -X258381Y2084750D02*X259131Y2085500D01* -X258381Y2084750D02*Y2083250D01* -X259131Y2082500D01* -X261381Y2085500D02*Y2083250D01* -X262131Y2082500D01* -X259131D02*X260631D01* -X261381Y2083250D01* -X263932Y2088500D02*Y2083250D01* -X264682Y2082500D01* -G54D37*X0Y2000000D02*X3000000D01* -X0D02*Y0D01* -X3000000Y2000000D02*Y0D01* -X0D02*X3000000D01* -G54D36*X200000Y2013500D02*Y2007500D01* -Y2013500D02*X202250Y2011250D01* -X204500Y2013500D01* -Y2007500D01* -X208551Y2010500D02*X209301Y2009750D01* -X207051Y2010500D02*X208551D01* -X206301Y2009750D02*X207051Y2010500D01* -X206301Y2009750D02*Y2008250D01* -X207051Y2007500D01* -X209301Y2010500D02*Y2008250D01* -X210051Y2007500D01* -X207051D02*X208551D01* -X209301Y2008250D01* -X211853Y2010500D02*X214853Y2007500D01* -X211853D02*X214853Y2010500D01* -X216654Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X218906Y2009750D02*Y2007500D01* -Y2009750D02*X219656Y2010500D01* -X220406D01* -X221156Y2009750D01* -Y2007500D01* -Y2009750D02*X221906Y2010500D01* -X222656D01* -X223406Y2009750D01* -Y2007500D01* -X218156Y2010500D02*X218906Y2009750D01* -X225207Y2010500D02*Y2008250D01* -X225957Y2007500D01* -X227457D01* -X228207Y2008250D01* -Y2010500D02*Y2008250D01* -X230759Y2009750D02*Y2007500D01* -Y2009750D02*X231509Y2010500D01* -X232259D01* -X233009Y2009750D01* -Y2007500D01* -Y2009750D02*X233759Y2010500D01* -X234509D01* -X235259Y2009750D01* -Y2007500D01* -X230009Y2010500D02*X230759Y2009750D01* -X240510Y2013500D02*Y2007500D01* -X242760Y2013500D02*X243510Y2012750D01* -Y2008250D01* -X242760Y2007500D02*X243510Y2008250D01* -X239760Y2007500D02*X242760D01* -X239760Y2013500D02*X242760D01* -X245312Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X247563Y2009750D02*Y2007500D01* -Y2009750D02*X248313Y2010500D01* -X249063D01* -X249813Y2009750D01* -Y2007500D01* -Y2009750D02*X250563Y2010500D01* -X251313D01* -X252063Y2009750D01* -Y2007500D01* -X246813Y2010500D02*X247563Y2009750D01* -X254615Y2007500D02*X256865D01* -X253865Y2008250D02*X254615Y2007500D01* -X253865Y2009750D02*Y2008250D01* -Y2009750D02*X254615Y2010500D01* -X256115D01* -X256865Y2009750D01* -X253865Y2009000D02*X256865D01* -Y2009750D02*Y2009000D01* -X259416Y2009750D02*Y2007500D01* -Y2009750D02*X260166Y2010500D01* -X260916D01* -X261666Y2009750D01* -Y2007500D01* -X258666Y2010500D02*X259416Y2009750D01* -X264218Y2007500D02*X266468D01* -X267218Y2008250D01* -X266468Y2009000D02*X267218Y2008250D01* -X264218Y2009000D02*X266468D01* -X263468Y2009750D02*X264218Y2009000D01* -X263468Y2009750D02*X264218Y2010500D01* -X266468D01* -X267218Y2009750D01* -X263468Y2008250D02*X264218Y2007500D01* -X269019Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X270521Y2009750D02*Y2008250D01* -Y2009750D02*X271271Y2010500D01* -X272771D01* -X273521Y2009750D01* -Y2008250D01* -X272771Y2007500D02*X273521Y2008250D01* -X271271Y2007500D02*X272771D01* -X270521Y2008250D02*X271271Y2007500D01* -X276072Y2009750D02*Y2007500D01* -Y2009750D02*X276822Y2010500D01* -X277572D01* -X278322Y2009750D01* -Y2007500D01* -X275322Y2010500D02*X276072Y2009750D01* -X280874Y2007500D02*X283124D01* -X283874Y2008250D01* -X283124Y2009000D02*X283874Y2008250D01* -X280874Y2009000D02*X283124D01* -X280124Y2009750D02*X280874Y2009000D01* -X280124Y2009750D02*X280874Y2010500D01* -X283124D01* -X283874Y2009750D01* -X280124Y2008250D02*X280874Y2007500D01* -X285675Y2011250D02*X286425D01* -X285675Y2009750D02*X286425D01* -X290927Y2012750D02*X291677Y2013500D01* -X293177D01* -X293927Y2012750D01* -Y2008250D01* -X293177Y2007500D02*X293927Y2008250D01* -X291677Y2007500D02*X293177D01* -X290927Y2008250D02*X291677Y2007500D01* -Y2010500D02*X293927D01* -X295728Y2008250D02*X296478Y2007500D01* -X295728Y2012750D02*Y2008250D01* -Y2012750D02*X296478Y2013500D01* -X297978D01* -X298728Y2012750D01* -Y2008250D01* -X297978Y2007500D02*X298728Y2008250D01* -X296478Y2007500D02*X297978D01* -X295728Y2009000D02*X298728Y2012000D01* -X300530Y2008250D02*X301280Y2007500D01* -X300530Y2012750D02*Y2008250D01* -Y2012750D02*X301280Y2013500D01* -X302780D01* -X303530Y2012750D01* -Y2008250D01* -X302780Y2007500D02*X303530Y2008250D01* -X301280Y2007500D02*X302780D01* -X300530Y2009000D02*X303530Y2012000D01* -X305331Y2008250D02*X306081Y2007500D01* -X305331Y2012750D02*Y2008250D01* -Y2012750D02*X306081Y2013500D01* -X307581D01* -X308331Y2012750D01* -Y2008250D01* -X307581Y2007500D02*X308331Y2008250D01* -X306081Y2007500D02*X307581D01* -X305331Y2009000D02*X308331Y2012000D01* -X310133Y2008250D02*X310883Y2007500D01* -X310133Y2012750D02*Y2008250D01* -Y2012750D02*X310883Y2013500D01* -X312383D01* -X313133Y2012750D01* -Y2008250D01* -X312383Y2007500D02*X313133Y2008250D01* -X310883Y2007500D02*X312383D01* -X310133Y2009000D02*X313133Y2012000D01* -X314934Y2007500D02*X315684D01* -X317486Y2008250D02*X318236Y2007500D01* -X317486Y2012750D02*Y2008250D01* -Y2012750D02*X318236Y2013500D01* -X319736D01* -X320486Y2012750D01* -Y2008250D01* -X319736Y2007500D02*X320486Y2008250D01* -X318236Y2007500D02*X319736D01* -X317486Y2009000D02*X320486Y2012000D01* -X322287Y2008250D02*X323037Y2007500D01* -X322287Y2012750D02*Y2008250D01* -Y2012750D02*X323037Y2013500D01* -X324537D01* -X325287Y2012750D01* -Y2008250D01* -X324537Y2007500D02*X325287Y2008250D01* -X323037Y2007500D02*X324537D01* -X322287Y2009000D02*X325287Y2012000D01* -X327089Y2008250D02*X327839Y2007500D01* -X327089Y2012750D02*Y2008250D01* -Y2012750D02*X327839Y2013500D01* -X329339D01* -X330089Y2012750D01* -Y2008250D01* -X329339Y2007500D02*X330089Y2008250D01* -X327839Y2007500D02*X329339D01* -X327089Y2009000D02*X330089Y2012000D01* -X331890Y2008250D02*X332640Y2007500D01* -X331890Y2012750D02*Y2008250D01* -Y2012750D02*X332640Y2013500D01* -X334140D01* -X334890Y2012750D01* -Y2008250D01* -X334140Y2007500D02*X334890Y2008250D01* -X332640Y2007500D02*X334140D01* -X331890Y2009000D02*X334890Y2012000D01* -X336692Y2008250D02*X337442Y2007500D01* -X336692Y2012750D02*Y2008250D01* -Y2012750D02*X337442Y2013500D01* -X338942D01* -X339692Y2012750D01* -Y2008250D01* -X338942Y2007500D02*X339692Y2008250D01* -X337442Y2007500D02*X338942D01* -X336692Y2009000D02*X339692Y2012000D01* -X341493Y2008250D02*X342243Y2007500D01* -X341493Y2012750D02*Y2008250D01* -Y2012750D02*X342243Y2013500D01* -X343743D01* -X344493Y2012750D01* -Y2008250D01* -X343743Y2007500D02*X344493Y2008250D01* -X342243Y2007500D02*X343743D01* -X341493Y2009000D02*X344493Y2012000D01* -X349745Y2009750D02*Y2007500D01* -Y2009750D02*X350495Y2010500D01* -X351245D01* -X351995Y2009750D01* -Y2007500D01* -Y2009750D02*X352745Y2010500D01* -X353495D01* -X354245Y2009750D01* -Y2007500D01* -X348995Y2010500D02*X349745Y2009750D01* -X356046Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X357548Y2013500D02*Y2008250D01* -X358298Y2007500D01* -X360549D02*X362799D01* -X363549Y2008250D01* -X362799Y2009000D02*X363549Y2008250D01* -X360549Y2009000D02*X362799D01* -X359799Y2009750D02*X360549Y2009000D01* -X359799Y2009750D02*X360549Y2010500D01* -X362799D01* -X363549Y2009750D01* -X359799Y2008250D02*X360549Y2007500D01* -X368051Y2010500D02*Y2008250D01* -X368801Y2007500D01* -X369551D01* -X370301Y2008250D01* -Y2010500D02*Y2008250D01* -X371051Y2007500D01* -X371801D01* -X372551Y2008250D01* -Y2010500D02*Y2008250D01* -X374352Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X378854Y2013500D02*Y2007500D01* -X378104D02*X378854Y2008250D01* -X376604Y2007500D02*X378104D01* -X375854Y2008250D02*X376604Y2007500D01* -X375854Y2009750D02*Y2008250D01* -Y2009750D02*X376604Y2010500D01* -X378104D01* -X378854Y2009750D01* -X381405Y2007500D02*X383655D01* -X380655Y2008250D02*X381405Y2007500D01* -X380655Y2009750D02*Y2008250D01* -Y2009750D02*X381405Y2010500D01* -X382905D01* -X383655Y2009750D01* -X380655Y2009000D02*X383655D01* -Y2009750D02*Y2009000D01* -X385457Y2006000D02*X386957Y2007500D01* -X391458Y2012750D02*X392208Y2013500D01* -X394458D01* -X395208Y2012750D01* -Y2011250D01* -X391458Y2007500D02*X395208Y2011250D01* -X391458Y2007500D02*X395208D01* -X397010Y2008250D02*X397760Y2007500D01* -X397010Y2012750D02*Y2008250D01* -Y2012750D02*X397760Y2013500D01* -X399260D01* -X400010Y2012750D01* -Y2008250D01* -X399260Y2007500D02*X400010Y2008250D01* -X397760Y2007500D02*X399260D01* -X397010Y2009000D02*X400010Y2012000D01* -X401811Y2008250D02*X402561Y2007500D01* -X401811Y2012750D02*Y2008250D01* -Y2012750D02*X402561Y2013500D01* -X404061D01* -X404811Y2012750D01* -Y2008250D01* -X404061Y2007500D02*X404811Y2008250D01* -X402561Y2007500D02*X404061D01* -X401811Y2009000D02*X404811Y2012000D01* -X406613Y2008250D02*X407363Y2007500D01* -X406613Y2012750D02*Y2008250D01* -Y2012750D02*X407363Y2013500D01* -X408863D01* -X409613Y2012750D01* -Y2008250D01* -X408863Y2007500D02*X409613Y2008250D01* -X407363Y2007500D02*X408863D01* -X406613Y2009000D02*X409613Y2012000D01* -X411414Y2008250D02*X412164Y2007500D01* -X411414Y2012750D02*Y2008250D01* -Y2012750D02*X412164Y2013500D01* -X413664D01* -X414414Y2012750D01* -Y2008250D01* -X413664Y2007500D02*X414414Y2008250D01* -X412164Y2007500D02*X413664D01* -X411414Y2009000D02*X414414Y2012000D01* -X416216Y2007500D02*X416966D01* -X418767Y2008250D02*X419517Y2007500D01* -X418767Y2012750D02*Y2008250D01* -Y2012750D02*X419517Y2013500D01* -X421017D01* -X421767Y2012750D01* -Y2008250D01* -X421017Y2007500D02*X421767Y2008250D01* -X419517Y2007500D02*X421017D01* -X418767Y2009000D02*X421767Y2012000D01* -X423569Y2008250D02*X424319Y2007500D01* -X423569Y2012750D02*Y2008250D01* -Y2012750D02*X424319Y2013500D01* -X425819D01* -X426569Y2012750D01* -Y2008250D01* -X425819Y2007500D02*X426569Y2008250D01* -X424319Y2007500D02*X425819D01* -X423569Y2009000D02*X426569Y2012000D01* -X428370Y2008250D02*X429120Y2007500D01* -X428370Y2012750D02*Y2008250D01* -Y2012750D02*X429120Y2013500D01* -X430620D01* -X431370Y2012750D01* -Y2008250D01* -X430620Y2007500D02*X431370Y2008250D01* -X429120Y2007500D02*X430620D01* -X428370Y2009000D02*X431370Y2012000D01* -X433172Y2008250D02*X433922Y2007500D01* -X433172Y2012750D02*Y2008250D01* -Y2012750D02*X433922Y2013500D01* -X435422D01* -X436172Y2012750D01* -Y2008250D01* -X435422Y2007500D02*X436172Y2008250D01* -X433922Y2007500D02*X435422D01* -X433172Y2009000D02*X436172Y2012000D01* -X437973Y2008250D02*X438723Y2007500D01* -X437973Y2012750D02*Y2008250D01* -Y2012750D02*X438723Y2013500D01* -X440223D01* -X440973Y2012750D01* -Y2008250D01* -X440223Y2007500D02*X440973Y2008250D01* -X438723Y2007500D02*X440223D01* -X437973Y2009000D02*X440973Y2012000D01* -X442775Y2008250D02*X443525Y2007500D01* -X442775Y2012750D02*Y2008250D01* -Y2012750D02*X443525Y2013500D01* -X445025D01* -X445775Y2012750D01* -Y2008250D01* -X445025Y2007500D02*X445775Y2008250D01* -X443525Y2007500D02*X445025D01* -X442775Y2009000D02*X445775Y2012000D01* -X451026Y2009750D02*Y2007500D01* -Y2009750D02*X451776Y2010500D01* -X452526D01* -X453276Y2009750D01* -Y2007500D01* -Y2009750D02*X454026Y2010500D01* -X454776D01* -X455526Y2009750D01* -Y2007500D01* -X450276Y2010500D02*X451026Y2009750D01* -X457328Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X458829Y2013500D02*Y2008250D01* -X459579Y2007500D01* -X461831D02*X464081D01* -X464831Y2008250D01* -X464081Y2009000D02*X464831Y2008250D01* -X461831Y2009000D02*X464081D01* -X461081Y2009750D02*X461831Y2009000D01* -X461081Y2009750D02*X461831Y2010500D01* -X464081D01* -X464831Y2009750D01* -X461081Y2008250D02*X461831Y2007500D01* -X469332Y2013500D02*Y2007500D01* -Y2009750D02*X470082Y2010500D01* -X471582D01* -X472332Y2009750D01* -Y2007500D01* -X474134Y2012000D02*Y2011250D01* -Y2009750D02*Y2007500D01* -X477885Y2010500D02*X478635Y2009750D01* -X476385Y2010500D02*X477885D01* -X475635Y2009750D02*X476385Y2010500D01* -X475635Y2009750D02*Y2008250D01* -X476385Y2007500D01* -X477885D01* -X478635Y2008250D01* -X475635Y2006000D02*X476385Y2005250D01* -X477885D01* -X478635Y2006000D01* -Y2010500D02*Y2006000D01* -X480437Y2013500D02*Y2007500D01* -Y2009750D02*X481187Y2010500D01* -X482687D01* -X483437Y2009750D01* -Y2007500D01* -X1292034Y-9500D02*X1295034D01* -X1295784Y-8750D01* -Y-7250D02*Y-8750D01* -X1295034Y-6500D02*X1295784Y-7250D01* -X1292784Y-6500D02*X1295034D01* -X1292784Y-3500D02*Y-9500D01* -X1292034Y-3500D02*X1295034D01* -X1295784Y-4250D01* -Y-5750D01* -X1295034Y-6500D02*X1295784Y-5750D01* -X1297585Y-7250D02*Y-8750D01* -Y-7250D02*X1298335Y-6500D01* -X1299835D01* -X1300585Y-7250D01* -Y-8750D01* -X1299835Y-9500D02*X1300585Y-8750D01* -X1298335Y-9500D02*X1299835D01* -X1297585Y-8750D02*X1298335Y-9500D01* -X1304637Y-6500D02*X1305387Y-7250D01* -X1303137Y-6500D02*X1304637D01* -X1302387Y-7250D02*X1303137Y-6500D01* -X1302387Y-7250D02*Y-8750D01* -X1303137Y-9500D01* -X1305387Y-6500D02*Y-8750D01* -X1306137Y-9500D01* -X1303137D02*X1304637D01* -X1305387Y-8750D01* -X1308688Y-7250D02*Y-9500D01* -Y-7250D02*X1309438Y-6500D01* -X1310938D01* -X1307938D02*X1308688Y-7250D01* -X1315740Y-3500D02*Y-9500D01* -X1314990D02*X1315740Y-8750D01* -X1313490Y-9500D02*X1314990D01* -X1312740Y-8750D02*X1313490Y-9500D01* -X1312740Y-7250D02*Y-8750D01* -Y-7250D02*X1313490Y-6500D01* -X1314990D01* -X1315740Y-7250D01* -X1320241D02*Y-8750D01* -Y-7250D02*X1320991Y-6500D01* -X1322491D01* -X1323241Y-7250D01* -Y-8750D01* -X1322491Y-9500D02*X1323241Y-8750D01* -X1320991Y-9500D02*X1322491D01* -X1320241Y-8750D02*X1320991Y-9500D01* -X1325043Y-6500D02*Y-8750D01* -X1325793Y-9500D01* -X1327293D01* -X1328043Y-8750D01* -Y-6500D02*Y-8750D01* -X1330594Y-3500D02*Y-8750D01* -X1331344Y-9500D01* -X1329844Y-5750D02*X1331344D01* -X1332846Y-3500D02*Y-8750D01* -X1333596Y-9500D01* -X1335097Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X1337349Y-7250D02*Y-9500D01* -Y-7250D02*X1338099Y-6500D01* -X1338849D01* -X1339599Y-7250D01* -Y-9500D01* -X1336599Y-6500D02*X1337349Y-7250D01* -X1342150Y-9500D02*X1344400D01* -X1341400Y-8750D02*X1342150Y-9500D01* -X1341400Y-7250D02*Y-8750D01* -Y-7250D02*X1342150Y-6500D01* -X1343650D01* -X1344400Y-7250D01* -X1341400Y-8000D02*X1344400D01* -Y-7250D02*Y-8000D01* -X1348902Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X1351153D02*X1353403D01* -X1354153Y-8750D01* -X1353403Y-8000D02*X1354153Y-8750D01* -X1351153Y-8000D02*X1353403D01* -X1350403Y-7250D02*X1351153Y-8000D01* -X1350403Y-7250D02*X1351153Y-6500D01* -X1353403D01* -X1354153Y-7250D01* -X1350403Y-8750D02*X1351153Y-9500D01* -X1359405Y-3500D02*Y-8750D01* -X1360155Y-9500D01* -X1358655Y-5750D02*X1360155D01* -X1361656Y-3500D02*Y-9500D01* -Y-7250D02*X1362406Y-6500D01* -X1363906D01* -X1364656Y-7250D01* -Y-9500D01* -X1367208D02*X1369458D01* -X1366458Y-8750D02*X1367208Y-9500D01* -X1366458Y-7250D02*Y-8750D01* -Y-7250D02*X1367208Y-6500D01* -X1368708D01* -X1369458Y-7250D01* -X1366458Y-8000D02*X1369458D01* -Y-7250D02*Y-8000D01* -X1374709Y-6500D02*X1376959D01* -X1373959Y-7250D02*X1374709Y-6500D01* -X1373959Y-7250D02*Y-8750D01* -X1374709Y-9500D01* -X1376959D01* -X1379511D02*X1381761D01* -X1378761Y-8750D02*X1379511Y-9500D01* -X1378761Y-7250D02*Y-8750D01* -Y-7250D02*X1379511Y-6500D01* -X1381011D01* -X1381761Y-7250D01* -X1378761Y-8000D02*X1381761D01* -Y-7250D02*Y-8000D01* -X1384312Y-7250D02*Y-9500D01* -Y-7250D02*X1385062Y-6500D01* -X1385812D01* -X1386562Y-7250D01* -Y-9500D01* -X1383562Y-6500D02*X1384312Y-7250D01* -X1389114Y-3500D02*Y-8750D01* -X1389864Y-9500D01* -X1388364Y-5750D02*X1389864D01* -X1392115Y-9500D02*X1394365D01* -X1391365Y-8750D02*X1392115Y-9500D01* -X1391365Y-7250D02*Y-8750D01* -Y-7250D02*X1392115Y-6500D01* -X1393615D01* -X1394365Y-7250D01* -X1391365Y-8000D02*X1394365D01* -Y-7250D02*Y-8000D01* -X1396917Y-7250D02*Y-9500D01* -Y-7250D02*X1397667Y-6500D01* -X1399167D01* -X1396167D02*X1396917Y-7250D01* -X1400968Y-3500D02*Y-8750D01* -X1401718Y-9500D01* -X1403220Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X1405471Y-7250D02*Y-9500D01* -Y-7250D02*X1406221Y-6500D01* -X1406971D01* -X1407721Y-7250D01* -Y-9500D01* -X1404721Y-6500D02*X1405471Y-7250D01* -X1410273Y-9500D02*X1412523D01* -X1409523Y-8750D02*X1410273Y-9500D01* -X1409523Y-7250D02*Y-8750D01* -Y-7250D02*X1410273Y-6500D01* -X1411773D01* -X1412523Y-7250D01* -X1409523Y-8000D02*X1412523D01* -Y-7250D02*Y-8000D01* -X1417024Y-7250D02*Y-8750D01* -Y-7250D02*X1417774Y-6500D01* -X1419274D01* -X1420024Y-7250D01* -Y-8750D01* -X1419274Y-9500D02*X1420024Y-8750D01* -X1417774Y-9500D02*X1419274D01* -X1417024Y-8750D02*X1417774Y-9500D01* -X1422576Y-4250D02*Y-9500D01* -Y-4250D02*X1423326Y-3500D01* -X1424076D01* -X1421826Y-6500D02*X1423326D01* -X1429027Y-3500D02*Y-8750D01* -X1429777Y-9500D01* -X1428277Y-5750D02*X1429777D01* -X1431279Y-3500D02*Y-9500D01* -Y-7250D02*X1432029Y-6500D01* -X1433529D01* -X1434279Y-7250D01* -Y-9500D01* -X1436080Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X1438332D02*X1440582D01* -X1441332Y-8750D01* -X1440582Y-8000D02*X1441332Y-8750D01* -X1438332Y-8000D02*X1440582D01* -X1437582Y-7250D02*X1438332Y-8000D01* -X1437582Y-7250D02*X1438332Y-6500D01* -X1440582D01* -X1441332Y-7250D01* -X1437582Y-8750D02*X1438332Y-9500D01* -X1445833Y-8750D02*X1446583Y-9500D01* -X1445833Y-7250D02*Y-8750D01* -Y-7250D02*X1446583Y-6500D01* -X1448083D01* -X1448833Y-7250D01* -Y-8750D01* -X1448083Y-9500D02*X1448833Y-8750D01* -X1446583Y-9500D02*X1448083D01* -X1445833Y-5750D02*X1446583Y-6500D01* -X1445833Y-4250D02*Y-5750D01* -Y-4250D02*X1446583Y-3500D01* -X1448083D01* -X1448833Y-4250D01* -Y-5750D01* -X1448083Y-6500D02*X1448833Y-5750D01* -X1450635Y-9500D02*X1451385D01* -X1453186Y-8750D02*X1453936Y-9500D01* -X1453186Y-4250D02*Y-8750D01* -Y-4250D02*X1453936Y-3500D01* -X1455436D01* -X1456186Y-4250D01* -Y-8750D01* -X1455436Y-9500D02*X1456186Y-8750D01* -X1453936Y-9500D02*X1455436D01* -X1453186Y-8000D02*X1456186Y-5000D01* -X1457988Y-8750D02*X1458738Y-9500D01* -X1457988Y-4250D02*Y-8750D01* -Y-4250D02*X1458738Y-3500D01* -X1460238D01* -X1460988Y-4250D01* -Y-8750D01* -X1460238Y-9500D02*X1460988Y-8750D01* -X1458738Y-9500D02*X1460238D01* -X1457988Y-8000D02*X1460988Y-5000D01* -X1462789Y-8750D02*X1463539Y-9500D01* -X1462789Y-4250D02*Y-8750D01* -Y-4250D02*X1463539Y-3500D01* -X1465039D01* -X1465789Y-4250D01* -Y-8750D01* -X1465039Y-9500D02*X1465789Y-8750D01* -X1463539Y-9500D02*X1465039D01* -X1462789Y-8000D02*X1465789Y-5000D01* -X1467591Y-8750D02*X1468341Y-9500D01* -X1467591Y-4250D02*Y-8750D01* -Y-4250D02*X1468341Y-3500D01* -X1469841D01* -X1470591Y-4250D01* -Y-8750D01* -X1469841Y-9500D02*X1470591Y-8750D01* -X1468341Y-9500D02*X1469841D01* -X1467591Y-8000D02*X1470591Y-5000D01* -X1472392Y-8750D02*X1473142Y-9500D01* -X1472392Y-4250D02*Y-8750D01* -Y-4250D02*X1473142Y-3500D01* -X1474642D01* -X1475392Y-4250D01* -Y-8750D01* -X1474642Y-9500D02*X1475392Y-8750D01* -X1473142Y-9500D02*X1474642D01* -X1472392Y-8000D02*X1475392Y-5000D01* -X1477194Y-8750D02*X1477944Y-9500D01* -X1477194Y-4250D02*Y-8750D01* -Y-4250D02*X1477944Y-3500D01* -X1479444D01* -X1480194Y-4250D01* -Y-8750D01* -X1479444Y-9500D02*X1480194Y-8750D01* -X1477944Y-9500D02*X1479444D01* -X1477194Y-8000D02*X1480194Y-5000D01* -X1485445Y-7250D02*Y-9500D01* -Y-7250D02*X1486195Y-6500D01* -X1486945D01* -X1487695Y-7250D01* -Y-9500D01* -Y-7250D02*X1488445Y-6500D01* -X1489195D01* -X1489945Y-7250D01* -Y-9500D01* -X1484695Y-6500D02*X1485445Y-7250D01* -X1491747Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X1493248Y-3500D02*Y-8750D01* -X1493998Y-9500D01* -X1498950Y-7250D02*Y-9500D01* -Y-7250D02*X1499700Y-6500D01* -X1501200D01* -X1498200D02*X1498950Y-7250D01* -X1503751Y-9500D02*X1506001D01* -X1503001Y-8750D02*X1503751Y-9500D01* -X1503001Y-7250D02*Y-8750D01* -Y-7250D02*X1503751Y-6500D01* -X1505251D01* -X1506001Y-7250D01* -X1503001Y-8000D02*X1506001D01* -Y-7250D02*Y-8000D01* -X1508553Y-6500D02*X1510803D01* -X1507803Y-7250D02*X1508553Y-6500D01* -X1507803Y-7250D02*Y-8750D01* -X1508553Y-9500D01* -X1510803D01* -X1513354Y-3500D02*Y-8750D01* -X1514104Y-9500D01* -X1512604Y-5750D02*X1514104D01* -X1517856Y-6500D02*X1518606Y-7250D01* -X1516356Y-6500D02*X1517856D01* -X1515606Y-7250D02*X1516356Y-6500D01* -X1515606Y-7250D02*Y-8750D01* -X1516356Y-9500D01* -X1518606Y-6500D02*Y-8750D01* -X1519356Y-9500D01* -X1516356D02*X1517856D01* -X1518606Y-8750D01* -X1521907Y-7250D02*Y-9500D01* -Y-7250D02*X1522657Y-6500D01* -X1523407D01* -X1524157Y-7250D01* -Y-9500D01* -X1521157Y-6500D02*X1521907Y-7250D01* -X1528209Y-6500D02*X1528959Y-7250D01* -X1526709Y-6500D02*X1528209D01* -X1525959Y-7250D02*X1526709Y-6500D01* -X1525959Y-7250D02*Y-8750D01* -X1526709Y-9500D01* -X1528209D01* -X1528959Y-8750D01* -X1525959Y-11000D02*X1526709Y-11750D01* -X1528209D01* -X1528959Y-11000D01* -Y-6500D02*Y-11000D01* -X1530760Y-3500D02*Y-8750D01* -X1531510Y-9500D01* -X1533762D02*X1536012D01* -X1533012Y-8750D02*X1533762Y-9500D01* -X1533012Y-7250D02*Y-8750D01* -Y-7250D02*X1533762Y-6500D01* -X1535262D01* -X1536012Y-7250D01* -X1533012Y-8000D02*X1536012D01* -Y-7250D02*Y-8000D01* -X1540513Y-6500D02*X1543513D01* -X1548015Y-8750D02*X1548765Y-9500D01* -X1548015Y-4250D02*Y-8750D01* -Y-4250D02*X1548765Y-3500D01* -X1550265D01* -X1551015Y-4250D01* -Y-8750D01* -X1550265Y-9500D02*X1551015Y-8750D01* -X1548765Y-9500D02*X1550265D01* -X1548015Y-8000D02*X1551015Y-5000D01* -X1552816Y-11000D02*X1554316Y-9500D01* -X1556118Y-8750D02*X1556868Y-9500D01* -X1556118Y-4250D02*Y-8750D01* -Y-4250D02*X1556868Y-3500D01* -X1558368D01* -X1559118Y-4250D01* -Y-8750D01* -X1558368Y-9500D02*X1559118Y-8750D01* -X1556868Y-9500D02*X1558368D01* -X1556118Y-8000D02*X1559118Y-5000D01* -X1564369Y-3500D02*Y-8750D01* -X1565119Y-9500D01* -X1563619Y-5750D02*X1565119D01* -X1566621Y-7250D02*Y-8750D01* -Y-7250D02*X1567371Y-6500D01* -X1568871D01* -X1569621Y-7250D01* -Y-8750D01* -X1568871Y-9500D02*X1569621Y-8750D01* -X1567371Y-9500D02*X1568871D01* -X1566621Y-8750D02*X1567371Y-9500D01* -X1574122Y-4250D02*X1574872Y-3500D01* -X1576372D01* -X1577122Y-4250D01* -Y-8750D01* -X1576372Y-9500D02*X1577122Y-8750D01* -X1574872Y-9500D02*X1576372D01* -X1574122Y-8750D02*X1574872Y-9500D01* -Y-6500D02*X1577122D01* -X1578924Y-8750D02*X1579674Y-9500D01* -X1578924Y-4250D02*Y-8750D01* -Y-4250D02*X1579674Y-3500D01* -X1581174D01* -X1581924Y-4250D01* -Y-8750D01* -X1581174Y-9500D02*X1581924Y-8750D01* -X1579674Y-9500D02*X1581174D01* -X1578924Y-8000D02*X1581924Y-5000D01* -X1583725Y-8750D02*X1584475Y-9500D01* -X1583725Y-4250D02*Y-8750D01* -Y-4250D02*X1584475Y-3500D01* -X1585975D01* -X1586725Y-4250D01* -Y-8750D01* -X1585975Y-9500D02*X1586725Y-8750D01* -X1584475Y-9500D02*X1585975D01* -X1583725Y-8000D02*X1586725Y-5000D01* -X1588527Y-8750D02*X1589277Y-9500D01* -X1588527Y-4250D02*Y-8750D01* -Y-4250D02*X1589277Y-3500D01* -X1590777D01* -X1591527Y-4250D01* -Y-8750D01* -X1590777Y-9500D02*X1591527Y-8750D01* -X1589277Y-9500D02*X1590777D01* -X1588527Y-8000D02*X1591527Y-5000D01* -X1593328Y-8750D02*X1594078Y-9500D01* -X1593328Y-4250D02*Y-8750D01* -Y-4250D02*X1594078Y-3500D01* -X1595578D01* -X1596328Y-4250D01* -Y-8750D01* -X1595578Y-9500D02*X1596328Y-8750D01* -X1594078Y-9500D02*X1595578D01* -X1593328Y-8000D02*X1596328Y-5000D01* -X1598130Y-9500D02*X1598880D01* -X1600681Y-8750D02*X1601431Y-9500D01* -X1600681Y-4250D02*Y-8750D01* -Y-4250D02*X1601431Y-3500D01* -X1602931D01* -X1603681Y-4250D01* -Y-8750D01* -X1602931Y-9500D02*X1603681Y-8750D01* -X1601431Y-9500D02*X1602931D01* -X1600681Y-8000D02*X1603681Y-5000D01* -X1605483Y-8750D02*X1606233Y-9500D01* -X1605483Y-4250D02*Y-8750D01* -Y-4250D02*X1606233Y-3500D01* -X1607733D01* -X1608483Y-4250D01* -Y-8750D01* -X1607733Y-9500D02*X1608483Y-8750D01* -X1606233Y-9500D02*X1607733D01* -X1605483Y-8000D02*X1608483Y-5000D01* -X1610284Y-8750D02*X1611034Y-9500D01* -X1610284Y-4250D02*Y-8750D01* -Y-4250D02*X1611034Y-3500D01* -X1612534D01* -X1613284Y-4250D01* -Y-8750D01* -X1612534Y-9500D02*X1613284Y-8750D01* -X1611034Y-9500D02*X1612534D01* -X1610284Y-8000D02*X1613284Y-5000D01* -X1615086Y-8750D02*X1615836Y-9500D01* -X1615086Y-4250D02*Y-8750D01* -Y-4250D02*X1615836Y-3500D01* -X1617336D01* -X1618086Y-4250D01* -Y-8750D01* -X1617336Y-9500D02*X1618086Y-8750D01* -X1615836Y-9500D02*X1617336D01* -X1615086Y-8000D02*X1618086Y-5000D01* -X1619887Y-8750D02*X1620637Y-9500D01* -X1619887Y-4250D02*Y-8750D01* -Y-4250D02*X1620637Y-3500D01* -X1622137D01* -X1622887Y-4250D01* -Y-8750D01* -X1622137Y-9500D02*X1622887Y-8750D01* -X1620637Y-9500D02*X1622137D01* -X1619887Y-8000D02*X1622887Y-5000D01* -X1624689Y-8750D02*X1625439Y-9500D01* -X1624689Y-4250D02*Y-8750D01* -Y-4250D02*X1625439Y-3500D01* -X1626939D01* -X1627689Y-4250D01* -Y-8750D01* -X1626939Y-9500D02*X1627689Y-8750D01* -X1625439Y-9500D02*X1626939D01* -X1624689Y-8000D02*X1627689Y-5000D01* -X1629490Y-11000D02*X1630990Y-9500D01* -X1632792Y-4250D02*X1633542Y-3500D01* -X1635792D01* -X1636542Y-4250D01* -Y-5750D01* -X1632792Y-9500D02*X1636542Y-5750D01* -X1632792Y-9500D02*X1636542D01* -X1638343Y-8750D02*X1639093Y-9500D01* -X1638343Y-4250D02*Y-8750D01* -Y-4250D02*X1639093Y-3500D01* -X1640593D01* -X1641343Y-4250D01* -Y-8750D01* -X1640593Y-9500D02*X1641343Y-8750D01* -X1639093Y-9500D02*X1640593D01* -X1638343Y-8000D02*X1641343Y-5000D01* -X1643145Y-8750D02*X1643895Y-9500D01* -X1643145Y-4250D02*Y-8750D01* -Y-4250D02*X1643895Y-3500D01* -X1645395D01* -X1646145Y-4250D01* -Y-8750D01* -X1645395Y-9500D02*X1646145Y-8750D01* -X1643895Y-9500D02*X1645395D01* -X1643145Y-8000D02*X1646145Y-5000D01* -X1647946Y-8750D02*X1648696Y-9500D01* -X1647946Y-4250D02*Y-8750D01* -Y-4250D02*X1648696Y-3500D01* -X1650196D01* -X1650946Y-4250D01* -Y-8750D01* -X1650196Y-9500D02*X1650946Y-8750D01* -X1648696Y-9500D02*X1650196D01* -X1647946Y-8000D02*X1650946Y-5000D01* -X1652748Y-8750D02*X1653498Y-9500D01* -X1652748Y-4250D02*Y-8750D01* -Y-4250D02*X1653498Y-3500D01* -X1654998D01* -X1655748Y-4250D01* -Y-8750D01* -X1654998Y-9500D02*X1655748Y-8750D01* -X1653498Y-9500D02*X1654998D01* -X1652748Y-8000D02*X1655748Y-5000D01* -X1657549Y-9500D02*X1658299D01* -X1660101Y-8750D02*X1660851Y-9500D01* -X1660101Y-4250D02*Y-8750D01* -Y-4250D02*X1660851Y-3500D01* -X1662351D01* -X1663101Y-4250D01* -Y-8750D01* -X1662351Y-9500D02*X1663101Y-8750D01* -X1660851Y-9500D02*X1662351D01* -X1660101Y-8000D02*X1663101Y-5000D01* -X1664902Y-8750D02*X1665652Y-9500D01* -X1664902Y-4250D02*Y-8750D01* -Y-4250D02*X1665652Y-3500D01* -X1667152D01* -X1667902Y-4250D01* -Y-8750D01* -X1667152Y-9500D02*X1667902Y-8750D01* -X1665652Y-9500D02*X1667152D01* -X1664902Y-8000D02*X1667902Y-5000D01* -X1669704Y-8750D02*X1670454Y-9500D01* -X1669704Y-4250D02*Y-8750D01* -Y-4250D02*X1670454Y-3500D01* -X1671954D01* -X1672704Y-4250D01* -Y-8750D01* -X1671954Y-9500D02*X1672704Y-8750D01* -X1670454Y-9500D02*X1671954D01* -X1669704Y-8000D02*X1672704Y-5000D01* -X1674505Y-8750D02*X1675255Y-9500D01* -X1674505Y-4250D02*Y-8750D01* -Y-4250D02*X1675255Y-3500D01* -X1676755D01* -X1677505Y-4250D01* -Y-8750D01* -X1676755Y-9500D02*X1677505Y-8750D01* -X1675255Y-9500D02*X1676755D01* -X1674505Y-8000D02*X1677505Y-5000D01* -X1679307Y-8750D02*X1680057Y-9500D01* -X1679307Y-4250D02*Y-8750D01* -Y-4250D02*X1680057Y-3500D01* -X1681557D01* -X1682307Y-4250D01* -Y-8750D01* -X1681557Y-9500D02*X1682307Y-8750D01* -X1680057Y-9500D02*X1681557D01* -X1679307Y-8000D02*X1682307Y-5000D01* -X1684108Y-8750D02*X1684858Y-9500D01* -X1684108Y-4250D02*Y-8750D01* -Y-4250D02*X1684858Y-3500D01* -X1686358D01* -X1687108Y-4250D01* -Y-8750D01* -X1686358Y-9500D02*X1687108Y-8750D01* -X1684858Y-9500D02*X1686358D01* -X1684108Y-8000D02*X1687108Y-5000D01* -X1692360Y-7250D02*Y-9500D01* -Y-7250D02*X1693110Y-6500D01* -X1693860D01* -X1694610Y-7250D01* -Y-9500D01* -Y-7250D02*X1695360Y-6500D01* -X1696110D01* -X1696860Y-7250D01* -Y-9500D01* -X1691610Y-6500D02*X1692360Y-7250D01* -X1698661Y-5000D02*Y-5750D01* -Y-7250D02*Y-9500D01* -X1700163Y-3500D02*Y-8750D01* -X1700913Y-9500D01* -X1703164D02*X1705414D01* -X1706164Y-8750D01* -X1705414Y-8000D02*X1706164Y-8750D01* -X1703164Y-8000D02*X1705414D01* -X1702414Y-7250D02*X1703164Y-8000D01* -X1702414Y-7250D02*X1703164Y-6500D01* -X1705414D01* -X1706164Y-7250D01* -X1702414Y-8750D02*X1703164Y-9500D01* -X200750Y2028500D02*Y2022500D01* -X203000Y2028500D02*X203750Y2027750D01* -Y2023250D01* -X203000Y2022500D02*X203750Y2023250D01* -X200000Y2022500D02*X203000D01* -X200000Y2028500D02*X203000D01* -X207801Y2025500D02*X208551Y2024750D01* -X206301Y2025500D02*X207801D01* -X205551Y2024750D02*X206301Y2025500D01* -X205551Y2024750D02*Y2023250D01* -X206301Y2022500D01* -X208551Y2025500D02*Y2023250D01* -X209301Y2022500D01* -X206301D02*X207801D01* -X208551Y2023250D01* -X211853Y2028500D02*Y2023250D01* -X212603Y2022500D01* -X211103Y2026250D02*X212603D01* -X214854Y2022500D02*X217104D01* -X214104Y2023250D02*X214854Y2022500D01* -X214104Y2024750D02*Y2023250D01* -Y2024750D02*X214854Y2025500D01* -X216354D01* -X217104Y2024750D01* -X214104Y2024000D02*X217104D01* -Y2024750D02*Y2024000D01* -X218906Y2026250D02*X219656D01* -X218906Y2024750D02*X219656D01* -X224157Y2028500D02*Y2022500D01* -Y2028500D02*X227157D01* -X224157Y2025500D02*X226407D01* -X229709Y2024750D02*Y2022500D01* -Y2024750D02*X230459Y2025500D01* -X231959D01* -X228959D02*X229709Y2024750D01* -X233760Y2027000D02*Y2026250D01* -Y2024750D02*Y2022500D01* -X237962Y2028500D02*X240212D01* -Y2023250D01* -X239462Y2022500D02*X240212Y2023250D01* -X238712Y2022500D02*X239462D01* -X237962Y2023250D02*X238712Y2022500D01* -X242013Y2025500D02*Y2023250D01* -X242763Y2022500D01* -X244263D01* -X245013Y2023250D01* -Y2025500D02*Y2023250D01* -X247565Y2024750D02*Y2022500D01* -Y2024750D02*X248315Y2025500D01* -X249065D01* -X249815Y2024750D01* -Y2022500D01* -X246815Y2025500D02*X247565Y2024750D01* -X255066Y2022500D02*X256566D01* -X255816Y2028500D02*Y2022500D01* -X254316Y2027000D02*X255816Y2028500D01* -X258368Y2022500D02*X262118Y2026250D01* -Y2028500D02*Y2026250D01* -X258368Y2028500D02*X262118D01* -X266619Y2023250D02*X267369Y2022500D01* -X266619Y2027750D02*Y2023250D01* -Y2027750D02*X267369Y2028500D01* -X268869D01* -X269619Y2027750D01* -Y2023250D01* -X268869Y2022500D02*X269619Y2023250D01* -X267369Y2022500D02*X268869D01* -X266619Y2024000D02*X269619Y2027000D01* -X271421Y2027750D02*X272171Y2028500D01* -X273671D01* -X274421Y2027750D01* -Y2023250D01* -X273671Y2022500D02*X274421Y2023250D01* -X272171Y2022500D02*X273671D01* -X271421Y2023250D02*X272171Y2022500D01* -Y2025500D02*X274421D01* -X276222Y2026250D02*X276972D01* -X276222Y2024750D02*X276972D01* -X279524Y2022500D02*X281024D01* -X280274Y2028500D02*Y2022500D01* -X278774Y2027000D02*X280274Y2028500D01* -X282825Y2023250D02*X283575Y2022500D01* -X282825Y2024750D02*Y2023250D01* -Y2024750D02*X283575Y2025500D01* -X285075D01* -X285825Y2024750D01* -Y2023250D01* -X285075Y2022500D02*X285825Y2023250D01* -X283575Y2022500D02*X285075D01* -X282825Y2026250D02*X283575Y2025500D01* -X282825Y2027750D02*Y2026250D01* -Y2027750D02*X283575Y2028500D01* -X285075D01* -X285825Y2027750D01* -Y2026250D01* -X285075Y2025500D02*X285825Y2026250D01* -X287627D02*X288377D01* -X287627Y2024750D02*X288377D01* -X290178Y2028500D02*X293178D01* -X290178D02*Y2025500D01* -X290928Y2026250D01* -X292428D01* -X293178Y2025500D01* -Y2023250D01* -X292428Y2022500D02*X293178Y2023250D01* -X290928Y2022500D02*X292428D01* -X290178Y2023250D02*X290928Y2022500D01* -X295730D02*X297230D01* -X296480Y2028500D02*Y2022500D01* -X294980Y2027000D02*X296480Y2028500D01* -X301731Y2027750D02*X302481Y2028500D01* -X304731D01* -X305481Y2027750D01* -Y2026250D01* -X301731Y2022500D02*X305481Y2026250D01* -X301731Y2022500D02*X305481D01* -X307283Y2023250D02*X308033Y2022500D01* -X307283Y2027750D02*Y2023250D01* -Y2027750D02*X308033Y2028500D01* -X309533D01* -X310283Y2027750D01* -Y2023250D01* -X309533Y2022500D02*X310283Y2023250D01* -X308033Y2022500D02*X309533D01* -X307283Y2024000D02*X310283Y2027000D01* -X312834Y2022500D02*X314334D01* -X313584Y2028500D02*Y2022500D01* -X312084Y2027000D02*X313584Y2028500D01* -X316886Y2022500D02*X318386D01* -X317636Y2028500D02*Y2022500D01* -X316136Y2027000D02*X317636Y2028500D01* -X322887D02*Y2023250D01* -X323637Y2022500D01* -X325137D01* -X325887Y2023250D01* -Y2028500D02*Y2023250D01* -X327689Y2028500D02*X330689D01* -X329189D02*Y2022500D01* -X333240D02*X335490D01* -X332490Y2023250D02*X333240Y2022500D01* -X332490Y2027750D02*Y2023250D01* -Y2027750D02*X333240Y2028500D01* -X335490D01* -X200000Y2042750D02*Y2037500D01* -Y2042750D02*X200750Y2043500D01* -X203000D01* -X203750Y2042750D01* -Y2037500D01* -X200000Y2040500D02*X203750D01* -X205551D02*Y2038250D01* -X206301Y2037500D01* -X207801D01* -X208551Y2038250D01* -Y2040500D02*Y2038250D01* -X211103Y2043500D02*Y2038250D01* -X211853Y2037500D01* -X210353Y2041250D02*X211853D01* -X213354Y2043500D02*Y2037500D01* -Y2039750D02*X214104Y2040500D01* -X215604D01* -X216354Y2039750D01* -Y2037500D01* -X218156Y2039750D02*Y2038250D01* -Y2039750D02*X218906Y2040500D01* -X220406D01* -X221156Y2039750D01* -Y2038250D01* -X220406Y2037500D02*X221156Y2038250D01* -X218906Y2037500D02*X220406D01* -X218156Y2038250D02*X218906Y2037500D01* -X223707Y2039750D02*Y2037500D01* -Y2039750D02*X224457Y2040500D01* -X225957D01* -X222957D02*X223707Y2039750D01* -X227759Y2041250D02*X228509D01* -X227759Y2039750D02*X228509D01* -X233010Y2043500D02*Y2037500D01* -Y2043500D02*X236010D01* -X233010Y2040500D02*X235260D01* -X240062D02*X240812Y2039750D01* -X238562Y2040500D02*X240062D01* -X237812Y2039750D02*X238562Y2040500D01* -X237812Y2039750D02*Y2038250D01* -X238562Y2037500D01* -X240812Y2040500D02*Y2038250D01* -X241562Y2037500D01* -X238562D02*X240062D01* -X240812Y2038250D01* -X243363Y2043500D02*Y2037500D01* -Y2038250D02*X244113Y2037500D01* -X245613D01* -X246363Y2038250D01* -Y2039750D02*Y2038250D01* -X245613Y2040500D02*X246363Y2039750D01* -X244113Y2040500D02*X245613D01* -X243363Y2039750D02*X244113Y2040500D01* -X248165Y2037500D02*X251165D01* -X252966Y2042750D02*Y2037500D01* -Y2042750D02*X253716Y2043500D01* -X255966D01* -X256716Y2042750D01* -Y2037500D01* -X252966Y2040500D02*X256716D01* -X258518D02*Y2038250D01* -X259268Y2037500D01* -X260768D01* -X261518Y2038250D01* -Y2040500D02*Y2038250D01* -X264069Y2043500D02*Y2038250D01* -X264819Y2037500D01* -X263319Y2041250D02*X264819D01* -X266321Y2043500D02*Y2037500D01* -Y2039750D02*X267071Y2040500D01* -X268571D01* -X269321Y2039750D01* -Y2037500D01* -X271122Y2039750D02*Y2038250D01* -Y2039750D02*X271872Y2040500D01* -X273372D01* -X274122Y2039750D01* -Y2038250D01* -X273372Y2037500D02*X274122Y2038250D01* -X271872Y2037500D02*X273372D01* -X271122Y2038250D02*X271872Y2037500D01* -X276674Y2039750D02*Y2037500D01* -Y2039750D02*X277424Y2040500D01* -X278924D01* -X275924D02*X276674Y2039750D01* -X200000Y2058500D02*X203000D01* -X201500D02*Y2052500D01* -X204801Y2057000D02*Y2056250D01* -Y2054750D02*Y2052500D01* -X207053Y2058500D02*Y2053250D01* -X207803Y2052500D01* -X206303Y2056250D02*X207803D01* -X209304Y2058500D02*Y2053250D01* -X210054Y2052500D01* -X212306D02*X214556D01* -X211556Y2053250D02*X212306Y2052500D01* -X211556Y2054750D02*Y2053250D01* -Y2054750D02*X212306Y2055500D01* -X213806D01* -X214556Y2054750D01* -X211556Y2054000D02*X214556D01* -Y2054750D02*Y2054000D01* -X216357Y2056250D02*X217107D01* -X216357Y2054750D02*X217107D01* -X221609Y2053250D02*X222359Y2052500D01* -X221609Y2057750D02*X222359Y2058500D01* -X221609Y2057750D02*Y2053250D01* -X224160Y2055500D02*Y2053250D01* -X224910Y2052500D01* -X226410D01* -X227160Y2053250D01* -Y2055500D02*Y2053250D01* -X229712Y2054750D02*Y2052500D01* -Y2054750D02*X230462Y2055500D01* -X231212D01* -X231962Y2054750D01* -Y2052500D01* -X228962Y2055500D02*X229712Y2054750D01* -X233763Y2058500D02*Y2052500D01* -Y2054750D02*X236013Y2052500D01* -X233763Y2054750D02*X235263Y2056250D01* -X238565Y2054750D02*Y2052500D01* -Y2054750D02*X239315Y2055500D01* -X240065D01* -X240815Y2054750D01* -Y2052500D01* -X237815Y2055500D02*X238565Y2054750D01* -X242616D02*Y2053250D01* -Y2054750D02*X243366Y2055500D01* -X244866D01* -X245616Y2054750D01* -Y2053250D01* -X244866Y2052500D02*X245616Y2053250D01* -X243366Y2052500D02*X244866D01* -X242616Y2053250D02*X243366Y2052500D01* -X247418Y2055500D02*Y2053250D01* -X248168Y2052500D01* -X248918D01* -X249668Y2053250D01* -Y2055500D02*Y2053250D01* -X250418Y2052500D01* -X251168D01* -X251918Y2053250D01* -Y2055500D02*Y2053250D01* -X254469Y2054750D02*Y2052500D01* -Y2054750D02*X255219Y2055500D01* -X255969D01* -X256719Y2054750D01* -Y2052500D01* -X253719Y2055500D02*X254469Y2054750D01* -X258521Y2058500D02*X259271Y2057750D01* -Y2053250D01* -X258521Y2052500D02*X259271Y2053250D01* -X263772Y2055500D02*X266772D01* -X271274Y2058500D02*Y2052500D01* -Y2058500D02*X274274D01* -X271274Y2055500D02*X273524D01* -X278325D02*X279075Y2054750D01* -X276825Y2055500D02*X278325D01* -X276075Y2054750D02*X276825Y2055500D01* -X276075Y2054750D02*Y2053250D01* -X276825Y2052500D01* -X279075Y2055500D02*Y2053250D01* -X279825Y2052500D01* -X276825D02*X278325D01* -X279075Y2053250D01* -X281627Y2058500D02*Y2052500D01* -Y2053250D02*X282377Y2052500D01* -X283877D01* -X284627Y2053250D01* -Y2054750D02*Y2053250D01* -X283877Y2055500D02*X284627Y2054750D01* -X282377Y2055500D02*X283877D01* -X281627Y2054750D02*X282377Y2055500D01* -X287178Y2054750D02*Y2052500D01* -Y2054750D02*X287928Y2055500D01* -X289428D01* -X286428D02*X287178Y2054750D01* -X291230Y2057000D02*Y2056250D01* -Y2054750D02*Y2052500D01* -X293481Y2055500D02*X295731D01* -X292731Y2054750D02*X293481Y2055500D01* -X292731Y2054750D02*Y2053250D01* -X293481Y2052500D01* -X295731D01* -X299783Y2055500D02*X300533Y2054750D01* -X298283Y2055500D02*X299783D01* -X297533Y2054750D02*X298283Y2055500D01* -X297533Y2054750D02*Y2053250D01* -X298283Y2052500D01* -X300533Y2055500D02*Y2053250D01* -X301283Y2052500D01* -X298283D02*X299783D01* -X300533Y2053250D01* -X303834Y2058500D02*Y2053250D01* -X304584Y2052500D01* -X303084Y2056250D02*X304584D01* -X306086Y2057000D02*Y2056250D01* -Y2054750D02*Y2052500D01* -X307587Y2054750D02*Y2053250D01* -Y2054750D02*X308337Y2055500D01* -X309837D01* -X310587Y2054750D01* -Y2053250D01* -X309837Y2052500D02*X310587Y2053250D01* -X308337Y2052500D02*X309837D01* -X307587Y2053250D02*X308337Y2052500D01* -X313139Y2054750D02*Y2052500D01* -Y2054750D02*X313889Y2055500D01* -X314639D01* -X315389Y2054750D01* -Y2052500D01* -X312389Y2055500D02*X313139Y2054750D01* -X320640Y2058500D02*Y2052500D01* -X322890Y2058500D02*X323640Y2057750D01* -Y2053250D01* -X322890Y2052500D02*X323640Y2053250D01* -X319890Y2052500D02*X322890D01* -X319890Y2058500D02*X322890D01* -X326192Y2054750D02*Y2052500D01* -Y2054750D02*X326942Y2055500D01* -X328442D01* -X325442D02*X326192Y2054750D01* -X332493Y2055500D02*X333243Y2054750D01* -X330993Y2055500D02*X332493D01* -X330243Y2054750D02*X330993Y2055500D01* -X330243Y2054750D02*Y2053250D01* -X330993Y2052500D01* -X333243Y2055500D02*Y2053250D01* -X333993Y2052500D01* -X330993D02*X332493D01* -X333243Y2053250D01* -X335795Y2055500D02*Y2053250D01* -X336545Y2052500D01* -X337295D01* -X338045Y2053250D01* -Y2055500D02*Y2053250D01* -X338795Y2052500D01* -X339545D01* -X340295Y2053250D01* -Y2055500D02*Y2053250D01* -X342096Y2057000D02*Y2056250D01* -Y2054750D02*Y2052500D01* -X344348Y2054750D02*Y2052500D01* -Y2054750D02*X345098Y2055500D01* -X345848D01* -X346598Y2054750D01* -Y2052500D01* -X343598Y2055500D02*X344348Y2054750D01* -X350649Y2055500D02*X351399Y2054750D01* -X349149Y2055500D02*X350649D01* -X348399Y2054750D02*X349149Y2055500D01* -X348399Y2054750D02*Y2053250D01* -X349149Y2052500D01* -X350649D01* -X351399Y2053250D01* -X348399Y2051000D02*X349149Y2050250D01* -X350649D01* -X351399Y2051000D01* -Y2055500D02*Y2051000D01* -M02* Index: trunk/tests/orig/golden/hid_gerber3/arcs.group11.gbr =================================================================== --- trunk/tests/orig/golden/hid_gerber3/arcs.group11.gbr (revision 33432) +++ trunk/tests/orig/golden/hid_gerber3/arcs.group11.gbr (nonexistent) @@ -1,48 +0,0 @@ -G04 start of page 4 for group 4 idx 4 * -G04 Title: (unknown), power * -G04 Creator: pcb 1.99z * -G04 CreationDate: Fri Jun 17 03:18:51 2011 UTC * -G04 For: apoelstra * -G04 Format: Gerber/RS-274X * -G04 PCB-Dimensions: 3000000 2000000 * -G04 PCB-Coordinate-Origin: lower left * -%MOIN*% -%FSLAX25Y25*% -%LNGROUP4*% -%ADD27C,0.5000*% -%ADD26C,1.0000*% -%ADD25C,0.6500*% -%ADD24C,0.7500*% -%ADD23C,0.2500*% -G54D23*X1300000Y630000D02*X1302367Y604884D01* -X1309462Y579867D01* -X1321255Y555048D01* -X1337700Y530525D01* -X1358732Y506394D01* -X1384268Y482751D01* -X1414207Y459689D01* -X1448431Y437299D01* -X1486806Y415670D01* -X1529179Y394886D01* -X1575384Y375031D01* -X1625237Y356182D01* -X1678543Y338413D01* -X1735091Y321795D01* -X1794657Y306394D01* -X1857007Y292269D01* -X1921895Y279478D01* -X1989064Y268070D01* -X2058250Y258090D01* -X2129179Y249578D01* -X2201572Y242567D01* -X2275142Y237086D01* -X2349600Y233155D01* -X2424651Y230790D01* -X2499999Y230000D01* -G54D24*X600000Y450000D03* -G54D25*Y290000D03* -G54D26*X450000Y600000D03* -X600000D03* -G54D25*X450000Y290000D03* -G54D24*Y450000D03* -G54D27*G54D23*G54D27*G54D23*G54D27*M02* Index: trunk/tests/orig/README.txt =================================================================== --- trunk/tests/orig/README.txt (revision 33432) +++ trunk/tests/orig/README.txt (nonexistent) @@ -1,108 +0,0 @@ -This is the old test suite inherited from mainline. - -Please read this file before making any modifications to the test suite. - -********************************************************************** -********************************************************************** -* Overview -********************************************************************** -********************************************************************** - -The test suite is based on a shell script, 'run_tests.sh', which -calls pcb to export various test case layouts to different output -formats. The tests to be run are defined in the file 'tests.list'. -The 'tests.list' file defines the export command line options passed -to pcb, the name of the input .pcb file, and the names and file types -for the expected output files. - -After a particular test is run, the output files are compared against -a set of "golden" files which are in the golden/ subdirectory. -ALL CHANGES TO THE GOLDEN FILES MUST BE HAND VERIFIED. This point -can not be emphasized too much. - -While this testsuite is clearly not comprehensive (the GUI is totally -left out of the testing for example), it is still better than nothing -and can help detect newly introduced bugs. - -********************************************************************** -********************************************************************** -* Running an existing test -********************************************************************** -********************************************************************** - -To run all of the tests defined in tests.list run: - - ./run_tests.sh - -To only run a specific test or tests, then simply list them by name -on the command line like: - - ./run_tests.sh test_one test_two ... - -********************************************************************** -********************************************************************** -* Updating existing "golden" files -********************************************************************** -********************************************************************** - -./run_tests.sh --regen - -will regenerate the golden file for . If you are generating -ASCII output such as BOMs or RS-274X files, then use the diff(3) program -to examine all differences. If you are generating a graphics file -such as a PNG, then I suggest saving off a copy and using ImageMagick -to look for the differences visually. The run_tests.sh script has -examples of comparing .png files. Make sure the changes are only -the expected ones and then check the new files back into svn. Do -not blindly update these files as that defeats the purpose of the tests. - -********************************************************************** -********************************************************************** -* Adding New Tests -********************************************************************** -********************************************************************** - ----------------------------------------------------------------------- -Create input files ----------------------------------------------------------------------- - -Create a *small* layout input file and put it in the inputs/ -directory. The goal is to have a file which tests one particular aspect -of the capabilities of pcb. - ----------------------------------------------------------------------- -Add to tests.list ----------------------------------------------------------------------- - -Add an entry to the tests.list file for your new tests. Use existing -entries as an example. - ----------------------------------------------------------------------- -Generate the reference files ----------------------------------------------------------------------- - -Generate the reference files for your new tests using the following - -./run_tests.sh --regen - -where is the name of your new test from tests.list. If you -are adding multiple tests, then you can list them all on the same -command line. - -*IMPORTANT* -Verify that the generated .png files for your new tests are correct. These -files will have been placed in the golden/ subdirectory. - ----------------------------------------------------------------------- -Update Makefile.am's ----------------------------------------------------------------------- - -Update inputs/Makefile.am and golden/Makefile.am to include your new -files. If you added new Makefile.am's then be sure to also update -configure.ac at the top level of the source tree. - ----------------------------------------------------------------------- -Add the new files to svn ----------------------------------------------------------------------- - - Index: trunk/tests/orig/tests.list =================================================================== --- trunk/tests/orig/tests.list (revision 33432) +++ trunk/tests/orig/tests.list (nonexistent) @@ -1,173 +0,0 @@ -# Copyright (c) 2003, 2004, 2005, 2006, 2007, 2009, 2010 Dan McMahill -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of version 2 of the GNU General Public License as -# published by the Free Software Foundation -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# All rights reserved. -# -# This code was derived from code written by Dan McMahill as part of the -# latex-mk testsuite. The original code was covered by a BSD license -# but the copyright holder is releasing the version for pcb under the GPL. -# -# -# Format: -# -# test_name | layout file(s) | [export hid name] | [optional arguments to pcb] | [mismatch] -# | output file(s) -# -# test_name - a single string with no spaces, tabs, *, +, ? (i.e. any "special" -# characters) that identifies the test. -# -# layout file(s) - a list of layout files. Files listed are relative to -# the $(top_srcdir)/tests/inputs directory. -# -# [export hid name] - the name of the export HID to use. This is used both for -# running pcb as well as determining how we process the output -# -# [optional arguments to pcb] - a list of additional arguments to be passed to pcb. -# This is where one would specify additional options which are specific to a particular -# export HID. -# -# [mismatch] If specified as "mismatch" (no quotes), then the result -# should *not* match the reference. This can be thought of as a test -# on the testsuite to make sure we can properly detect when a change has -# occurred. -# -# output file(s) - a list of output files and their associated types. For -# example: -# bom:bom_general.bom xy:test.txt -# specifies that "bom_general.bom" is created and it is a bill of materials file -# and that "test.txt" is created and it is a centroid (X-Y) file. -# -# File types grouped by which HID produces them are: -# -# BOM -# -# bom -- PCB bill of materials file -# xy -- PCB centroid file -# -# GCODE -# -# gcode -- G-Code file. Note that these typically have .cnc as the -# extension but we're already using the 'cnc' type for -# Excellon drill files. -# -# GERBER -# -# cnc -- Excellon drill file -# gbx -- RS274-X (Gerber) file -# -# PNG -# -# gif -- GIF file -# jpg -- JPEG file -# png -- Portable network graphics (PNG) file -# -###################################################################### -# --------------------------------------------- -# BOM export HID -# --------------------------------------------- -###################################################################### -# -# options: -# --bomfile BOM output file -# --xyfile XY output file -# --xy-in-mm XY dimensions in mm instead of mils -# -# -# Produces a bill of materials (BOM) file and a centroid (XY) file -# -hid_bom1 | bom_general.pcb | bom | | | bom:bom_general.bom -hid_bom2 | bom_general.pcb | bom | --bomfile test.bom | | bom:test.bom -hid_bom3 | bom_general.pcb | bom | | | bom:bom_general.bom -hid_bom4 | bom_general.pcb | bom | | | bom:bom_general.bom - -hid_xy1 | bom_general.pcb | XY | | | xy:bom_general.xy -hid_xy2 | bom_general.pcb | XY | | | xy:bom_general.xy -hid_xy3 | bom_general.pcb | XY | --xyfile test.xy | | xy:test.xy -hid_xy4 | bom_general.pcb | XY | --xy-in-mm | | xy:bom_general.xy - - - -###################################################################### -# --------------------------------------------- -# Gcode export HID -# --------------------------------------------- -###################################################################### -# -# options: -# --basename File name prefix -# --dpi Resolution of intermediate image (pixels/inch). -# --mill depth Milling depth. -# --safe Z Safe Z for traverse move. -# --tool radius Milling tool radius compensation. -# --drill depth Drilling depth. -# --measurement unit Measurement unit -# -hid_gcode1 | gcode_oneline.pcb | gcode | | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode2 | gcode_oneline.pcb | gcode | --basename out | | gcode:out.top.cnc gcode:out.bottom.cnc gcode:out.drill.cnc -hid_gcode3 | gcode_oneline.pcb | gcode | --dpi 1200 | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode4 | gcode_oneline.pcb | gcode | --mill-depth 5 | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode5 | gcode_oneline.pcb | gcode | --safe-Z 10 | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode6 | gcode_oneline.pcb | gcode | --tool-radius 15 | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode7 | gcode_oneline.pcb | gcode | --drill-depth 70 | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode8 | gcode_oneline.pcb | gcode | --measurement-unit mm | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode9 | gcode_oneline.pcb | gcode | --measurement-unit mil | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode10 | gcode_oneline.pcb | gcode | --measurement-unit um | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -hid_gcode11 | gcode_oneline.pcb | gcode | --measurement-unit inch | | gcode:gcode_oneline.gcode.top.cnc gcode:gcode_oneline.gcode.bottom.cnc gcode:gcode_oneline.gcode.drill.cnc -# -###################################################################### -# --------------------------------------------- -# Gerber export HID -# --------------------------------------------- -###################################################################### -# -# options: -# --gerberfile Basename for output file -# -# Produces RS274-X (a.k.a. gerber) photo plot files and Excellon drill files -# -# we can't include gbx:gerber_oneline.fab.gbr yet because it has a name and a date stamp -hid_gerber1 | gerber_oneline.pcb | gerber | | | gbx:gerber_oneline.bottom.gbr gbx:gerber_oneline.top.gbr cnc:gerber_oneline.plated-drill.cnc -hid_gerber2 | gerber_oneline.pcb | gerber | --gerberfile out | | gbx:out.bottom.gbr gbx:out.top.gbr cnc:out.plated-drill.cnc -hid_gerber3 | gerber_arcs.pcb | gerber | --gerberfile arcs | | gbx:arcs.top.gbr gbx:arcs.group11.gbr gbx:arcs.group5.gbr cnc:arcs.plated-drill.cnc -# - - -###################################################################### -# --------------------------------------------- -# PNG export HID -# --------------------------------------------- -###################################################################### -# -# options: -# --outfile Graphics output file -# --dpi Scale factor (pixels/inch). 0 to scale to fix specified size -# --x-max Maximum width (pixels). 0 to not constrain. -# --y-max Maximum height (pixels). 0 to not constrain. -# --xy-max Maximum width and height (pixels). 0 to not constrain. -# --as-shown Export layers as shown on screen -# --monochrome Convert to monochrome -# --only-visible Limit the bounds of the PNG file to the visible items -# --use-alpha Make the bottomground and any holes transparent -# --format Graphics file format -# --photo-mode Photo-realistic mode -# --photo-flip-x Show reverse side of the board, left-right flip -# --photo-flip-y Show reverse side of the board, up-down flip -# -# Produces GIF/JPEG/PNG (image) files -# -hid_png1 | gerber_oneline.pcb | png | | | png:gerber_oneline.png -hid_png2 | gerber_oneline.pcb | png | --outfile myfile.png | | png:myfile.png -#hid_png3 | gerber_oneline.pcb | png | --dpi 300 | | png:gerber_oneline.png -# -