diff --git a/fcore/constants.sml b/fcore/constants.sml index 43d49b2..83c951f 100644 --- a/fcore/constants.sml +++ b/fcore/constants.sml @@ -9,8 +9,8 @@ struct val worldHeightReal: Real32.real = 1080.0 (* constants for player *) - val playerWidth = 96 - val playerHeight = 84 + val playerWidth = 84 + val playerHeight = 96 val playerWidthReal: Real32.real = 48.0 val playerHeightReal: Real32.real = 60.0 diff --git a/fcore/level/player/player-vec.sml b/fcore/level/player/player-vec.sml index 15a45fa..578529d 100644 --- a/fcore/level/player/player-vec.sml +++ b/fcore/level/player/player-vec.sml @@ -31,14 +31,6 @@ struct , PlayerWalkLeft6.lerp , PlayerWalkLeft7.lerp , PlayerWalkLeft8.lerp - , PlayerWalkLeft9.lerp - , PlayerWalkLeft8.lerp - , PlayerWalkLeft7.lerp - , PlayerWalkLeft6.lerp - , PlayerWalkLeft5.lerp - , PlayerWalkLeft4.lerp - , PlayerWalkLeft3.lerp - , PlayerWalkLeft2.lerp ] fun getIdle (player, rx, ry, dw, dh, ww, wh) = @@ -50,16 +42,16 @@ struct fun getWalk (rx, ry, dw, dh, ww, wh, walkFrames, animTimer) = let - val frame = (animTimer div 2) mod Vector.length walkFrames + val frame = (animTimer div 4) mod Vector.length walkFrames val func = Vector.sub (walkFrames, Int.max (frame, 0)) in - func (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + func (rx, ry, 3.0, ww, wh) end fun getWhenOnGround (player, rx, ry, dw, dh, ww, wh) = case #xAxis player of MOVE_RIGHT => - getWalk (rx, ry, dw, dh, ww, wh, walkRightFrames, #animTimer player) + getWalk (rx, ry, dw, dh, ww, wh, walkLeftFrames, #animTimer player) | MOVE_LEFT => getWalk (rx, ry, dw, dh, ww, wh, walkLeftFrames, #animTimer player) | STAY_STILL => getIdle (player, rx, ry, dw, dh, ww, wh) diff --git a/fcore/level/player/sprites/walk/player-walk-left-1.sml b/fcore/level/player/sprites/walk/player-walk-left-1.sml index d90630d..d93936b 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-1.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-1.sml @@ -1,373 +1,5177 @@ structure PlayerWalkLeft1 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-2.sml b/fcore/level/player/sprites/walk/player-walk-left-2.sml index 645f90f..10dd587 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-2.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-2.sml @@ -1,403 +1,5117 @@ structure PlayerWalkLeft2 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-3.sml b/fcore/level/player/sprites/walk/player-walk-left-3.sml index 5d5fe48..fa836e9 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-3.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-3.sml @@ -1,373 +1,5267 @@ structure PlayerWalkLeft3 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-4.sml b/fcore/level/player/sprites/walk/player-walk-left-4.sml index 291eb58..e37bae5 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-4.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-4.sml @@ -1,433 +1,5237 @@ structure PlayerWalkLeft4 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-5.sml b/fcore/level/player/sprites/walk/player-walk-left-5.sml index 1b2e788..7c55594 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-5.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-5.sml @@ -1,373 +1,5207 @@ structure PlayerWalkLeft5 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-6.sml b/fcore/level/player/sprites/walk/player-walk-left-6.sml index d6370f0..467b168 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-6.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-6.sml @@ -1,373 +1,5297 @@ structure PlayerWalkLeft6 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-7.sml b/fcore/level/player/sprites/walk/player-walk-left-7.sml index eaec8e0..d04dba0 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-7.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-7.sml @@ -1,373 +1,5267 @@ structure PlayerWalkLeft7 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-left-8.sml b/fcore/level/player/sprites/walk/player-walk-left-8.sml index f539a81..c8d7e6a 100644 --- a/fcore/level/player/sprites/walk/player-walk-left-8.sml +++ b/fcore/level/player/sprites/walk/player-walk-left-8.sml @@ -1,343 +1,5268 @@ structure PlayerWalkLeft8 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end + end diff --git a/fcore/level/player/sprites/walk/player-walk-left-9.sml b/fcore/level/player/sprites/walk/player-walk-left-9.sml deleted file mode 100644 index a00b73a..0000000 --- a/fcore/level/player/sprites/walk/player-walk-left-9.sml +++ /dev/null @@ -1,403 +0,0 @@ -structure PlayerWalkLeft9 = -struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = - let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 - in - #[ (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end -end diff --git a/oms.mlb b/oms.mlb index 51680ab..ab54ce3 100644 --- a/oms.mlb +++ b/oms.mlb @@ -89,7 +89,6 @@ in fcore/level/player/sprites/walk/player-walk-left-6.sml fcore/level/player/sprites/walk/player-walk-left-7.sml fcore/level/player/sprites/walk/player-walk-left-8.sml - fcore/level/player/sprites/walk/player-walk-left-9.sml fcore/level/player/sprites/jump/player-jump-right-1.sml fcore/level/player/sprites/jump/player-jump-right-2.sml