Draft: Added a new bitsnpieces snap style

This commit is contained in:
Yorik van Havre 2013-10-08 17:02:46 -03:00
parent 8507005686
commit 0375c66986
5 changed files with 333 additions and 267 deletions

View File

@ -100,7 +100,7 @@ def typecheck (args_and_types, name="?"):
def getParamType(param):
if param in ["dimsymbol","dimPrecision","dimorientation","precision","defaultWP",
"snapRange","gridEvery","linewidth","UiMode","modconstrain","modsnap",
"modalt","HatchPatternResolution"]:
"modalt","HatchPatternResolution","snapStyle"]:
return "int"
elif param in ["constructiongroupname","textfont","patternFile","template","maxSnapEdges",
"snapModes","FontFile"]:

View File

@ -63,6 +63,7 @@ class Snapper:
self.cursorMode = None
if Draft.getParam("maxSnap"):
self.maxEdges = Draft.getParam("maxSnapEdges")
self.snapStyle = Draft.getParam("snapStyle")
# we still have no 3D view when the draft module initializes
self.tracker = None
@ -86,17 +87,30 @@ class Snapper:
self.polarAngles = [90,45]
# the snapmarker has "dot","circle" and "square" available styles
self.mk = {'passive':'circle',
'extension':'circle',
'parallel':'circle',
'grid':'circle',
'endpoint':'dot',
'midpoint':'square',
'perpendicular':'dot',
'angle':'square',
'center':'dot',
'ortho':'dot',
'intersection':'dot'}
if self.snapStyle:
self.mk = {'passive':'empty',
'extension':'empty',
'parallel':'empty',
'grid':'quad',
'endpoint':'quad',
'midpoint':'quad',
'perpendicular':'quad',
'angle':'quad',
'center':'quad',
'ortho':'quad',
'intersection':'quad'}
else:
self.mk = {'passive':'circle',
'extension':'circle',
'parallel':'circle',
'grid':'circle',
'endpoint':'dot',
'midpoint':'square',
'perpendicular':'dot',
'angle':'square',
'center':'dot',
'ortho':'dot',
'intersection':'dot'}
self.cursors = {'passive':':/icons/Snap_Near.svg',
'extension':':/icons/Snap_Extension.svg',
'parallel':':/icons/Snap_Parallel.svg',
@ -442,7 +456,11 @@ class Snapper:
self.tracker.setMarker(self.mk['extension'])
self.tracker.on()
if self.extLine:
self.extLine.p1(p0)
if self.snapStyle:
dv = np.sub(p0)
self.extLine.p1(p0.add(dv.multiply(0.5)))
else:
self.extLine.p1(p0)
self.extLine.p2(np)
self.extLine.on()
self.setCursor('extension')
@ -492,11 +510,15 @@ class Snapper:
self.setCursor('intersection')
if self.extLine and self.extLine2:
if DraftVecUtils.equals(self.extLine.p1(),self.lastExtensions[0].Vertexes[0].Point):
self.extLine2.p1(self.lastExtensions[1].Vertexes[0].Point)
p0 = self.lastExtensions[1].Vertexes[0].Point
else:
self.extLine2.p1(self.lastExtensions[0].Vertexes[0].Point)
p0 = self.lastExtensions[0].Vertexes[0].Point
if self.snapStyle:
dv = p.sub(p0)
self.extLine2.p1(p0.add(dv.multiply(0.5)))
else:
self.extLine2.p1(p0)
self.extLine2.p2(p)
print self.extLine2.p1(), self.extLine2.p2()
self.extLine2.on()
return p
return None
@ -1116,12 +1138,17 @@ class Snapper:
else:
self.grid = None
self.tracker = DraftTrackers.snapTracker()
self.extLine = DraftTrackers.lineTracker(dotted=True)
self.extLine2 = DraftTrackers.lineTracker(dotted=True)
self.trackLine = DraftTrackers.lineTracker()
if self.snapStyle:
c = FreeCADGui.draftToolBar.getDefaultColor("snap")
self.extLine = DraftTrackers.lineTracker(scolor=c)
self.extLine2 = DraftTrackers.lineTracker(scolor = c)
else:
self.extLine = DraftTrackers.lineTracker(dotted=True)
self.extLine2 = DraftTrackers.lineTracker(dotted=True)
self.radiusTracker = DraftTrackers.radiusTracker()
self.dim1 = DraftTrackers.archDimTracker(mode=2)
self.dim2 = DraftTrackers.archDimTracker(mode=3)
self.trackLine = DraftTrackers.lineTracker()
self.trackers[0].append(v)
self.trackers[1].append(self.grid)
self.trackers[2].append(self.tracker)

View File

@ -114,14 +114,16 @@ class snapTracker(Tracker):
Tracker.__init__(self,children=[node])
def setMarker(self,style):
if (style == "point"):
self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_9_9
elif (style == "dot"):
self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_9_9
elif (style == "square"):
if (style == "square"):
self.marker.markerIndex = coin.SoMarkerSet.DIAMOND_FILLED_9_9
elif (style == "circle"):
self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_LINE_9_9
elif (style == "quad"):
self.marker.markerIndex = coin.SoMarkerSet.SQUARE_FILLED_9_9
elif (style == "empty"):
self.marker.markerIndex = coin.SoMarkerSet.SQUARE_LINE_9_9
else:
self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_9_9
def setCoords(self,point):
self.coords.point.setValue((point.x,point.y,point.z))

View File

@ -2,7 +2,7 @@
# Resource object code
#
# Created: Mon Sep 23 12:04:01 2013
# Created: Tue Oct 8 16:40:11 2013
# by: The Resource Compiler for PyQt (Qt v4.8.5)
#
# WARNING! All changes made in this file will be lost!
@ -41485,189 +41485,193 @@ qt_resource_data = "\
\x00\x6c\x00\x6b\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\
\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\
\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\
\x00\x00\x0b\x42\
\x00\x00\x0b\x86\
\x00\
\x00\x6a\x6f\x78\x9c\xed\x5d\x5b\x93\xda\xb8\x12\x7e\x9f\x5f\xa1\
\xe2\x21\xb5\xa7\x2a\x67\xb8\xcc\x85\x99\x84\x61\x2b\xf7\x49\x55\
\x52\x9b\x0d\xb3\xd9\xc7\x2d\x61\x0b\xd0\x59\xdb\x22\x92\x3c\xc0\
\xd6\xf9\xf1\xa7\x75\x31\xbe\x60\x0c\xc6\x80\x93\x39\xa4\x2a\x35\
\xb6\x24\xb7\xda\xad\xee\x4f\xdd\x2d\xc9\xf4\x7e\x9d\xfb\x1e\x7a\
\x24\x5c\x50\x16\xdc\x35\xda\xe7\xad\x06\x22\x81\xc3\x5c\x1a\x8c\
\xef\x1a\x7f\x3c\xbc\xff\xf7\x4d\xe3\xd7\xfe\x59\x2f\xa4\x71\xa3\
\x4b\x68\xd4\x3f\x43\x3d\xc7\xc3\x42\xf4\x3f\x84\xf4\xc5\x8b\xb7\
\x14\x7b\x6c\x0c\x7f\xbd\xf1\x80\x48\x09\x0f\x8b\xb7\x1c\x8f\x64\
\xaf\x69\x1a\x41\xeb\x19\x75\xc7\x44\x22\x7d\x7f\xd7\xf8\xfd\x4f\
\x7d\xdb\x40\x01\xf6\xc9\x5d\xa3\x90\x88\xea\x0c\xf5\xa6\x9c\x4d\
\x09\x97\x0b\xfb\xc4\x98\x30\x9f\x48\xbe\xd0\x95\xa8\xc7\x89\x23\
\xf5\x15\xea\xcd\xfb\xad\x5e\x73\x6e\x6f\x16\xea\x66\x61\x6f\x80\
\x05\x39\xe9\x77\xdb\x37\xbd\xa6\xb9\x34\xc5\x13\x42\xc7\x13\xd9\
\xbf\x69\x41\xb9\xbd\xd6\x34\x9b\x11\xd1\x5e\x33\xea\x3c\x8f\x93\
\x19\x0d\x5c\x36\x7b\xa0\xd2\x23\x96\x19\x21\x39\x30\xdf\xff\x46\
\x45\x88\x3d\x24\xec\xbb\xf4\x9a\xb6\x7c\x95\xa2\x87\x17\x2c\x8c\
\x65\xf3\xed\x35\x9b\x7f\xd2\x45\x96\x60\xa6\x47\x31\xc5\x0e\x10\
\x6a\x58\xfe\x83\xd0\x1f\x12\xde\xbf\xee\x35\xed\x95\xe1\x3e\xd9\
\xc3\x0a\x09\x1f\xf3\x31\x0d\x32\x14\x6e\x0b\x29\x50\x49\xfc\x58\
\x90\xc9\xb1\xfc\xc0\x59\x38\x05\x9e\xa3\xd1\x1c\x47\xf7\xa6\xf9\
\x4a\xe7\x32\x96\xd5\xaa\xb8\x06\x39\xe2\x5a\xe5\xa6\x50\x68\xb6\
\x1b\x50\x58\x49\x1d\xec\x99\xd2\xbf\x3a\x71\x8f\xf1\xab\xe4\x10\
\xba\x5f\x21\x34\x61\x9c\xfe\xc3\x02\x99\x43\x2a\x4b\x6c\x55\x38\
\x9f\xf0\x90\x78\x11\x25\x4f\xdd\xa4\x1e\xcf\x91\x0e\x99\xcb\x54\
\x83\xa5\x84\xde\x92\x11\x0e\x3d\x89\x3c\x1a\x10\xe4\x30\x8f\xf1\
\x8c\x90\xf2\x25\x65\x0a\x0d\x5b\x09\xbe\x9b\x69\xc6\x57\xde\x43\
\x69\x19\xe1\x2b\x22\x18\xe8\xe2\xc2\x37\x80\xb6\x04\x9a\x4a\x40\
\x8b\xcc\x8b\x10\xd0\xaf\xfe\xef\xf2\xc5\x8b\xfb\x25\xbd\x5e\x53\
\x17\x6e\x7a\x81\x55\x23\xa0\xff\x90\x7b\x1a\xc0\x20\x09\xe9\x82\
\x8d\xdd\x35\x5a\x59\xa9\x41\x8b\x54\x49\x84\x00\x97\xad\x14\x00\
\x2c\x6b\xad\xf1\x77\x5a\x29\x1c\x88\xd9\xca\x12\x5c\x23\x69\x23\
\xb8\x12\x92\x4e\x6b\x8c\xc6\xc2\x2f\x9c\x8c\xde\xa8\x11\x7e\x1d\
\x4a\x09\x62\x8c\x2c\x4b\xd5\x4d\xa1\x4e\x8f\xfe\xd0\xd4\x15\x2a\
\x13\x63\xde\x03\x9d\xe6\xeb\x93\x9c\x10\xe4\x5a\x9d\xd2\x04\xd1\
\x08\xfe\x07\x64\x86\xd8\xf0\x3f\x80\x7d\x59\x1b\x2c\x31\x3a\x9a\
\x5c\xa6\x57\x5d\x96\x11\x39\x27\xae\x42\x68\xf5\x27\x5d\x31\xe6\
\x84\x04\xaa\xca\x5c\xa4\x2b\x87\x5e\x48\x54\x9d\xfe\x9b\x1e\xa3\
\x95\x4e\xb6\xe3\x57\xc9\xf4\x5d\xa0\xe6\x93\xb5\xea\xe4\x58\x59\
\x58\xc3\x73\x76\x15\x8d\xea\xea\x0b\x96\x93\xcd\x3d\x7d\x66\x6e\
\x33\x9a\x46\xf7\x65\xe7\xbd\xa6\x81\xbb\x25\x16\xa6\xaa\x2b\x23\
\x63\xb7\x1a\x32\x5e\xec\x03\x19\xb5\x69\xd7\x86\x8c\x1b\xd0\xfd\
\x84\x8d\x7b\xc1\xc6\xc1\x94\x06\x49\x8f\x23\xc2\x45\x01\xe5\xc3\
\xd8\xf3\xc8\x95\xce\xd6\x98\xa8\xb4\x49\xcb\x62\x7f\xb8\xf8\x88\
\x01\xb2\x32\x3d\x5b\x9f\xab\x93\xf2\xbe\x4a\x51\x2d\x81\x5e\xcb\
\x77\x3a\x21\x58\x3e\x82\x5d\x54\x43\xb0\xcb\x1d\x11\x6c\x10\xe0\
\x29\x12\x0b\x7f\xc8\x3c\x51\xb3\x6f\xb7\xe1\x1d\x4e\x08\x76\x4c\
\xef\x6e\x53\xb0\x50\xde\xbf\x13\x09\x4d\x3b\x39\x78\x49\xf6\xad\
\x2c\x94\x80\x4e\x4e\x5e\x01\x44\x5e\x6e\x0f\x91\xb1\xba\x4f\x88\
\xf3\x77\xde\x8c\xed\xa8\x8a\x4a\x53\xb6\xa6\x80\xe4\x84\x0a\x44\
\x47\x08\x38\x44\x33\x1c\x48\x24\x19\x0a\x05\x41\xca\x08\xf4\x68\
\x36\x13\xd3\x39\x67\xbe\xae\x50\x74\x87\x98\x23\x2c\x22\x43\xd9\
\xdd\x22\x0a\xb0\x1d\x3f\x02\x0f\x21\xe7\x80\x9b\xd6\x10\x71\xe0\
\x26\xdc\x0b\xec\x70\x26\x04\x12\x44\xa8\x0c\x5b\x05\xab\x2c\xa3\
\xe5\xc0\x14\x0b\xc8\x9c\x96\x50\xbc\xff\x2f\x35\x6f\x97\x48\xf3\
\x6c\xaf\xe7\x7f\xb5\xdb\xbb\xab\x3a\xe8\xb7\xa6\x43\xdc\xe7\x08\
\x23\xcb\x02\x0d\x5c\xea\x60\x95\x34\x33\xca\x6e\x15\x6d\xc6\xf8\
\xdf\xaa\x6c\xea\x61\x08\x8a\x12\xb3\x36\xc2\xd3\x29\xc1\x1c\x54\
\x3e\x54\x44\x91\xcb\xf1\x4c\xfd\x55\x6c\xe8\x06\x15\x14\xb0\xc0\
\x08\x26\x6c\x86\xfe\xb4\x3c\x7d\xd1\x3c\x49\x8e\xe1\x55\xb6\x77\
\x74\x2a\xa9\x3b\x74\xaf\x7b\x7d\x88\x3a\x3d\x29\x7d\x9e\xd2\xdf\
\x1c\x44\xe7\xaf\x77\x57\xf9\x8f\x23\x0b\xed\x22\x56\x7d\x1b\x86\
\x81\x01\x78\x9e\xd5\x66\x05\xe1\x23\xb8\x25\x6e\x02\xcc\xcf\xd1\
\x6f\x60\x11\x7c\x46\x05\x79\xae\x6c\x63\x91\x7d\x62\x46\x81\x4b\
\x0e\x4c\x1c\x42\xe3\xdf\xab\xbe\x22\x56\x87\x8b\xea\x33\x4c\x09\
\x75\x57\xa2\xf0\x99\x4b\x4e\x6a\xbe\x06\xdb\xdb\xd5\xc2\xbc\x4d\
\x20\xbe\x31\x53\x05\x3d\x02\x30\x4b\x82\xc4\x84\x90\xed\x75\x62\
\xef\xb1\xde\x86\x17\x39\x05\x7b\x7b\x09\xf6\x00\x0a\xc8\x9b\x09\
\x63\x82\xf0\x15\x90\x04\x53\x25\x8e\xa9\xdb\x10\xec\xf9\x34\xa0\
\x7e\xe8\x0f\x80\xf7\x6d\xe5\x73\xd1\x2a\x16\x50\x25\xf9\x94\x03\
\xf2\x87\x44\x34\xba\xd4\x7e\xeb\xa4\xcf\x26\x24\x40\x0e\x27\xc6\
\x8b\xc1\x3a\xd7\x16\xb9\x25\xe5\x0c\xa4\x0a\x68\x46\x5c\x9d\x40\
\x33\x17\x34\x2b\x22\xe6\xae\xb9\xfd\x57\x9e\x24\x3c\x50\xca\x32\
\xf8\xf6\x01\x81\x70\xd5\xad\x40\x1e\x73\x34\x2c\xd5\x08\x9d\xad\
\x13\x74\xae\x17\xf6\xb1\xa1\xb3\x58\xbd\x7e\x6e\xe8\xbc\x27\x9c\
\xe8\xc4\x86\x83\x03\x24\xa6\xc4\xa1\xa3\x05\xa0\xa4\x4b\xd5\x0e\
\x15\xc6\x17\xc8\x51\x4a\x04\xaf\x08\x70\xa9\x8c\x44\xc9\x45\x24\
\x0b\x9f\x79\xf2\xe5\xd4\x58\xce\xb3\xb1\x7c\xa9\x70\x18\x2a\x74\
\xac\x07\x7e\x31\x96\x9a\xf0\x90\x20\xec\xba\xe0\x40\x03\x28\xab\
\x40\x52\x48\x1c\xb8\x98\xbb\x48\xc3\x14\x82\x66\xce\x04\x59\x2a\
\xc7\xc9\x51\xd8\xce\x94\x0a\x9c\x30\x79\x8d\x23\x5b\x22\x60\xcb\
\x83\xe5\xee\x8e\xa8\x7c\x9f\xd2\x06\xc4\x89\x60\x5e\x58\x33\x1e\
\x9f\x56\x5e\x0b\x84\x7d\xa4\x95\xd7\x4d\x2e\x2c\x9e\x2b\x1c\xce\
\x5f\x01\xbd\x6a\x57\x58\x03\x2d\x58\x59\x6d\x77\x6e\x8e\xb2\xb6\
\xaa\x6d\xc2\x3a\x28\x5f\x13\x06\xf1\x14\x91\x2b\x5d\x99\xa2\x95\
\x68\xb7\xc3\xa6\xc1\x78\x22\xdf\x6e\xdb\xe0\x07\x4e\xdd\xbd\xef\
\x15\x8c\x9d\x89\xea\x00\x5d\x62\x4b\x4c\x89\x8c\x5a\x85\x65\xc1\
\x8f\xa9\x24\xf2\x18\xe4\x97\x4a\x8b\xe9\x58\xcc\x06\x5f\x87\x48\
\x8b\xfd\x01\xf1\xde\x78\x75\xd0\x4a\xd0\xb6\xdc\x67\xc8\x0f\xe1\
\x9d\xfb\x23\xec\x09\xf0\x15\xf4\xf5\x21\x4d\xdd\xbc\xc0\x53\x34\
\xec\x3d\x68\xfc\xd5\x61\xd6\x4d\x8a\xc3\x2d\x12\xe0\xa1\x77\x00\
\xa5\xd8\xda\x94\x94\xcb\x6c\x3c\xe5\x84\x49\x79\x33\xbc\x10\xca\
\xb3\x7e\xa4\x82\x02\x7f\xc6\xba\xe2\xa6\x6a\x91\x66\x48\x02\x70\
\xa5\xa8\x40\xd8\x91\xf4\x91\x24\x92\xd6\x88\x05\xde\xc2\x3c\x12\
\x0a\x93\x19\x71\x98\xef\x83\x5b\x7e\x08\xc3\x7c\x65\x98\x55\x2b\
\x25\x9a\xc3\x6a\x46\x5a\xc2\x98\x8c\x94\xd4\x02\xd1\x87\x93\x59\
\xad\x37\xab\x56\x35\x4f\x3f\x65\x96\x47\xb4\x9f\xb5\xfa\xa6\x06\
\x1b\xd9\xb3\x0c\xf5\x45\x0d\xc5\x01\xd0\x29\x68\xd8\x4b\xd0\xf0\
\x96\x85\xa0\x5c\xeb\x42\x07\x57\xd7\x46\x01\x44\x71\x22\xa7\x16\
\x98\x57\xa9\x6b\xab\xa8\x80\xe5\x72\x46\x00\x90\x09\x06\xd0\xd6\
\x48\xaf\xf6\x71\xec\x8e\x93\x2e\x71\xa8\x0f\x9c\xe7\x87\x2e\x97\
\xbb\x07\x2e\xf9\xa1\x96\x91\x75\xff\x16\xfe\x9d\xdf\xde\xdc\x2e\
\xff\x75\x6f\x20\xf6\xb2\x95\x7b\x89\xbd\x2c\xad\xf6\x79\x2b\xfd\
\x6f\xf7\x5e\x4a\xba\x67\x83\x08\x59\x4e\xd3\x49\xee\x74\x52\x71\
\xa3\x6b\xbb\x78\x4d\xff\xf8\xd3\xc9\x67\x4c\x03\x6d\x8b\x02\x11\
\x08\xe7\x16\xf5\x4d\x29\x37\xa7\x29\x65\xbd\xac\x8f\x95\x87\x2a\
\xde\xc4\x5c\xcb\x34\xa2\x34\xd4\x28\xa8\x0e\x0e\x20\x2a\x50\x61\
\xb6\x0a\x07\xa8\xda\x92\x74\x8e\x06\x36\xb5\x3f\x51\xf9\x7e\xe5\
\x86\x83\xab\xbf\x40\xe2\x7b\x88\x39\x11\xcb\x99\xc7\x8f\xc8\x9c\
\x1f\xe4\x1c\x42\xbb\x75\x94\x64\x99\x82\xe8\x77\xc6\x4e\x9f\x22\
\x40\x1f\x2e\x3f\xb6\xcc\xfc\x6c\x97\x1f\x7b\x00\xc0\x14\x7a\xbf\
\xa9\x4b\x7d\x12\xe4\x6d\x30\xad\x9c\x2f\xdb\x5f\xb6\xec\xba\xda\
\xa4\xb4\x61\x9f\xd9\x16\xbb\x72\xe6\x12\x19\x74\xab\x6f\xfa\x28\
\x7e\x89\xd3\xf4\x71\xf4\x88\x64\xab\x25\x8d\x32\x4b\xcb\xd7\xc5\
\x32\x6a\x5f\x77\xbb\xdd\x4e\xfb\xea\x78\x0b\xcc\x91\xfe\x9b\xfe\
\xf4\x31\x11\xb9\x19\x37\x4a\xf4\x5e\x10\x21\xb4\xce\x3b\x35\x44\
\x08\xea\xf5\x22\x43\x7f\x8a\xf3\x4f\x75\x28\xbe\xad\x06\xc5\xc5\
\xd9\xa6\x2d\xa1\x78\x04\x0c\xd5\x07\xc4\xc5\x99\x88\x13\x10\xef\
\x05\x88\x3f\x81\x27\xfb\xce\xa5\x72\x05\x83\x95\x8b\x4b\x54\xc5\
\xce\xa8\xf6\x60\xf7\x8d\x27\xcf\xc1\x29\x8d\xd2\xcf\x6a\x90\xc3\
\xe0\x86\x9b\x44\x7c\x1e\xdc\x9d\x9f\x7d\x8c\x77\xc6\x24\x9e\x14\
\xa1\x33\x51\xbb\xc7\x9f\x7d\x0f\x99\x7c\xf9\x8a\x53\xec\x99\x4b\
\xb5\x9e\x16\x75\x24\xe4\xc2\xcb\x36\x15\x38\x10\x51\x4b\x5b\x42\
\x38\x1d\x99\xcb\x33\xe0\xc7\x5c\xf9\x2c\x60\x51\x33\xc5\x24\x1a\
\x61\x9f\x7a\x8b\xbc\x7e\x9f\xdf\x13\xef\x91\x28\x57\xec\x79\x4c\
\xdc\x3c\xa4\x59\x9d\x51\x75\xbc\xc8\x30\x73\x96\xf3\xfc\x8b\xd7\
\xcc\x73\xcd\xfd\x41\x96\x14\x54\x1f\xbb\x13\xc6\x1e\x1d\x07\x30\
\x1a\x2b\xd4\xc1\xc8\x95\x7d\xbd\x52\xf5\x5f\x95\x0e\xff\x77\x79\
\xfb\xc0\x31\x05\xd5\x19\xc7\x25\xdf\xde\x00\x05\x7d\xcc\x84\xc8\
\xf2\x3c\x94\x9c\x53\x0c\x62\x9d\x66\x94\xdc\x94\x53\x89\x83\x83\
\x39\x53\xca\xae\x13\xca\xd2\x9e\xd1\x33\xec\x4f\x5f\xa2\x4f\x04\
\xbb\x00\xfa\x98\x73\x88\xb0\xb5\x65\x1c\x72\x8a\x59\x7b\xfc\xd7\
\x1f\xb2\xdc\xf5\x4e\x55\xb1\xe9\x3c\x64\x09\xa5\x04\x38\x33\x87\
\x7d\x7f\x54\xad\x5c\x11\xd9\x36\x83\x1b\x8f\x2e\x93\xe8\x2a\x6f\
\xfc\xd6\x75\xd6\xcc\xf6\x56\xb9\xfb\x6e\xbd\xdd\xdf\xd6\xd7\xfd\
\x1b\xca\x1d\x98\xe4\x6a\x94\xbf\xe5\xa0\xc6\x21\xb0\x1c\xd4\x38\
\x0a\x03\x80\x96\x49\x9d\x83\x60\x18\xa8\x71\x0c\x0c\x03\x35\x0e\
\xc1\x6b\xec\xfc\x2d\xea\x1e\x86\x98\x89\x1a\x87\x22\x66\xa2\xd2\
\x70\xd4\xee\xaa\x54\x4c\x44\xb6\x8b\x97\x1f\xd6\x7b\x2b\xdf\x6c\
\x62\x35\x11\x86\x98\x50\x38\x11\x6e\xfe\x88\xee\xca\xa6\x4f\x77\
\x6d\x1b\xa7\x25\xcf\xa9\xb3\x91\x09\xdd\x22\x49\xd8\x20\xcd\x6e\
\xa1\x62\x82\x24\x85\x84\x39\x41\x51\x56\xfa\x1c\x45\x59\x04\xa0\
\xea\x91\x91\x7c\x0e\x0f\x51\xb3\xc9\x4a\x51\xfc\x38\xf8\x6d\x79\
\xba\xa1\xc2\x22\x4a\x39\x2f\x2c\x35\x80\x4f\xd1\x15\xfb\x04\x82\
\x46\xbf\x24\x65\xfb\xaf\xfa\x70\xe8\xeb\xba\x1c\xfe\xcf\x82\x40\
\x9d\x8a\xeb\xf3\x9d\x5d\x11\x28\x32\x9d\xc1\x04\x4f\xc9\x40\x97\
\xa1\xf7\x2a\xf7\x61\x8e\xe1\xd4\x95\x8c\xbb\x2d\x7c\x9d\x53\x32\
\xee\x98\x87\xed\x9e\xf0\x51\xbb\x01\x81\xb7\x94\x51\xba\x6f\x54\
\x46\xe5\xab\xcc\x0f\xca\xc0\x9e\xee\x31\xb7\xf2\x8b\xe1\x29\x2c\
\x88\xa6\xf5\xf4\xa7\x87\xb7\x81\x80\xd8\xfa\x23\xbf\x2a\x65\xfb\
\xab\x0b\xdf\x25\x2c\x3e\xad\xce\x56\x93\x3b\x2b\x8a\x1c\xe9\xf0\
\xe5\x8a\x12\xa7\xf4\x37\xcb\x4a\xca\xa6\x63\x21\x25\x24\x99\x10\
\xa3\x9d\x5e\x96\xa9\x67\xb3\xf3\xed\xae\x71\xdd\x40\xe6\x43\xdf\
\x77\x8d\x76\xbb\xd1\x54\x2d\xa7\x74\xee\xe3\xe9\x28\x0c\x1c\x25\
\xa8\xfe\xf7\x2f\xfa\xfe\x3d\x67\xfe\x67\xf0\xa5\x06\x2c\xe4\x0e\
\x28\x61\xa6\x95\xfa\xd8\x7b\x28\x24\xf3\x4d\x8f\x42\x73\x92\x2c\
\x31\x5c\x26\x3e\x08\x9f\x00\x92\xf8\x1b\xf0\x6a\x3c\xe6\x92\x04\
\xae\xe8\xdb\xef\xbf\xc3\x68\xd8\x82\x33\x23\x2a\x95\x99\x53\x14\
\x9a\x8a\x80\xf9\x20\xfc\xf9\x44\x09\x4e\x57\x68\x01\x64\xfb\x2d\
\x66\x24\xf1\x99\xbd\x7c\x46\xbe\x84\x62\x12\xd5\xaf\x63\xc6\x30\
\x2b\xaa\x71\x92\xc1\xd7\x5c\x6e\x56\x65\xb7\x8e\x25\x45\x6d\x6f\
\x6c\xd9\x65\xf0\x7c\x01\x2d\x2b\x8f\xc2\xca\xa6\xf1\x5a\x1d\xd4\
\xe3\xb0\x65\x8f\xa7\xe4\x8b\x28\xae\x3d\x92\x8c\x4c\x30\xb6\x86\
\x99\x65\xed\x51\x98\x89\xd6\xef\xf2\x99\x89\x6b\x8f\xc2\x4c\x6a\
\x57\x47\x3e\x47\x99\x26\xd5\xd9\x4a\x17\xe8\xdf\xba\x50\xa7\xa1\
\x15\x90\x0a\x0d\xb9\x0e\x0b\x02\xa2\x81\xd4\x02\xe7\xf2\xde\xf4\
\x2a\x80\x01\xa0\x9d\x73\xc6\x4f\x2d\x59\x05\x6e\x34\x09\x08\x3a\
\x0e\xb0\xd7\x77\x3c\xb5\x5b\xd0\xfd\x45\x6d\x50\x54\x01\x96\x29\
\xd5\x2d\x38\x71\x08\x7d\x4c\xd2\xca\x6c\xad\xd7\xbf\x69\x61\x9a\
\x18\x92\x1e\x93\x7d\x98\xd7\xde\x99\xed\x90\x4b\x9a\xaa\xd8\x48\
\x04\x26\x3f\x61\x67\x24\x75\x8d\xe4\x62\xaa\xe6\x45\xfd\x7a\xa9\
\x55\x99\xde\xbc\x7f\xdb\x59\xfe\xf0\x86\xfa\xe5\x8d\x8b\xee\x6d\
\xfc\xdb\x1b\x4d\xf5\xf4\x2a\x21\x97\x08\x49\x03\x3d\x69\x67\xa9\
\x5d\xb6\xbb\x69\x72\x37\xed\x3c\x72\xe6\x52\xd8\xa1\x49\x89\xf6\
\xa8\x92\x5e\xee\x3b\x3d\xac\x8c\x95\x4c\x53\x32\xbe\xa8\x22\xe3\
\xab\x6e\x3b\x43\xee\xf2\x07\x94\x71\x74\x7e\xe9\xb0\x92\xbd\xba\
\x49\x8b\xe2\xfa\xaa\x8a\x64\x2f\xae\x2e\x7f\x02\xed\x8d\xb6\xf2\
\x1f\x56\xb2\x17\x17\x19\xc9\x76\x2b\xe9\xac\x62\xf7\x87\x97\x6c\
\xde\xf9\xd5\x03\x23\x43\x16\x7d\x2b\xe9\x6f\xa7\x73\xbd\x0d\xd0\
\xac\x97\x72\xf2\x16\xea\x7b\xcd\x90\xf6\xcf\xfe\x07\xa5\x05\x6e\
\x26\
\x00\x6e\x39\x78\x9c\xed\x5d\x5b\x6f\xdb\xb8\x12\x7e\xcf\xaf\x20\
\xfc\x50\xec\x01\x7a\xe2\x4b\x2e\x4e\x5a\xc7\x8b\xde\x53\xa0\xc5\
\x76\xeb\x6c\xf7\x71\x41\x4b\xb4\xcd\x53\x5d\x5c\x91\x8a\xe3\xc5\
\xf9\xf1\x3b\x43\x52\xd6\xc5\xb2\x6c\x59\xb6\x95\x66\x5d\xa0\x88\
\x44\x52\xc3\xd1\x70\xe6\xe3\xcc\x90\xb4\x7a\xbf\x3e\xb8\x0e\xb9\
\x67\x81\xe0\xbe\x77\xd3\x68\x9f\xb6\x1a\x84\x79\x96\x6f\x73\x6f\
\x7c\xd3\xf8\xe3\xee\xfd\x7f\xaf\x1a\xbf\xf6\x4f\x7a\x21\x8f\x1b\
\x9d\x43\xa3\xfe\x09\xe9\x59\x0e\x15\xa2\xff\x21\xe4\x2f\x5e\xbc\
\xe5\xd4\xf1\xc7\xf0\xd7\x19\x0f\x98\x94\xf0\xb0\x78\x1b\xd0\x91\
\xec\x35\x75\x23\x68\x3d\xe3\xf6\x98\x49\xa2\xee\x6f\x1a\xbf\xff\
\xa9\x6e\x1b\xc4\xa3\x2e\xbb\x69\x14\x12\xc1\xce\x48\x6f\x1a\xf8\
\x53\x16\xc8\xb9\x79\x62\xcc\x7c\x97\xc9\x60\xae\x2a\x49\x2f\x60\
\x96\x54\x57\xa4\xf7\xd0\x6f\xf5\x9a\x0f\xe6\x66\x8e\x37\x73\x73\
\x03\x2c\xc8\x49\xbf\xdb\xbe\xea\x35\xf5\xa5\x2e\x9e\x30\x3e\x9e\
\xc8\xfe\x55\x0b\xca\xcd\xb5\xa2\xd9\x8c\x88\xf6\x9a\x51\xe7\x79\
\x9c\xcc\xb8\x67\xfb\xb3\x3b\x2e\x1d\x66\x98\x11\x32\x00\xe6\xfb\
\xdf\xb8\x08\xa9\x43\x84\x79\x97\x5e\xd3\x94\x2f\x53\x74\xe8\xdc\
\x0f\x63\xd9\x7c\x7b\xed\x3f\x7c\x52\x45\x86\x60\xa6\x47\x31\xa5\
\x16\x10\x6a\x18\xfe\xbd\xd0\x1d\xb2\xa0\x7f\xd9\x6b\x9a\x2b\xcd\
\x7d\xb2\x87\x25\x12\x2e\x0d\xc6\xdc\xcb\x50\xb8\x2e\xa4\xc0\x25\
\x73\x63\x41\x26\xc7\xf2\x43\xe0\x87\x53\xe0\x39\x1a\xcd\x71\x74\
\xaf\x9b\x2f\x75\x2e\x63\x59\x2d\x8b\x6b\x90\x23\xae\x65\x6e\x0a\
\x85\x66\xba\x01\x85\x95\xdc\xa2\x8e\x2e\xfd\xab\x13\xf7\x18\xbf\
\x4a\x0e\xa1\xdb\x25\x42\x13\x3f\xe0\x7f\xfb\x9e\xcc\x21\x95\x25\
\xb6\x2c\x9c\x4f\x74\xc8\x9c\x88\x92\x83\x37\xa9\xc7\x73\xa4\xc3\
\x1e\x64\xaa\xc1\x42\x42\x6f\xd9\x88\x86\x8e\x24\x0e\xf7\x18\xb1\
\x7c\xc7\x0f\x32\x42\xca\x97\x94\x2e\xd4\x6c\x25\xf8\x6e\xa6\x19\
\x5f\x7a\x0f\xd4\x32\x16\x2c\x89\x60\xa0\x8a\x0b\xdf\x00\xda\x32\
\x68\x2a\x01\x2d\x32\x2f\xc2\x40\xbf\xfa\xbf\xcb\x17\x2f\x6e\x17\
\xf4\x7a\x4d\x55\xb8\xee\x05\x96\x8d\x80\xff\xcd\x6e\xb9\x07\x83\
\x24\xa4\x0d\x36\x76\xd3\x68\x65\xa5\x06\x2d\x52\x25\x11\x02\x9c\
\xb7\x52\x00\xb0\xa8\x35\xc6\xdf\x69\xa5\x70\x20\x66\x2b\x4b\x70\
\x85\xa4\xb5\xe0\x4a\x48\x3a\xad\x31\x0a\x0b\xbf\x04\x6c\xf4\x06\
\x47\xf8\x75\x28\x25\x88\x31\xb2\x2c\xac\x9b\x42\x9d\x1a\xfd\xa1\
\xae\x2b\x54\x26\xdf\x77\xee\xf8\x34\x5f\x9f\xe4\x84\x11\xdb\xe8\
\x94\x22\x48\x46\xf0\xdf\x63\x33\xe2\x0f\xff\x07\xd8\x97\xb5\xc1\
\x12\xa3\xa3\xc8\x65\x7a\x55\x65\x19\x91\x07\xcc\x46\x84\xc6\x3f\
\xe9\x8a\x71\xc0\x98\x87\x55\xfa\x22\x5d\x39\x74\x42\x86\x75\xea\
\x6f\x7a\x8c\x96\x3a\xd9\x8c\x5f\x94\xe9\x3b\x0f\xe7\x93\x95\xea\
\x64\x19\x59\x18\xc3\xb3\xb6\x15\x0d\x76\xf5\x85\xca\xc9\xfa\x9e\
\x3e\xfb\x76\x33\x9a\x46\x77\x65\xe7\xbd\xa6\x86\xbb\x05\x16\xa6\
\xaa\x2b\x23\x63\xb7\x1a\x32\x9e\xed\x02\x19\x95\x69\xd7\x86\x8c\
\x6b\xd0\xfd\x88\x8d\x3b\xc1\xc6\xc1\x94\x7b\x49\x8f\x23\xc2\x45\
\x01\xe5\xc3\xd8\xf3\xc8\x95\xce\xc6\x98\x88\xda\xa4\x64\xb1\x3b\
\x5c\xbc\xa7\x00\x59\x99\x9e\x8d\xcf\xd5\x49\x79\x5f\xa5\xa8\x96\
\x40\xaf\xc5\x3b\x1d\x11\x2c\x1f\xc1\xce\xaa\x21\xd8\xf9\x96\x08\
\x36\xf0\xe8\x94\x88\xb9\x3b\xf4\x1d\x01\x62\x9d\x3b\x6c\x9f\x08\
\xb6\xd2\xe3\x80\xfe\xf3\xcc\xca\xc2\x0a\xb0\xab\x35\xe0\xe6\x72\
\x8f\xbb\xa1\x3b\x00\x2c\xd8\x14\x6f\x3a\xad\x62\xc0\xa9\x84\x37\
\x55\x0c\x45\xc0\x80\x0c\xf4\x38\x3c\x4e\x43\x59\x1a\xd5\x4d\xd4\
\x2d\x9e\x31\xb1\x33\xad\x00\xdc\x5a\xad\x70\xab\xba\x6e\x66\xfb\
\xae\xc4\xcc\x6b\x2e\x85\x37\xe5\xcc\x62\x05\xba\xbf\x29\x2b\x3b\
\x9f\xd0\x8b\x4d\xfa\x38\xa1\x57\x99\xd0\xf3\x20\xf4\x6a\x4b\x08\
\x7d\xb3\xef\x88\xb8\x5a\x9c\xb6\x2e\xec\x2f\x1f\xa9\x89\xc4\x9c\
\x71\x0c\xd5\x92\xec\x27\x30\xfc\x18\xae\x15\x38\x3b\xe7\x9b\x3b\
\x3b\xb1\xba\x4f\x98\xf5\x3d\xd7\x49\xc0\x8a\x4a\xce\xb7\xa2\x40\
\xe4\x84\x0b\xc2\x47\x04\x38\x24\x33\xea\x49\x22\x7d\x12\x0a\x46\
\xd0\x08\xd4\x68\x36\x13\x8e\x79\xe0\xbb\xaa\x02\xe9\x0e\x69\x40\
\xa8\x88\x0c\x65\x7b\x8b\x28\xf0\xd2\xe8\x3d\xf0\x10\x06\x01\x40\
\xbe\x31\x44\xea\xd9\x89\x40\x81\x5a\x81\x2f\x60\x12\x63\x02\x73\
\xe5\x15\xac\xb2\x8c\x96\x03\x53\xbe\xc7\x1e\x78\x29\xe7\xe1\xdf\
\xa4\xe6\xed\x12\x09\xdb\xcd\xf5\xfc\xaf\x76\x7b\x7b\x55\x07\xfd\
\x56\x74\x98\xfd\x9c\x50\x62\x58\xe0\x9e\xcd\x2d\x8a\xe9\x6f\xad\
\xec\x46\xd1\x66\x7e\xf0\x1d\xcb\xa6\x0e\xf5\x18\x49\x38\x1c\x84\
\x4e\xa7\x8c\x06\xa0\xf2\x21\x12\x25\x76\x40\x67\xf8\x17\xd9\x50\
\x0d\x2a\x28\x60\x81\x11\x4c\xfc\x19\xf9\xd3\xf0\xf4\x45\xf1\x24\
\x03\x0a\xaf\xb2\xf9\xe4\x5b\x49\xdd\xa1\x7b\xd5\xeb\x5d\xd4\xe9\
\x51\xe9\xf3\x94\xfe\x6a\x2f\x3a\x7f\xb9\xbd\xca\x7f\x1c\x19\x68\
\x17\xb1\xea\x9b\x84\x0a\x18\x80\xe3\x18\x6d\x46\x08\x1f\xc1\x2d\
\xb3\x13\x60\x7e\x4a\x7e\x03\x8b\x08\x66\x5c\xb0\xe7\x68\x1b\xf3\
\xec\x13\x33\x0e\x5c\x06\xc0\xc4\x3e\x34\xfe\x3d\xf6\x15\xb1\x3a\
\x9c\x57\x9f\x61\x4a\xa8\x3b\x8a\xc2\xf5\xed\x47\x1b\x86\xd6\xad\
\xe6\x29\x10\xde\x22\xda\x58\x07\xe2\x6b\x73\xce\xd0\x23\x00\xb3\
\x64\x44\x4c\x18\xdb\x5c\x27\x76\x1e\xa6\xae\x79\x91\x63\x9c\xba\
\x93\xc4\x33\x40\x01\x7b\x33\xf1\x7d\xc1\x82\x25\x90\x04\x53\x65\
\x96\xae\xdb\x7d\xa2\xec\xec\xa0\x89\xb2\x42\x20\xbf\x4b\x44\xa3\
\x0b\xed\x37\x4e\xfa\x6c\xc2\x3c\x62\x05\x4c\x7b\x31\x54\x65\xcd\
\x23\xb7\xa4\x9c\x81\x54\x01\xcd\x88\xab\x23\x68\xe6\x82\x66\x45\
\xc4\xdc\x76\x95\xee\x95\x23\x59\xe0\xa1\xb2\x0c\xbe\x7d\x20\x20\
\x5c\xbc\x15\xc4\xf1\x2d\x05\x4b\x35\x42\x67\xeb\x08\x9d\xab\x85\
\x7d\x68\xe8\x2c\x56\xaf\x9f\x1b\x3a\x6f\x59\xc0\x54\x62\xc3\xa2\
\x1e\x11\x53\x66\xf1\xd1\x1c\x50\xd2\xe6\xb8\xd7\xcc\x0f\xe6\xc4\
\x42\x25\x82\x57\x04\xb8\x44\x23\x41\xb9\x88\x64\xe1\x33\x47\xbe\
\x9c\x6a\xcb\x79\x36\x96\x2f\x11\x87\xa1\x42\xc5\x7a\xe0\x17\x53\
\xa9\x08\x0f\x19\xa1\xb6\x0d\x0e\x34\x80\x32\x06\x92\x42\x52\xcf\
\xa6\x81\x4d\x74\xd6\x1f\x9a\x59\x13\x62\xa8\x1c\x26\x47\x61\x3a\
\x43\x15\x38\x62\xf2\x0a\x47\xb6\x44\xc0\x96\x07\xcb\xdd\x2d\x51\
\xf9\x36\xa5\x0d\x24\x60\xc2\x77\xc2\x9a\xf1\xf8\xb8\x87\xa2\x40\
\xd8\x07\xda\x43\xb1\xce\x85\xa5\x0f\x88\xc3\xf9\x7b\x19\x2e\xda\
\x15\x76\x33\x14\xec\x91\x68\x77\xae\x0e\xb2\x4b\x42\xd9\x84\x71\
\x50\xbe\x26\x0c\xe2\x29\x22\x57\xba\x32\x45\x2b\xd1\x6e\x8b\xed\
\xbf\xf1\x44\xbe\xd9\x06\xe0\x0f\x01\xb7\x77\xbe\xeb\x37\x76\x26\
\xaa\x03\x74\x89\xcd\x6d\x25\x32\x6a\x15\x96\x05\x3f\xa6\x92\xc8\
\x63\x90\x5f\x2a\x2d\xa6\x62\x31\x13\x7c\xed\x23\x2d\xf6\x07\xc4\
\x7b\xe3\xe5\x41\x2b\x41\xdb\x70\x9f\x21\x3f\x84\x77\xee\x8f\xa8\
\x23\xc0\x57\x50\xd7\xfb\x34\x75\xfd\x02\x4f\xd1\xb0\x77\xa0\xf1\
\x17\xfb\x59\x37\x29\x0e\xb7\x98\x47\x87\xce\x1e\x94\x62\x63\x53\
\x42\x97\x59\x7b\xca\x09\x93\x72\x66\x74\x2e\xd0\xb3\xbe\xe7\x82\
\x03\x7f\xda\xba\xe2\xa6\xb8\x48\x33\x64\x1e\xb8\x52\x5c\x10\x6a\
\x49\x7e\xcf\x12\x49\x6b\xe2\x7b\xce\x5c\x3f\x12\x0a\x9d\x19\xb1\
\x7c\xd7\x05\xb7\x7c\x1f\x86\xf9\x4a\x33\x8b\x2b\x25\x8a\xc3\x6a\
\x46\x5a\xc2\x98\xb4\x94\x70\x81\xe8\xc3\xd1\xac\x56\x9b\x55\xab\
\x9a\xa7\x9f\x32\xcb\x03\xda\xcf\x4a\x7d\xc3\xc1\x26\xe6\x54\x52\
\x7d\x51\x43\x71\x00\x74\x0c\x1a\x76\x12\x34\xbc\xf5\x43\x50\xae\
\x55\xa1\x83\xad\x6a\xa3\x00\xa2\x38\x91\x53\x0b\xcc\x63\xea\xda\
\x28\x2a\x60\xb9\x9c\x31\x00\x64\x46\x01\xb4\x15\xd2\xe3\x3e\x8e\
\xed\x71\xd2\x66\x16\x77\x81\xf3\xfc\xd0\xe5\x7c\xfb\xc0\x25\x3f\
\xd4\xd2\xb2\xee\x5f\xc3\xbf\xd3\xeb\xab\xeb\xc5\xbf\xee\x15\xc4\
\x5e\xa6\x72\x27\xb1\x97\xa1\xd5\x3e\x6d\xa5\xff\x6d\xdf\x4b\x49\
\xf7\x6c\x10\x21\xcb\x71\x3a\xc9\x9d\x4e\x2a\x6e\x59\x6f\x17\xaf\
\xe9\x1f\x7e\x3a\xf9\x4c\xb9\xa7\x6c\x51\x10\x06\xe1\xdc\xbc\xbe\
\x29\xa5\x78\x2b\xea\x71\x4a\x39\x48\x1e\xaa\x78\xff\x75\x2d\xd3\
\x08\x6a\xa8\x56\x50\x15\x1c\x40\x54\x80\x61\x36\x86\x03\x1c\xb7\
\x24\x9d\x92\x81\x49\xed\x4f\x30\xdf\x8f\x6e\x38\xb8\xfa\x73\x22\
\x7e\x84\x34\x60\x62\x31\xf3\xb8\x11\x99\xd3\xbd\x9c\x28\x6a\xb7\
\x0e\x92\x2c\x43\x88\x7e\xa7\xed\xf4\x29\x02\xf4\xfe\xf2\x63\x8b\
\xcc\xcf\x66\xf9\xb1\x3b\x00\x4c\xa1\xf6\x9b\xda\xdc\x65\x5e\xde\
\x06\xd3\xca\xf9\xb2\xdd\x65\xcb\x2e\xab\x4d\x4a\x6b\xf6\x99\x6d\
\xb0\x2b\xe7\x41\x12\x8d\x6e\xf5\x4d\x1f\xc5\x2f\x71\x9c\x3e\x0e\
\x1e\x91\x6c\xb4\xa4\x51\x66\x69\xf9\xb2\x58\x46\xed\xcb\x6e\xb7\
\xdb\x69\x5f\x1c\x6e\x81\x39\xd2\x7f\xdd\x9f\x3a\x26\x22\xd7\xe3\
\x46\x89\xde\x0b\x22\x84\xd6\x69\xa7\x86\x08\x01\x5f\x2f\x32\xf4\
\xa7\x38\xff\x54\x87\xe2\xeb\x6a\x50\x5c\x9c\x6d\xda\x10\x8a\x47\
\xc0\x50\x7d\x40\x5c\x9c\x89\x38\x02\xf1\x4e\x80\xf8\x13\x78\xb2\
\xef\x6c\x2e\x97\x30\x18\x5d\x5c\x86\x15\x5b\xa3\xda\x9d\xd9\x37\
\x9e\x3c\x07\x87\x1a\xa5\x9e\x55\x20\x47\xc1\x0d\xd7\x89\xf8\x3c\
\xb8\x3b\x3d\xf9\x18\xef\x8c\x49\x3c\x29\x42\x6b\x82\xbb\xc7\x9f\
\xfd\x08\x7d\xf9\xf2\x55\xc0\xa9\xa3\x2f\x71\x3d\x2d\xea\x48\x9d\
\x48\xcd\x34\x15\xd4\x13\x51\x4b\x53\xc2\x02\x3e\xd2\x97\x27\xc0\
\x8f\xbe\x72\x7d\xcf\x8f\x9a\x21\x93\x64\x44\x5d\xee\xcc\xf3\xfa\
\x7d\x7e\xcb\x9c\x7b\x86\xae\xd8\xf3\x98\xb8\x7e\x48\xb1\x3a\xe3\
\x78\xbc\x48\x33\x73\x92\xf3\xfc\x8b\xd7\xbe\x63\xeb\xfb\xbd\x2c\
\x29\x60\x1f\xdb\x13\xa6\x0e\x1f\x7b\x30\x1a\x4b\xd4\xc1\xc8\xd1\
\xbe\x5e\x61\xfd\x57\xd4\xe1\xff\x2f\x6e\xef\x02\xca\x41\x75\xc6\
\x71\xc9\xb7\x37\x40\x41\x1d\x33\x61\xb2\x3c\x0f\x25\xe7\x14\x8d\
\x58\xc7\x19\x25\x37\xe5\x54\xe2\xe0\x60\xce\x94\xb2\xed\x84\xb2\
\xb0\x67\xf2\x8c\xba\xd3\x97\xe4\x13\xa3\x36\x80\x3e\x0d\x02\x88\
\xb0\x1f\xed\x8f\x26\x14\xbe\x6d\x09\xa5\x04\x38\xd3\x87\x7d\x1f\
\xab\x56\x56\xfc\x45\x02\x5f\x92\x8b\xfa\x7e\x83\x00\xbb\xef\xd6\
\xdb\xfd\x75\x7d\xdd\xbf\xe1\x81\x05\x93\x5c\x8d\xf2\x37\x1c\xd4\
\x38\x04\x86\x83\x1a\x47\x61\x00\xd0\x32\xa9\x73\x10\x34\x03\x35\
\x8e\x81\x66\xa0\xc6\x21\x78\x4d\xad\xef\xa2\xee\x61\x88\x99\xa8\
\x71\x28\x62\x26\x2a\x0d\x47\xed\xae\x4a\xc5\x44\x64\xbb\x78\xf9\
\x61\xb5\xb7\xf2\xcd\x24\x56\x13\x61\x88\x0e\x85\x13\xe1\xe6\x63\
\x74\x57\xd6\xfd\x08\xdf\xa6\x71\x5a\xf2\x9c\xba\x3f\xd2\xa1\x5b\
\x24\x09\x13\xa4\x99\x2d\x54\xbe\x60\x49\x21\xd1\x80\x91\x28\x2b\
\x7d\x4a\xa2\x2c\x02\x50\x75\xd8\x48\x3e\x87\x87\xb8\xde\x64\x85\
\x14\x3f\x0e\x7e\x5b\x9c\x6e\xa8\xb0\x88\x52\xce\x0b\x4b\x0d\xe0\
\x53\x74\xc5\x3e\x81\xa0\xc9\x2f\x49\xd9\xfe\xa7\x3e\x1c\xfa\xba\
\x2a\x87\xff\xb3\x20\x50\xa7\xe2\xfa\x7c\x67\x5b\x04\x8a\x4c\x67\
\x30\xa1\x53\x36\x50\x65\xe4\x3d\xe6\x3e\xf4\x31\x9c\xba\x92\x71\
\xd7\x85\xaf\x73\x4c\xc6\x1d\xf2\xb0\xdd\x13\x3e\x6a\x37\x60\xf0\
\x96\x32\x4a\xf7\x8d\xca\xa8\x7c\x95\xf9\x01\x0d\xec\xe9\x1e\x73\
\x2b\xbf\x18\x9e\xc2\x82\x68\x5a\x4f\xff\x88\xf8\x26\x10\x10\x5b\
\x7f\xe4\x57\xa5\x6c\x7f\x79\xe1\xbb\x84\xc5\xa7\xd5\x79\xf1\xc3\
\x94\x59\x45\x8e\x74\xf8\x7c\x49\x89\x53\xfa\x9b\x65\x25\x65\xd3\
\xb1\x90\x12\x92\x4c\x88\xd1\x4c\x2f\x8b\xd4\xb3\xde\xf9\x76\xd3\
\xb8\x6c\x10\xfd\x93\xfd\x37\x8d\x76\xbb\xd1\xc4\x96\x53\xfe\xe0\
\xd2\xe9\x28\xf4\x2c\x14\x54\xff\xc7\x17\x75\xff\x3e\xf0\xdd\xcf\
\xe0\x4b\x0d\xfc\x30\xb0\x40\x09\x33\xad\xf0\xb3\x0d\xa1\x90\xbe\
\xab\x7b\x14\x8a\x93\x64\x89\xe6\x32\xf1\x69\x87\x04\x90\xc4\x5f\
\x73\xc0\xf1\x78\x90\xcc\xb3\x45\xdf\x7c\xc9\x01\x46\xc3\x14\x9c\
\x68\x51\x61\x66\x0e\x29\x34\x91\x80\xfe\xb4\xc3\xe9\x04\x05\xa7\
\x2a\x94\x00\xb2\xfd\x16\x33\x92\xf8\x99\xbd\x7c\x46\xbe\x84\x62\
\x12\xd5\xaf\x62\x46\x33\x2b\xaa\x71\x92\xc1\xd7\x5c\x6e\x96\x65\
\xb7\x8a\x25\xa4\xb6\x33\xb6\xcc\x32\x78\xbe\x80\x16\x95\x07\x61\
\x65\xdd\x78\x2d\x0f\xea\x61\xd8\x32\xc7\x53\xf2\x45\x14\xd7\x1e\
\x48\x46\x3a\x18\x5b\xc1\xcc\xa2\xf6\x20\xcc\x44\xeb\x77\xf9\xcc\
\xc4\xb5\x07\x61\x26\xb5\xab\x23\x9f\xa3\x4c\x93\xea\x6c\xa5\x0b\
\xd4\x57\x6b\xf0\x34\x34\x02\xa9\x50\x90\x6b\xf9\x9e\xc7\x14\x90\
\x1a\xe0\x5c\xdc\xeb\x5e\x05\x30\x00\xb4\x73\xce\xf8\xe1\x92\x95\
\x67\x47\x93\x80\xe0\x63\x8f\x3a\x7d\xcb\xc1\xdd\x82\xf6\x2f\xb8\
\x41\x11\x03\x2c\x5d\xaa\x5a\x04\xcc\x62\xfc\x3e\x49\x2b\xb3\xb5\
\x5e\x7d\x9d\x46\x37\xd1\x24\x1d\x5f\xf6\x61\x5e\x7b\xa7\xb7\x43\
\x2e\x68\x62\xb1\x96\x08\x4c\x7e\xc2\xcc\x48\x78\x4d\xe4\x7c\x8a\
\xf3\xa2\x7a\xbd\xd4\xaa\x4c\xef\xa1\x7f\xdd\x59\x7c\x42\x07\xbf\
\xa1\x73\xd6\xbd\x8e\xbf\xa2\xd3\xc4\xa7\x97\x09\xd9\x4c\x48\xee\
\xa9\x49\x3b\x4b\xed\xbc\xdd\x4d\x93\xbb\x6a\xe7\x91\xd3\x97\xc2\
\x0c\x4d\x4a\xb4\x07\x95\xf4\x62\xdf\xe9\x7e\x65\x8c\x32\x4d\xc9\
\xf8\xac\x8a\x8c\x2f\xba\xed\x0c\xb9\xf3\x47\x28\xe3\xe8\xfc\xd2\
\x7e\x25\x7b\x71\x95\x16\xc5\xe5\x45\x15\xc9\x9e\x5d\x9c\xff\x04\
\xda\x1b\x6d\xe5\xdf\xaf\x64\xcf\xce\x32\x92\xed\x56\xd2\x59\x64\
\xf7\xd1\x4b\x36\xef\xfc\xea\x9e\x91\x21\x8b\xbe\x95\xf4\xb7\xd3\
\xb9\xdc\x04\x68\x56\x4b\x39\x79\x0b\xf5\xbd\x66\xc8\xfb\x27\xff\
\x00\x36\xde\x73\x61\
\x00\x00\x0a\x77\
\x00\
\x00\x54\x26\x78\x9c\xed\x1c\x5d\x73\xdb\x36\xf2\xdd\xbf\x02\xa3\
@ -54010,65 +54014,65 @@ qt_resource_struct = "\
\x00\x00\x00\x64\x00\x01\x00\x00\x00\x01\x00\x00\x0a\xf1\
\x00\x00\x00\x96\x00\x01\x00\x00\x00\x01\x00\x00\x13\x00\
\x00\x00\x00\x7c\x00\x01\x00\x00\x00\x01\x00\x00\x0f\x23\
\x00\x00\x06\xfa\x00\x01\x00\x00\x00\x01\x00\x0b\x0c\x77\
\x00\x00\x04\xa8\x00\x00\x00\x00\x00\x01\x00\x0a\x69\x60\
\x00\x00\x09\x60\x00\x01\x00\x00\x00\x01\x00\x0b\xe3\x6d\
\x00\x00\x0c\x1c\x00\x01\x00\x00\x00\x01\x00\x0c\xcf\x1b\
\x00\x00\x05\xb2\x00\x01\x00\x00\x00\x01\x00\x0a\xa9\x0b\
\x00\x00\x07\x42\x00\x00\x00\x00\x00\x01\x00\x0b\x29\xc1\
\x00\x00\x08\x56\x00\x01\x00\x00\x00\x01\x00\x0b\x92\x6f\
\x00\x00\x0b\x52\x00\x01\x00\x00\x00\x01\x00\x0c\x96\x35\
\x00\x00\x07\xb6\x00\x00\x00\x00\x00\x01\x00\x0b\x53\x90\
\x00\x00\x09\xfa\x00\x01\x00\x00\x00\x01\x00\x0c\x24\x0e\
\x00\x00\x0c\x6c\x00\x01\x00\x00\x00\x01\x00\x0c\xeb\x3f\
\x00\x00\x04\xee\x00\x01\x00\x00\x00\x01\x00\x0a\x82\x82\
\x00\x00\x09\x08\x00\x00\x00\x00\x00\x01\x00\x0b\xc1\x13\
\x00\x00\x08\x7c\x00\x01\x00\x00\x00\x01\x00\x0b\x98\x33\
\x00\x00\x07\x1c\x00\x00\x00\x00\x00\x01\x00\x0b\x17\x2b\
\x00\x00\x05\x12\x00\x01\x00\x00\x00\x01\x00\x0a\x88\x01\
\x00\x00\x07\x8a\x00\x01\x00\x00\x00\x01\x00\x0b\x42\x86\
\x00\x00\x04\xca\x00\x01\x00\x00\x00\x01\x00\x0a\x78\x16\
\x00\x00\x0b\x7a\x00\x00\x00\x00\x00\x01\x00\x0c\xa1\xa4\
\x00\x00\x04\x28\x00\x01\x00\x00\x00\x01\x00\x0a\x43\xce\
\x00\x00\x06\x02\x00\x01\x00\x00\x00\x01\x00\x0a\xc4\x2a\
\x00\x00\x0b\x0a\x00\x01\x00\x00\x00\x01\x00\x0c\x7f\x06\
\x00\x00\x0b\x2c\x00\x01\x00\x00\x00\x01\x00\x0c\x8c\xa1\
\x00\x00\x05\xe0\x00\x00\x00\x00\x00\x01\x00\x0a\xb2\x11\
\x00\x00\x03\xf6\x00\x01\x00\x00\x00\x01\x00\x0a\x3c\x15\
\x00\x00\x08\xe6\x00\x01\x00\x00\x00\x01\x00\x0b\xb9\xbf\
\x00\x00\x0a\x54\x00\x00\x00\x00\x00\x01\x00\x0c\x34\x56\
\x00\x00\x06\x56\x00\x01\x00\x00\x00\x01\x00\x0a\xd5\x9a\
\x00\x00\x0a\x78\x00\x00\x00\x00\x00\x01\x00\x0c\x4b\x09\
\x00\x00\x08\x10\x00\x00\x00\x00\x00\x01\x00\x0b\x6b\x43\
\x00\x00\x05\x64\x00\x01\x00\x00\x00\x01\x00\x0a\x98\x01\
\x00\x00\x0c\x3c\x00\x00\x00\x00\x00\x01\x00\x0c\xd9\xc9\
\x00\x00\x06\xb0\x00\x00\x00\x00\x00\x01\x00\x0a\xec\xd9\
\x00\x00\x04\x54\x00\x00\x00\x00\x00\x01\x00\x0a\x4b\xd5\
\x00\x00\x0c\x9c\x00\x00\x00\x00\x00\x01\x00\x0c\xf7\x18\
\x00\x00\x0a\xc0\x00\x00\x00\x00\x00\x01\x00\x0c\x68\x90\
\x00\x00\x04\x78\x00\x01\x00\x00\x00\x01\x00\x0a\x60\xf5\
\x00\x00\x0a\xe8\x00\x01\x00\x00\x00\x01\x00\x0c\x77\xb7\
\x00\x00\x09\x82\x00\x01\x00\x00\x00\x01\x00\x0b\xec\x16\
\x00\x00\x0b\xa0\x00\x01\x00\x00\x00\x01\x00\x0c\xaa\x31\
\x00\x00\x06\xd8\x00\x01\x00\x00\x00\x01\x00\x0a\xff\x18\
\x00\x00\x07\xe8\x00\x01\x00\x00\x00\x01\x00\x0b\x61\x92\
\x00\x00\x09\xd8\x00\x00\x00\x00\x00\x01\x00\x0c\x0f\x7d\
\x00\x00\x05\x88\x00\x01\x00\x00\x00\x01\x00\x0a\x9e\xca\
\x00\x00\x08\x36\x00\x00\x00\x00\x00\x01\x00\x0b\x7c\xfb\
\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x0a\xd0\x1b\
\x00\x00\x0a\x24\x00\x01\x00\x00\x00\x01\x00\x0c\x2a\x83\
\x00\x00\x08\xbe\x00\x01\x00\x00\x00\x01\x00\x0b\xae\x4d\
\x00\x00\x09\x38\x00\x01\x00\x00\x00\x01\x00\x0b\xd3\x97\
\x00\x00\x0b\xf2\x00\x01\x00\x00\x00\x01\x00\x0c\xc4\x99\
\x00\x00\x0a\x9c\x00\x01\x00\x00\x00\x01\x00\x0c\x5d\xe0\
\x00\x00\x05\x34\x00\x01\x00\x00\x00\x01\x00\x0a\x8f\xdf\
\x00\x00\x0b\xc6\x00\x01\x00\x00\x00\x01\x00\x0c\xb4\xf6\
\x00\x00\x08\x9e\x00\x00\x00\x00\x00\x01\x00\x0b\x9e\x7b\
\x00\x00\x06\x84\x00\x00\x00\x00\x00\x01\x00\x0a\xdd\x7f\
\x00\x00\x07\x6a\x00\x01\x00\x00\x00\x01\x00\x0b\x39\x12\
\x00\x00\x09\xa6\x00\x00\x00\x00\x00\x01\x00\x0b\xf3\x67\
\x00\x00\x03\xa2\x00\x01\x00\x00\x00\x01\x00\x0a\x27\x9b\
\x00\x00\x03\xce\x00\x01\x00\x00\x00\x01\x00\x0a\x32\x16\
\x00\x00\x06\xfa\x00\x01\x00\x00\x00\x01\x00\x0b\x0c\xbb\
\x00\x00\x04\xa8\x00\x00\x00\x00\x00\x01\x00\x0a\x69\xa4\
\x00\x00\x09\x60\x00\x01\x00\x00\x00\x01\x00\x0b\xe3\xb1\
\x00\x00\x0c\x1c\x00\x01\x00\x00\x00\x01\x00\x0c\xcf\x5f\
\x00\x00\x05\xb2\x00\x01\x00\x00\x00\x01\x00\x0a\xa9\x4f\
\x00\x00\x07\x42\x00\x00\x00\x00\x00\x01\x00\x0b\x2a\x05\
\x00\x00\x08\x56\x00\x01\x00\x00\x00\x01\x00\x0b\x92\xb3\
\x00\x00\x0b\x52\x00\x01\x00\x00\x00\x01\x00\x0c\x96\x79\
\x00\x00\x07\xb6\x00\x00\x00\x00\x00\x01\x00\x0b\x53\xd4\
\x00\x00\x09\xfa\x00\x01\x00\x00\x00\x01\x00\x0c\x24\x52\
\x00\x00\x0c\x6c\x00\x01\x00\x00\x00\x01\x00\x0c\xeb\x83\
\x00\x00\x04\xee\x00\x01\x00\x00\x00\x01\x00\x0a\x82\xc6\
\x00\x00\x09\x08\x00\x00\x00\x00\x00\x01\x00\x0b\xc1\x57\
\x00\x00\x08\x7c\x00\x01\x00\x00\x00\x01\x00\x0b\x98\x77\
\x00\x00\x07\x1c\x00\x00\x00\x00\x00\x01\x00\x0b\x17\x6f\
\x00\x00\x05\x12\x00\x01\x00\x00\x00\x01\x00\x0a\x88\x45\
\x00\x00\x07\x8a\x00\x01\x00\x00\x00\x01\x00\x0b\x42\xca\
\x00\x00\x04\xca\x00\x01\x00\x00\x00\x01\x00\x0a\x78\x5a\
\x00\x00\x0b\x7a\x00\x00\x00\x00\x00\x01\x00\x0c\xa1\xe8\
\x00\x00\x04\x28\x00\x01\x00\x00\x00\x01\x00\x0a\x44\x12\
\x00\x00\x06\x02\x00\x01\x00\x00\x00\x01\x00\x0a\xc4\x6e\
\x00\x00\x0b\x0a\x00\x01\x00\x00\x00\x01\x00\x0c\x7f\x4a\
\x00\x00\x0b\x2c\x00\x01\x00\x00\x00\x01\x00\x0c\x8c\xe5\
\x00\x00\x05\xe0\x00\x00\x00\x00\x00\x01\x00\x0a\xb2\x55\
\x00\x00\x03\xf6\x00\x01\x00\x00\x00\x01\x00\x0a\x3c\x59\
\x00\x00\x08\xe6\x00\x01\x00\x00\x00\x01\x00\x0b\xba\x03\
\x00\x00\x0a\x54\x00\x00\x00\x00\x00\x01\x00\x0c\x34\x9a\
\x00\x00\x06\x56\x00\x01\x00\x00\x00\x01\x00\x0a\xd5\xde\
\x00\x00\x0a\x78\x00\x00\x00\x00\x00\x01\x00\x0c\x4b\x4d\
\x00\x00\x08\x10\x00\x00\x00\x00\x00\x01\x00\x0b\x6b\x87\
\x00\x00\x05\x64\x00\x01\x00\x00\x00\x01\x00\x0a\x98\x45\
\x00\x00\x0c\x3c\x00\x00\x00\x00\x00\x01\x00\x0c\xda\x0d\
\x00\x00\x06\xb0\x00\x00\x00\x00\x00\x01\x00\x0a\xed\x1d\
\x00\x00\x04\x54\x00\x00\x00\x00\x00\x01\x00\x0a\x4c\x19\
\x00\x00\x0c\x9c\x00\x00\x00\x00\x00\x01\x00\x0c\xf7\x5c\
\x00\x00\x0a\xc0\x00\x00\x00\x00\x00\x01\x00\x0c\x68\xd4\
\x00\x00\x04\x78\x00\x01\x00\x00\x00\x01\x00\x0a\x61\x39\
\x00\x00\x0a\xe8\x00\x01\x00\x00\x00\x01\x00\x0c\x77\xfb\
\x00\x00\x09\x82\x00\x01\x00\x00\x00\x01\x00\x0b\xec\x5a\
\x00\x00\x0b\xa0\x00\x01\x00\x00\x00\x01\x00\x0c\xaa\x75\
\x00\x00\x06\xd8\x00\x01\x00\x00\x00\x01\x00\x0a\xff\x5c\
\x00\x00\x07\xe8\x00\x01\x00\x00\x00\x01\x00\x0b\x61\xd6\
\x00\x00\x09\xd8\x00\x00\x00\x00\x00\x01\x00\x0c\x0f\xc1\
\x00\x00\x05\x88\x00\x01\x00\x00\x00\x01\x00\x0a\x9f\x0e\
\x00\x00\x08\x36\x00\x00\x00\x00\x00\x01\x00\x0b\x7d\x3f\
\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x0a\xd0\x5f\
\x00\x00\x0a\x24\x00\x01\x00\x00\x00\x01\x00\x0c\x2a\xc7\
\x00\x00\x08\xbe\x00\x01\x00\x00\x00\x01\x00\x0b\xae\x91\
\x00\x00\x09\x38\x00\x01\x00\x00\x00\x01\x00\x0b\xd3\xdb\
\x00\x00\x0b\xf2\x00\x01\x00\x00\x00\x01\x00\x0c\xc4\xdd\
\x00\x00\x0a\x9c\x00\x01\x00\x00\x00\x01\x00\x0c\x5e\x24\
\x00\x00\x05\x34\x00\x01\x00\x00\x00\x01\x00\x0a\x90\x23\
\x00\x00\x0b\xc6\x00\x01\x00\x00\x00\x01\x00\x0c\xb5\x3a\
\x00\x00\x08\x9e\x00\x00\x00\x00\x00\x01\x00\x0b\x9e\xbf\
\x00\x00\x06\x84\x00\x00\x00\x00\x00\x01\x00\x0a\xdd\xc3\
\x00\x00\x07\x6a\x00\x01\x00\x00\x00\x01\x00\x0b\x39\x56\
\x00\x00\x09\xa6\x00\x00\x00\x00\x00\x01\x00\x0b\xf3\xab\
\x00\x00\x03\xa2\x00\x01\x00\x00\x00\x01\x00\x0a\x27\xdf\
\x00\x00\x03\xce\x00\x01\x00\x00\x00\x01\x00\x0a\x32\x5a\
\x00\x00\x03\x76\x00\x01\x00\x00\x00\x01\x00\x0a\x1c\x55\
"

View File

@ -115,10 +115,36 @@
<item>
<widget class="QLabel" name="label_4">
<property name="text">
<string>Snap symbols color</string>
<string>Snap symbols style</string>
</property>
</widget>
</item>
<item>
<widget class="Gui::PrefComboBox" name="gui::prefcombobox_2">
<property name="minimumSize">
<size>
<width>200</width>
<height>0</height>
</size>
</property>
<property name="prefEntry" stdset="0">
<cstring>snapStyle</cstring>
</property>
<property name="prefPath" stdset="0">
<cstring>Mod/Draft</cstring>
</property>
<item>
<property name="text">
<string>Draft classic style</string>
</property>
</item>
<item>
<property name="text">
<string>Bitsnpieces style</string>
</property>
</item>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_4">
<property name="orientation">
@ -132,6 +158,13 @@
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_8">
<property name="text">
<string>Color</string>
</property>
</widget>
</item>
<item>
<widget class="Gui::PrefColorButton" name="gui::prefcolorbutton_2">
<property name="toolTip">