content
stringlengths 4
1.04M
| lang
stringclasses 358
values | score
int64 0
5
| repo_name
stringlengths 5
114
| repo_path
stringlengths 4
229
| repo_licenses
listlengths 1
8
|
---|---|---|---|---|---|
#!/usr/bin/perl
# Simple script to generate a POST result.
#
# Depending on which button was pushed in the form, we either generate a direct
# result page, or we use the pattern where the post returns a 303 redirect,
# and then the resulting GET yields the true POST result. Sites do this trick
# to avoid having POSTS in the b/f list, so you don't run into POSTs getting
# resubmitted by accident.
use CGI;
$query = new CGI;
$submitWithPost = $query->param('submitwithpost');
$submitWithPostRedirect = $query->param('submitwithpostredirect');
$submitWithPostRedirectReload = $query->param('submitwithpostredirectreload');
$redirectHappened = $query->param('redirectHappened');
$method = $query->request_method();
if (($submitWithPost && $method eq "POST") || ($redirectHappened && $method eq "GET")) {
$textFieldData = $query->param('textfield1');
print "Content-type: text/html\r\n";
print "Cache-Control: no-store, no-cache, must-revalidate\r\n";
print "\r\n";
print <<HERE_DOC_END;
<html>
<body style="font-size: 32">
This is just a minimal page that we navigate in response to an HTTP POST.
<br>
<br>
If the next line is empty after the colon, it probably means that we made
a mistake and requested this page with a GET with no query instead of a POST.
<br>
<br>
The first text field contained: $textFieldData
<br>
This page was requested with an HTTP $method
</body>
</html>
HERE_DOC_END
} elsif ($submitWithPostRedirectReload && $method eq "POST") {
print "Status: 303 See Other\r\n";
print "Location: reloadresult.pl\r\n";
print "Content-type: text/html\r\n";
print "\r\n";
print <<HERE_DOC_END
<html>
<body style="font-size: 32">
This page should not be seen - it is a 303 redirect to another page.
</body>
</html>
HERE_DOC_END
} elsif ($submitWithPostRedirect && $method eq "POST") {
$urlQuery = $query->query_string;
$urlQuery =~ s/;/&/g; # cheapo conversion from POST data to URL query format
# redirect to the same page, with an added param to show we've already been here
$urlQuery .= "&redirectHappened=true";
print "Status: 303 See Other\r\n";
printf "Location: postresult.pl?%s\r\n", $urlQuery;
print "Content-type: text/html\r\n";
print "\r\n";
print <<HERE_DOC_END
<html>
<body style="font-size: 32">
This page should not be seen - it is a 303 redirect to another page.
</body>
</html>
HERE_DOC_END
} else {
$queryString = $query->query_string;
print "Content-type: text/html\r\n";
print "\r\n";
print <<HERE_DOC_END
<html>
<body style="font-size: 32">
Test failure: postresult.pl was called with an unexpected set of parameters.
<br>
This page was requested with an HTTP $method
<br>
The query parameters are: $queryString
</body>
</html>
HERE_DOC_END
}
| Perl | 3 | zealoussnow/chromium | third_party/blink/web_tests/http/tests/navigation/resources/postresult.pl | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
#tag Class
Protected Class NLS
#tag Method, Flags = &h0
Function AccountCreate() As String
Soft Declare Function nls_account_create Lib App.BNCSUtil _
(NLS As Ptr, Buffer As Ptr, BufLen As Integer) As Integer
Dim buf As New MemoryBlock(Len(Me.mUsername) + 65)
Call nls_account_create(Me.mInternalNLS, buf, buf.Size)
Return buf
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function AccountLogon() As String
Soft Declare Sub nls_get_A Lib App.BNCSUtil _
(NLS As Ptr, Buffer As Ptr)
Dim buf As New MemoryBlock(32)
nls_get_A(Me.mInternalNLS, buf)
Return buf + MemClass.WriteCString(Me.mUsername)
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function AccountLogonProof(Salt As String, ServerKey As String) As String
Soft Declare Sub nls_get_M1 Lib App.BNCSUtil _
(NLS As Ptr, Buffer As Ptr, B As Ptr, Salt As Ptr)
Dim buf As New MemoryBlock(20)
Dim b As MemoryBlock = Globals.StringToMemory(ServerKey)
Dim s As MemoryBlock = Globals.StringToMemory(Salt)
nls_get_M1(Me.mInternalNLS, buf, b, s)
Return buf
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub Constructor(Username As String, Password As String)
Soft Declare Function nls_init Lib App.BNCSUtil _
(Username As Ptr, Password As Ptr) As Ptr
Me.mUsername = Username
Me.mPassword = Password
Dim lUsername As MemoryBlock = Globals.StringToMemory(Me.mUsername)
Dim lPassword As MemoryBlock = Globals.StringToMemory(Me.mPassword)
Me.mInternalNLS = nls_init(lUsername, lPassword)
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Destructor()
Soft Declare Sub nls_free Lib App.BNCSUtil (NLS As Ptr)
nls_free(Me.mInternalNLS)
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function ServerPasswordProof(Buffer As String) As Boolean
Soft Declare Function nls_check_M2 Lib App.BNCSUtil _
(NLS As Ptr, Buffer As Ptr, B As Ptr, Salt As Ptr) As Boolean
Dim buf As MemoryBlock = Globals.StringToMemory(Buffer)
Dim b As New MemoryBlock(32) // Defunct
Dim s As New MemoryBlock(32) // Defunct
Return nls_check_M2(Me.mInternalNLS, buf, b, s)
End Function
#tag EndMethod
#tag Property, Flags = &h0
mInternalNLS As Ptr
#tag EndProperty
#tag Property, Flags = &h1
Protected mPassword As String
#tag EndProperty
#tag Property, Flags = &h1
Protected mUsername As String
#tag EndProperty
#tag ViewBehavior
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass
| REALbasic | 4 | carlbennett/BNRBot | src/Classes/NLS.rbbas | [
"MIT"
] |
/*
HelloWorld.ino
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
Copyright (c) 2016, [email protected]
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <Arduino.h>
#include <U8g2lib.h>
uint8_t light_to_pin[4] = { 11, 10, 9, 8 };
uint8_t switch_to_pin[4] = { 7, 6, 5, 4 };
#define SWITCH_ON 0
#define SWITCH_OFF 1
#define LIGHT_ON 1
#define LIGHT_OFF 0
#define TIMEOUT 3000
uint8_t switch_status[4];
#define DEBOUNCE_CNT 3
uint8_t switch_debounce[4];
uint8_t is_switch_changed;
uint8_t last_switch_on_cnt; // number of "on" switches before the last change
uint8_t switch_on_cnt; // current number of "on" switches
uint8_t max_on_cnt; // last number max number of "on" switches
// max_on_cnt==1: max_on_cnt_pos1 --> on switch
// max_on_cnt==2: max_on_cnt_pos1/2 --> on switch
// max_on_cnt==3: max_on_cnt_pos1 --> off switch
// max_on_cnt==4: max_on_cnt_pos1 --> last switch which was turned off
int8_t max_on_cnt_pos1 = -1;
int8_t max_on_cnt_pos2 = -1;
int8_t user_pos1;
int8_t user_pos2;
int8_t max_on_cnt_npos1 = -1;
int8_t max_on_cnt_npos2 = -1;
uint32_t switch_changed_millis;
uint8_t map_switch_to_light[4];
#define STATE_WAIT 0
#define STATE_DELAYED_SWAP_WAIT 1
uint8_t state = STATE_WAIT;
U8G2_SSD1306_128X32_UNIVISION_F_HW_I2C u8g2(U8G2_R3, /* reset=*/ U8X8_PIN_NONE);
U8G2LOG u8g2log;
uint8_t u8log_buffer[6*14];
void init_switch(void)
{
uint8_t i;
for( i = 0; i < 4; i++ )
{
pinMode(switch_to_pin[i], INPUT_PULLUP);
switch_debounce[i] = 0;
switch_status[i] = 2;
map_switch_to_light[i] = i;
}
}
void read_switch_status(void)
{
uint8_t i, v, on_cnt;
int8_t pos1, pos2, npos1;
for( i = 0; i < 4; i++ )
{
v = digitalRead(switch_to_pin[i]);
if ( switch_debounce[i] > 0 )
{
if ( switch_status[i] == v )
{
switch_debounce[i] = 0; // do nothing, wait for other values
}
else
{
switch_debounce[i]--;
if ( switch_debounce[i] == 0 )
{
switch_status[i] = v; // new value detected
is_switch_changed = 1;
switch_changed_millis = millis();
break; // break out of the loop, so that we detect only one change at a time
}
}
}
else if ( switch_status[i] != v )
{
switch_debounce[i] = DEBOUNCE_CNT; // start debounce
}
}
on_cnt = 0;
pos1 = -1;
pos2 = -1;
for( i = 0; i < 4; i++ )
{
if ( switch_status[i] == SWITCH_ON )
{
on_cnt++;
if ( pos1 < 0 )
pos1 = i;
else
pos2 = i;
}
else
{
npos1 = i;
}
}
if ( switch_on_cnt != on_cnt )
{
last_switch_on_cnt = switch_on_cnt;
switch_on_cnt = on_cnt;
if ( last_switch_on_cnt < switch_on_cnt )
{
max_on_cnt = on_cnt;
if ( max_on_cnt == 1 )
{
max_on_cnt_pos1 = pos1;
max_on_cnt_pos2 = -1;
}
else if ( max_on_cnt == 2 )
{
max_on_cnt_pos1 = pos1;
max_on_cnt_pos2 = pos2;
}
else if ( max_on_cnt == 3 )
{
max_on_cnt_pos1 = npos1;
max_on_cnt_pos2 = -1;
}
else if ( max_on_cnt == 4 )
{
max_on_cnt_pos1 = -1;
max_on_cnt_pos2 = -1;
}
else
{
max_on_cnt_pos1 = -1;
max_on_cnt_pos2 = -1;
}
}
else if ( last_switch_on_cnt > switch_on_cnt )
{
if ( max_on_cnt == 4 )
{
if ( switch_on_cnt == 1 )
{
max_on_cnt_pos1 = pos1;
max_on_cnt_pos2 = -1;
}
}
}
}
}
void print_switch_status(void)
{
uint8_t i;
u8g2log.print(last_switch_on_cnt);
u8g2log.print(">");
u8g2log.print(switch_on_cnt);
u8g2log.print("/");
u8g2log.print(max_on_cnt);
u8g2log.print("\n");
u8g2log.print(max_on_cnt_pos1);
u8g2log.print("/");
u8g2log.print(max_on_cnt_pos2);
u8g2log.print("\n");
for( i = 0; i < 4; i++ )
u8g2log.print(switch_status[i] == 0 ? "*" : ".");
u8g2log.print("\n");
}
void init_light(void)
{
uint8_t i;
for( i = 0; i < 4; i++ )
{
digitalWrite(light_to_pin[i], 1);
pinMode(light_to_pin[i], OUTPUT);
digitalWrite(light_to_pin[i], 1);
}
}
void write_switch_to_light(void)
{
uint8_t i;
for( i = 0; i < 4; i++ )
{
if ( switch_status[i] == SWITCH_ON )
digitalWrite(light_to_pin[map_switch_to_light[i]], LIGHT_ON);
else
digitalWrite(light_to_pin[map_switch_to_light[i]], LIGHT_OFF);
}
}
/*==============================================*/
void next_state(void)
{
read_switch_status();
switch(state)
{
case STATE_WAIT:
if ( switch_changed_millis+TIMEOUT < millis() )
{
if ( switch_on_cnt == 0 )
{
switch_changed_millis = millis();
if ( max_on_cnt == 1 ) // main command "1 light max"
{
if ( max_on_cnt_pos1 == 0 ) // sub cmd reset
{
uint8_t i;
for( i = 0; i < 4; i++ )
{
map_switch_to_light[i] = i;
}
u8g2log.print(F("reset\n"));
}
else if ( max_on_cnt_pos1 == 1 ) // sub cmd user choice
{
state = STATE_DELAYED_SWAP_WAIT;
user_pos1 = -1;
user_pos2 = -1;
u8g2log.print(F("user\n"));
}
}
else if ( max_on_cnt == 2 ) // main command "2 light max"
{
// swap two pins
uint8_t tmp;
tmp = map_switch_to_light[max_on_cnt_pos1];
map_switch_to_light[max_on_cnt_pos1] = map_switch_to_light[max_on_cnt_pos2];
map_switch_to_light[max_on_cnt_pos2] = tmp;
u8g2log.print(F("swap\n"));
}
else
{
u8g2log.print("t-out\n");
}
max_on_cnt = 0; // ensure, that the command is not executed again
}
}
break;
case STATE_DELAYED_SWAP_WAIT: // user choice
{
uint8_t i, j;
for( i = 0; i < 4; i++ )
{
if ( user_pos1 != i && switch_status[i] == SWITCH_ON )
{
if ( user_pos1 < 0 )
user_pos1 = i;
else
{
uint8_t tmp;
user_pos2 = i;
tmp = 1<<user_pos1;
tmp |= 1<<user_pos2;
max_on_cnt_npos1 = -1;
max_on_cnt_npos2 = -1;
for( j = 0; j < 4; j++ )
{
if ( ( tmp & (1<<j) ) == 0 )
{
if ( max_on_cnt_npos1 < 0 )
max_on_cnt_npos1 = j;
else
max_on_cnt_npos2 = j;
}
}
tmp = map_switch_to_light[max_on_cnt_npos1];
map_switch_to_light[max_on_cnt_npos1] = map_switch_to_light[max_on_cnt_npos2];
map_switch_to_light[max_on_cnt_npos2] = tmp;
u8g2log.print(F("swap2\n"));
u8g2log.print(max_on_cnt_npos1);
u8g2log.print(F("<>"));
u8g2log.print(max_on_cnt_npos2);
u8g2log.print(F("\n"));
state = STATE_WAIT;
switch_changed_millis = millis();
}
}
}
}
break;
default:
state = STATE_WAIT;
break;
}
if ( is_switch_changed != 0 )
{
print_switch_status();
write_switch_to_light();
is_switch_changed = 0;
}
}
/*==============================================*/
void setup(void)
{
u8g2.begin();
//u8g2.setFont(u8g2_font_tom_thumb_4x6_mf); // set the font for the terminal window
//u8g2.setFont(u8g2_font_lucasfont_alternate_tr);
u8g2.setFont(u8g2_font_6x12_tr);
u8g2log.begin(u8g2, 6, 14, u8log_buffer);
init_switch();
init_light();
}
void loop(void)
{
next_state();
}
| Arduino | 5 | Linghhh/u8g2 | sys/arduino/u8g2_full_buffer/SwitchBox/SwitchBox.ino | [
"BSD-2-Clause"
] |
def _asn1_ber_torepr:
if .class == "universal" then
if .tag | . == "sequence" or . == "set" then
.constructed | map(_asn1_ber_torepr)
else .value | tovalue
end
else .constructed | map(_asn1_ber_torepr)
end;
def _asn1_ber__help:
{ notes: "Supports decoding BER, CER and DER (X.690).
- Currently no extra validation is done for CER and DER.
- Does not support specifying a schema.
- Supports `torepr` but without schema all sequences and sets will be arrays.",
examples: [
{comment: "`frompem` and `topem` can be used to work with PEM format", shell: "fq -d raw 'frompem | asn1_ber | d' cert.pem"},
{comment: "Can be used to decode nested parts", shell: "fq -d asn1_ber '.constructed[1].value | asn1_ber' file.ber"},
{ comment: "If schema is known and not complicated it can be reproduced",
shell: "fq -d asn1_ber 'torepr as $r | [\"version\", \"modulus\", \"private_exponent\", \"private_exponen\", \"prime1\", \"prime2\", \"exponent1\", \"exponent2\", \"coefficient\"] | with_entries({key: .value, value: $r[.key]})' pkcs1.der"
}
],
links: [
{url: "https://www.itu.int/ITU-T/studygroups/com10/languages/X.690_1297.pdf"},
{url: "https://en.wikipedia.org/wiki/X.690"},
{url: "https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/"},
{url: "https://lapo.it/asn1js/"}
]
};
| JSONiq | 4 | bbhunter/fq | format/asn1/asn1_ber.jq | [
"MIT"
] |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xhtml xsl xs">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:template match="xhtml:html">
<html>
<body>
<template>
<xsl:apply-templates select="//xhtml:body/xhtml:span" />
</template>
<xsl:apply-templates select="//xhtml:template//xhtml:span" />
<p>This tests that XSLT transforms can traverse into XHTML template element content when applying XSL template.
If the test succeeds, the transform will have swapped the position of the body spans (A and B) with the template content spans (C and D)
and replaced the spans with divs.</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function divChildTextNodes(parent) {
var output = '';
for (var child = parent.firstChild; child; child = child.nextSibling) {
if (child.tagName == 'div') {
output += child.textContent;
}
}
return output;
}
var span = document.body.appendChild(document.createElement('span'));
span.textContent = 'Body divs: ' + divChildTextNodes(document.body);
span = document.body.appendChild(document.createElement('span'));
var template = document.querySelector('template');
span.textContent = ', Template content divs: ' + divChildTextNodes(template.content);
</script>
</body>
</html>
</xsl:template>
<xsl:template match="xhtml:span">
<div><xsl:value-of select="text()" /></div>
</xsl:template>
</xsl:stylesheet> | XSLT | 4 | zealoussnow/chromium | third_party/blink/web_tests/fast/xsl/resources/xhtml-template.xsl | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
/*
Bulllord Game Engine
Copyright (C) 2010-2017 Trix
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../headers/system.h"
#include "../headers/audio.h"
#include "../headers/util.h"
#include "../headers/streamio.h"
#include "../headers/gpu.h"
#include "internal/internal.h"
#include "internal/dictionary.h"
#if defined BL_PLATFORM_WIN32
#elif defined BL_PLATFORM_UWP
# include <ppl.h>
# include <ppltasks.h>
#elif defined BL_PLATFORM_OSX
# import <Cocoa/Cocoa.h>
#elif defined BL_PLATFORM_IOS
# import <UIKit/UIKit.h>
# import <QuartzCore/CAEAGLLayer.h>
# import <Metal/Metal.h>
# if (TARGET_IPHONE_SIMULATOR == 0)
# import <QuartzCore/CAMetalLayer.h>
# endif
#elif defined BL_PLATFORM_LINUX
# include <X11/cursorfont.h>
#elif defined BL_PLATFORM_ANDROID
# include <jni.h>
# include <android/configuration.h>
# include <android/looper.h>
# include <android/asset_manager.h>
# include <android/window.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern BLVoid _StreamIOInit(BLVoid*);
extern BLVoid _StreamIOStep(BLU32);
extern BLVoid _StreamIODestroy();
extern BLVoid _NetworkInit();
extern BLVoid _NetworkStep(BLU32);
extern BLVoid _NetworkDestroy();
extern BLVoid _UtilsInit();
extern BLVoid _UtilsStep(BLU32);
extern BLVoid _UtilsDestroy();
extern BLVoid _SpriteInit();
extern BLVoid _SpriteStep(BLU32, BLBool);
extern BLVoid _SpriteDestroy();
extern BLVoid _UIInit(BLBool);
extern BLVoid _UIStep(BLU32, BLBool);
extern BLVoid _UIDestroy();
extern BLBool _UseCustomCursor();
#ifdef __cplusplus
}
#endif
extern BLVoid _AudioInit();
extern BLVoid _AudioStep(BLU32);
extern BLVoid _AudioDestroy();
extern BLVoid _SystemInit();
extern BLVoid _SystemDestroy();
#if defined(BL_PLATFORM_WIN32)
extern BLVoid _SystemStep();
extern BLVoid _GpuIntervention(HWND, BLU32, BLU32, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention(HWND);
#elif defined(BL_PLATFORM_UWP)
extern BLVoid _SystemStep();
extern BLVoid _GpuIntervention(Windows::UI::Core::CoreWindow^, BLU32, BLU32, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention();
#elif defined(BL_PLATFORM_OSX)
extern BLVoid _SystemStep();
extern BLVoid _GpuIntervention(NSView*, BLU32, BLU32, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention();
#elif defined(BL_PLATFORM_IOS)
extern BLVoid _SystemStep();
extern BLVoid _GpuIntervention(CALayer*, BLU32, BLU32, BLF32, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention();
#elif defined(BL_PLATFORM_LINUX)
extern BLVoid _SystemStep();
extern BLVoid _GpuIntervention(Display*, Window, BLU32, BLU32, GLXFBConfig, BLVoid*, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention();
#elif defined(BL_PLATFORM_ANDROID)
extern BLVoid _SystemStep();
extern BLVoid _GpuIntervention(ANativeWindow*, BLU32, BLU32, BLBool, BLBool, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention();
#elif defined(BL_PLATFORM_WEB)
extern BLVoid _GpuIntervention(BLU32, BLU32, BLBool);
extern BLVoid _GpuSwapBuffer();
extern BLVoid _GpuAnitIntervention();
#else
# "error what's the fucking platform"
#endif
typedef struct _BoostParam {
BLUtf8 pAppName[128];
BLU32 nScreenWidth;
BLU32 nScreenHeight;
BLU32 nDesignWidth;
BLU32 nDesignHeight;
BLBool bUseDesignRes;
BLBool bFullscreen;
BLBool bProfiler;
BLEnum eQuality;
BLS32 nHandle;
const BLVoid(*pBeginFunc)(BLVoid);
const BLVoid(*pStepFunc)(BLU32);
const BLVoid(*pEndFunc)(BLVoid);
}_BLBoostParam;
typedef struct _Event {
union
{
struct _NetEvent {
BLU32 nID;
BLVoid* pBuf;
BLU32 nLength;
} sNet;
struct _UiEvent {
BLS32 nSParam;
BLU32 nUParam;
BLVoid* pPParam;
BLGuid nID;
} sUI;
struct _MouseEvent {
BLEnum eEvent;
BLS32 nX;
BLS32 nY;
BLS32 nWheel;
} sMouse;
struct _KeyEvent {
BLEnum eCode;
BLUtf8* pString;
BLBool bPressed;
} sKey;
struct _SysEvent {
BLS32 nSParam;
BLU32 nUParam;
BLVoid* pPParam;
} sSys;
struct _SpriteEvent {
BLS32 nSParam;
BLU32 nUParam;
BLGuid nID;
} sSprite;
} uEvent;
BLEnum eType;
} _BLEvent;
typedef struct _Timer {
BLS32 nId;
BLF32 fElapse;
BLU32 nLastTime;
}_BLTimer;
typedef struct _Plugins {
BLU32 nHash;
#if defined(BL_PLATFORM_WIN32)
HMODULE pHandle;
#elif defined(BL_PLATFORM_UWP)
HINSTANCE pHandle;
#else
BLVoid* pHandle;
#endif
}_BLPlugin;
typedef struct _SystemMember {
_BLBoostParam sBoostParam;
const BLBool(*pSubscriber[BL_ET_COUNT][128])(BLEnum, BLU32, BLS32, BLVoid*, BLGuid);
const BLVoid(*pBeginFunc)(BLVoid);
const BLVoid(*pStepFunc)(BLU32);
const BLVoid(*pEndFunc)(BLVoid);
BLVoid* aFuncPtr[BL_ET_COUNT + 3];
_BLEvent* pEvents;
_BLTimer aTimers[8];
_BLPlugin aPlugins[64];
BLAnsi aWorkDir[260];
BLAnsi aUserDir[260];
BLAnsi aEncryptkey[260];
BLU8 aClipboard[1024];
BLU32 nEventsSz;
BLU32 nEventIdx;
BLU32 nSysTime;
BLS32 nOrientation;
#if defined(BL_PLATFORM_WIN32)
HWND nHwnd;
HIMC nIMC;
BLBool bCtrlPressed;
#elif defined(BL_PLATFORM_UWP)
Windows::UI::Text::Core::CoreTextEditContext^ pCTEcxt;
Windows::Devices::Sensors::Accelerometer^ pSensor;
Windows::Foundation::Point sIMEpos;
BLBool bCtrlPressed;
#elif defined(BL_PLATFORM_LINUX)
Display* pDisplay;
Window nWindow;
Cursor nCursor;
Cursor nNilCursor;
Atom nDelwin;
Atom nProtocols;
Atom nPing;
Atom nBorder;
Atom nFullScreen;
Atom nWMState;
Colormap nColormap;
KeyCode nLastCode;
XIM pIME;
XIC pIC;
BLVoid* pLib;
BLU32 nMouseX;
BLU32 nMouseY;
BLBool bCtrlPressed;
BLBool bEWMHSupported;
#elif defined(BL_PLATFORM_ANDROID)
ANativeActivity* pActivity;
AConfiguration* pConfig;
ALooper* pLooper;
ANativeWindow* pWindow;
AInputQueue* pInputQueue;
ANativeWindow* pPendingWindow;
AInputQueue* pPendingInputQueue;
pthread_mutex_t sMutex;
pthread_cond_t sCond;
pthread_t nThread;
jobject pBLJava;
BLVoid* pSavedState;
BLS32 nActivityState;
BLS32 nStateSaved;
BLU32 nSavedStateSize;
BLS32 nMsgRead;
BLS32 nMsgWrite;
BLBool bAvtivityFocus;
BLBool bBackendState;
BLBool bAEPSupport;
#elif defined(BL_PLATFORM_OSX)
NSAutoreleasePool* pPool;
NSWindow* pWindow;
NSPoint sIMEpos;
NSTextView* pTICcxt;
NSResponder<NSWindowDelegate>* pDelegate;
BLBool bCtrlPressed;
#elif defined(BL_PLATFORM_IOS)
NSAutoreleasePool* pPool;
UIWindow* pWindow;
UITextField* pTICcxt;
UIView* pCtlView;
BLS32 nKeyboardHeight;
BLU32 nRetinaScale;
BLBool bInitState;
#endif
}_BLSystemMember;
BLBool _GbSystemRunning = FALSE;
BLBool _GbTVMode = FALSE;
BLEnum _GbRenderQuality = BL_RQ_ULP;
static _BLSystemMember* _PrSystemMem = NULL;
#if defined(BL_PLATFORM_ANDROID)
static _BLBoostParam* _PrAndroidGlue = NULL;
#endif
#if defined(BL_PLATFORM_WIN32)
LRESULT CALLBACK
_WndProc(HWND _Hwnd, UINT _Msg, WPARAM _Wparam, LPARAM _Lparam)
{
switch (_Msg)
{
case WM_ACTIVATE:
{
if (WA_INACTIVE == LOWORD(_Wparam))
_GbSystemRunning = 2;
else
_GbSystemRunning = 1;
if (_UseCustomCursor())
ShowCursor(FALSE);
RECT _rc;
GetWindowRect(_PrSystemMem->nHwnd, &_rc);
InvalidateRect(_PrSystemMem->nHwnd, &_rc, FALSE);
UpdateWindow(_PrSystemMem->nHwnd);
}
break;
case WM_ERASEBKGND:
return 1;
case WM_ENTERSIZEMOVE:
_GbSystemRunning = 2;
break;
case WM_EXITSIZEMOVE:
{
RECT _rc;
GetClientRect(_Hwnd, &_rc);
POINT _lt;
_lt.x = _rc.left;
_lt.y = _rc.top;
ClientToScreen(_Hwnd, &_lt);
_GbSystemRunning = 1;
}
break;
case WM_SIZE:
{
if ((SIZE_MAXHIDE == _Wparam) || (SIZE_MINIMIZED == _Wparam))
_GbSystemRunning = 2;
else
_GbSystemRunning = 1;
RECT _rc;
GetClientRect(_PrSystemMem->nHwnd, &_rc);
_PrSystemMem->sBoostParam.nScreenWidth = _rc.right - _rc.left;
_PrSystemMem->sBoostParam.nScreenHeight = _rc.bottom - _rc.top;
GetWindowRect(_PrSystemMem->nHwnd, &_rc);
InvalidateRect(_PrSystemMem->nHwnd, &_rc, FALSE);
UpdateWindow(_PrSystemMem->nHwnd);
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_RESOLUTION, 0, NULL, INVALID_GUID);
}
break;
case WM_GETMINMAXINFO:
{
MINMAXINFO* _info = (MINMAXINFO*)(_Lparam);
_info->ptMaxTrackSize.x = 50000;
_info->ptMaxTrackSize.y = 50000;
}
break;
case WM_DESTROY:
case WM_CLOSE:
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
SetCursor(LoadCursorW(NULL, IDC_ARROW));
ReleaseCapture();
PostQuitMessage(0);
_GbSystemRunning = FALSE;
}
break;
case WM_MOUSELEAVE:
if (!IsIconic(_Hwnd))
{
SetWindowLongPtrW(_Hwnd, GWLP_USERDATA, 0);
SetCursor(LoadCursorW(NULL, IDC_ARROW));
}
break;
case WM_MOUSEMOVE:
{
if (GetWindowLongPtrW(_Hwnd, GWLP_USERDATA) == 0)
{
SetWindowLongPtrW(_Hwnd, GWLP_USERDATA, 1);
if (_UseCustomCursor())
ShowCursor(FALSE);
else
SetCursor(LoadCursorW(NULL, IDC_ARROW));
}
blSysInvokeEvent(BL_ET_MOUSE, (BLU32)_Lparam, BL_ME_MOVE, NULL, INVALID_GUID);
TRACKMOUSEEVENT _tme;
_tme.cbSize = sizeof(_tme);
_tme.dwFlags = TME_LEAVE;
_tme.dwHoverTime = HOVER_DEFAULT;
_tme.hwndTrack = _Hwnd;
TrackMouseEvent(&_tme);
}
break;
case WM_MOUSEWHEEL:
{
BLS16 _val= (BLS16)((BLS16)HIWORD(_Wparam) / 120.f);
if (_val > 0)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(1, _val), BL_ME_WHEEL, NULL, INVALID_GUID);
else
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(0, -_val), BL_ME_WHEEL, NULL, INVALID_GUID);
}
break;
case WM_LBUTTONDOWN:
{
blSysInvokeEvent(BL_ET_MOUSE, (BLU32)_Lparam, BL_ME_LDOWN, NULL, INVALID_GUID);
SetCapture(_Hwnd);
}
break;
case WM_LBUTTONUP:
{
blSysInvokeEvent(BL_ET_MOUSE, (BLU32)_Lparam, BL_ME_LUP, NULL, INVALID_GUID);
ReleaseCapture();
}
break;
case WM_RBUTTONDOWN:
{
blSysInvokeEvent(BL_ET_MOUSE, (BLU32)_Lparam, BL_ME_RDOWN, NULL, INVALID_GUID);
SetCapture(_Hwnd);
}
break;
case WM_RBUTTONUP:
{
blSysInvokeEvent(BL_ET_MOUSE, (BLU32)_Lparam, BL_ME_RUP, NULL, INVALID_GUID);
ReleaseCapture();
}
break;
case WM_KEYDOWN:
{
BLEnum _code;
BLBool _extended = ((_Lparam & (1 << 24)) != 0);
BLS32 _wscancode = (_Lparam >> 16) & 0xFF;
if (_wscancode == 0 || _wscancode == 0x45)
{
switch (_Wparam)
{
case VK_CLEAR: _code = BL_KC_CLEAR; break;
case VK_MODECHANGE: _code = BL_KC_MODE; break;
case VK_SELECT: _code = BL_KC_SELECT; break;
case VK_EXECUTE: _code = BL_KC_EXECUTE; break;
case VK_HELP: _code = BL_KC_HELP; break;
case VK_PAUSE: _code = BL_KC_PAUSE; break;
case VK_NUMLOCK: _code = BL_KC_NUMLOCKCLEAR; break;
case VK_F13: _code = BL_KC_F13; break;
case VK_F14: _code = BL_KC_F14; break;
case VK_F15: _code = BL_KC_F15; break;
case VK_F16: _code = BL_KC_F16; break;
case VK_F17: _code = BL_KC_F17; break;
case VK_F18: _code = BL_KC_F18; break;
case VK_F19: _code = BL_KC_F19; break;
case VK_F20: _code = BL_KC_F20; break;
case VK_F21: _code = BL_KC_F21; break;
case VK_F22: _code = BL_KC_F22; break;
case VK_F23: _code = BL_KC_F23; break;
case VK_F24: _code = BL_KC_F24; break;
case VK_OEM_NEC_EQUAL: _code = BL_KC_KP_EQUALS; break;
case VK_BROWSER_BACK: _code = BL_KC_AC_BACK; break;
case VK_BROWSER_FORWARD: _code = BL_KC_AC_FORWARD; break;
case VK_BROWSER_REFRESH: _code = BL_KC_AC_REFRESH; break;
case VK_BROWSER_STOP: _code = BL_KC_AC_STOP; break;
case VK_BROWSER_SEARCH: _code = BL_KC_AC_SEARCH; break;
case VK_BROWSER_FAVORITES: _code = BL_KC_AC_BOOKMARKS; break;
case VK_BROWSER_HOME: _code = BL_KC_AC_HOME; break;
case VK_VOLUME_MUTE: _code = BL_KC_AUDIOMUTE; break;
case VK_VOLUME_DOWN: _code = BL_KC_VOLUMEDOWN; break;
case VK_VOLUME_UP: _code = BL_KC_VOLUMEUP; break;
case VK_MEDIA_NEXT_TRACK: _code = BL_KC_AUDIONEXT; break;
case VK_MEDIA_PREV_TRACK: _code = BL_KC_AUDIOPREV; break;
case VK_MEDIA_STOP: _code = BL_KC_AUDIOSTOP; break;
case VK_MEDIA_PLAY_PAUSE: _code = BL_KC_AUDIOPLAY; break;
case VK_LAUNCH_MAIL: _code = BL_KC_MAIL; break;
case VK_LAUNCH_MEDIA_SELECT: _code = BL_KC_MEDIASELECT; break;
case VK_OEM_102: _code = BL_KC_NONUSBACKSLASH; break;
case VK_ATTN: _code = BL_KC_SYSREQ; break;
case VK_CRSEL: _code = BL_KC_CRSEL; break;
case VK_EXSEL: _code = BL_KC_EXSEL; break;
case VK_OEM_CLEAR: _code = BL_KC_CLEAR; break;
case VK_LAUNCH_APP1: _code = BL_KC_APP1; break;
case VK_LAUNCH_APP2: _code = BL_KC_APP2; break;
default: _code = BL_KC_UNKNOWN; break;
}
}
if (_wscancode > 127)
_code = BL_KC_UNKNOWN;
_code = SCANCODE_INTERNAL[_wscancode];
if (!_extended)
{
switch (_code)
{
case BL_KC_HOME:_code = BL_KC_KP_7; break;
case BL_KC_UP:_code = BL_KC_KP_8; break;
case BL_KC_PAGEUP:_code = BL_KC_KP_9; break;
case BL_KC_LEFT:_code = BL_KC_KP_4; break;
case BL_KC_RIGHT:_code = BL_KC_KP_6; break;
case BL_KC_END:_code = BL_KC_KP_1; break;
case BL_KC_DOWN:_code = BL_KC_KP_2; break;
case BL_KC_PAGEDOWN:_code = BL_KC_KP_3; break;
case BL_KC_INSERT:_code = BL_KC_KP_0; break;
case BL_KC_DELETE:_code = BL_KC_KP_PERIOD; break;
case BL_KC_PRINTSCREEN:_code = BL_KC_KP_MULTIPLY; break;
default:break;
}
}
else
{
switch (_code)
{
case BL_KC_RETURN:_code = BL_KC_KP_ENTER; break;
case BL_KC_LALT:_code = BL_KC_RALT; break;
case BL_KC_LCTRL:_code = BL_KC_RCTRL; break;
case BL_KC_SLASH:_code = BL_KC_KP_DIVIDE; break;
case BL_KC_CAPSLOCK:_code = BL_KC_KP_PLUS; break;
default:break;
}
}
if (_code == BL_KC_LCTRL)
_PrSystemMem->bCtrlPressed = TRUE;
if (_PrSystemMem->bCtrlPressed)
{
switch (_code)
{
case BL_KC_A:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_SELECT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_C:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_COPY, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_X:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_CUT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_V:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_PASTE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
default:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
}
}
else
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
break;
case WM_KEYUP:
{
BLEnum _code;
BLBool _extended = ((_Lparam & (1 << 24)) != 0);
BLS32 _wscancode = (_Lparam >> 16) & 0xFF;
if (_wscancode == 0 || _wscancode == 0x45)
{
switch (_Wparam)
{
case VK_CLEAR: _code = BL_KC_CLEAR; break;
case VK_MODECHANGE: _code = BL_KC_MODE; break;
case VK_SELECT: _code = BL_KC_SELECT; break;
case VK_EXECUTE: _code = BL_KC_EXECUTE; break;
case VK_HELP: _code = BL_KC_HELP; break;
case VK_PAUSE: _code = BL_KC_PAUSE; break;
case VK_NUMLOCK: _code = BL_KC_NUMLOCKCLEAR; break;
case VK_F13: _code = BL_KC_F13; break;
case VK_F14: _code = BL_KC_F14; break;
case VK_F15: _code = BL_KC_F15; break;
case VK_F16: _code = BL_KC_F16; break;
case VK_F17: _code = BL_KC_F17; break;
case VK_F18: _code = BL_KC_F18; break;
case VK_F19: _code = BL_KC_F19; break;
case VK_F20: _code = BL_KC_F20; break;
case VK_F21: _code = BL_KC_F21; break;
case VK_F22: _code = BL_KC_F22; break;
case VK_F23: _code = BL_KC_F23; break;
case VK_F24: _code = BL_KC_F24; break;
case VK_OEM_NEC_EQUAL: _code = BL_KC_KP_EQUALS; break;
case VK_BROWSER_BACK: _code = BL_KC_AC_BACK; break;
case VK_BROWSER_FORWARD: _code = BL_KC_AC_FORWARD; break;
case VK_BROWSER_REFRESH: _code = BL_KC_AC_REFRESH; break;
case VK_BROWSER_STOP: _code = BL_KC_AC_STOP; break;
case VK_BROWSER_SEARCH: _code = BL_KC_AC_SEARCH; break;
case VK_BROWSER_FAVORITES: _code = BL_KC_AC_BOOKMARKS; break;
case VK_BROWSER_HOME: _code = BL_KC_AC_HOME; break;
case VK_VOLUME_MUTE: _code = BL_KC_AUDIOMUTE; break;
case VK_VOLUME_DOWN: _code = BL_KC_VOLUMEDOWN; break;
case VK_VOLUME_UP: _code = BL_KC_VOLUMEUP; break;
case VK_MEDIA_NEXT_TRACK: _code = BL_KC_AUDIONEXT; break;
case VK_MEDIA_PREV_TRACK: _code = BL_KC_AUDIOPREV; break;
case VK_MEDIA_STOP: _code = BL_KC_AUDIOSTOP; break;
case VK_MEDIA_PLAY_PAUSE: _code = BL_KC_AUDIOPLAY; break;
case VK_LAUNCH_MAIL: _code = BL_KC_MAIL; break;
case VK_LAUNCH_MEDIA_SELECT: _code = BL_KC_MEDIASELECT; break;
case VK_OEM_102: _code = BL_KC_NONUSBACKSLASH; break;
case VK_ATTN: _code = BL_KC_SYSREQ; break;
case VK_CRSEL: _code = BL_KC_CRSEL; break;
case VK_EXSEL: _code = BL_KC_EXSEL; break;
case VK_OEM_CLEAR: _code = BL_KC_CLEAR; break;
case VK_LAUNCH_APP1: _code = BL_KC_APP1; break;
case VK_LAUNCH_APP2: _code = BL_KC_APP2; break;
default: _code = BL_KC_UNKNOWN; break;
}
}
if (_wscancode > 127)
_code = BL_KC_UNKNOWN;
_code = SCANCODE_INTERNAL[_wscancode];
if (!_extended)
{
switch (_code)
{
case BL_KC_HOME:_code = BL_KC_KP_7; break;
case BL_KC_UP:_code = BL_KC_KP_8; break;
case BL_KC_PAGEUP:_code = BL_KC_KP_9; break;
case BL_KC_LEFT:_code = BL_KC_KP_4; break;
case BL_KC_RIGHT:_code = BL_KC_KP_6; break;
case BL_KC_END:_code = BL_KC_KP_1; break;
case BL_KC_DOWN:_code = BL_KC_KP_2; break;
case BL_KC_PAGEDOWN:_code = BL_KC_KP_3; break;
case BL_KC_INSERT:_code = BL_KC_KP_0; break;
case BL_KC_DELETE:_code = BL_KC_KP_PERIOD; break;
case BL_KC_PRINTSCREEN:_code = BL_KC_KP_MULTIPLY; break;
default:break;
}
}
else
{
switch (_code)
{
case BL_KC_RETURN:_code = BL_KC_KP_ENTER; break;
case BL_KC_LALT:_code = BL_KC_RALT; break;
case BL_KC_LCTRL:_code = BL_KC_RCTRL; break;
case BL_KC_SLASH:_code = BL_KC_KP_DIVIDE; break;
case BL_KC_CAPSLOCK:_code = BL_KC_KP_PLUS; break;
default:break;
}
}
if (_code == BL_KC_LCTRL)
_PrSystemMem->bCtrlPressed = FALSE;
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
break;
case WM_CHAR:
case WM_IME_CHAR:
{
BLUtf8 _text[5];
UINT32 _codepoint = (UINT32)_Wparam;
if (_codepoint <= 0x7F)
{
_text[0] = (BLUtf8)_codepoint;
_text[1] = '\0';
}
else if (_codepoint <= 0x7FF)
{
_text[0] = 0xC0 | (BLUtf8)((_codepoint >> 6) & 0x1F);
_text[1] = 0x80 | (BLUtf8)(_codepoint & 0x3F);
_text[2] = '\0';
}
else if (_codepoint <= 0xFFFF)
{
_text[0] = 0xE0 | (BLUtf8)((_codepoint >> 12) & 0x0F);
_text[1] = 0x80 | (BLUtf8)((_codepoint >> 6) & 0x3F);
_text[2] = 0x80 | (BLUtf8)(_codepoint & 0x3F);
_text[3] = '\0';
}
else if (_codepoint <= 0x10FFFF)
{
_text[0] = 0xF0 | (BLUtf8)((_codepoint >> 18) & 0x0F);
_text[1] = 0x80 | (BLUtf8)((_codepoint >> 12) & 0x3F);
_text[2] = 0x80 | (BLUtf8)((_codepoint >> 6) & 0x3F);
_text[3] = 0x80 | (BLUtf8)(_codepoint & 0x3F);
_text[4] = '\0';
}
else
break;
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, _text, INVALID_GUID);
}
break;
default:
return DefWindowProcW(_Hwnd, _Msg, _Wparam, _Lparam);
}
return 0;
}
BLVoid
_EnterFullscreen()
{
DEVMODEW _settings;
ZeroMemory(&_settings, sizeof(_settings));
_settings.dmSize = sizeof(_settings);
_settings.dmPelsWidth = GetDeviceCaps(GetDC(_PrSystemMem->nHwnd), HORZRES);
_settings.dmPelsHeight = GetDeviceCaps(GetDC(_PrSystemMem->nHwnd), VERTRES);
_settings.dmBitsPerPel = GetDeviceCaps(GetDC(_PrSystemMem->nHwnd), BITSPIXEL);
_settings.dmDisplayFrequency = ::GetDeviceCaps(::GetDC(_PrSystemMem->nHwnd), VREFRESH);
_settings.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL;
if (ChangeDisplaySettingsW(&_settings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL)
return;
SetWindowLongW(_PrSystemMem->nHwnd, GWL_STYLE, WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
SetWindowLongW(_PrSystemMem->nHwnd, GWL_EXSTYLE, WS_EX_APPWINDOW);
SetWindowPos(_PrSystemMem->nHwnd, 0, 0, 0, _settings.dmPelsWidth, _settings.dmPelsHeight, SWP_SHOWWINDOW | SWP_NOZORDER);
ShowWindow(_PrSystemMem->nHwnd, SW_MAXIMIZE);
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWLP_USERDATA, 0);
}
BLVoid
_ExitFullscreen(BLU32 _Width, BLU32 _Height)
{
if (ChangeDisplaySettingsW(NULL, CDS_RESET) != DISP_CHANGE_SUCCESSFUL)
return;
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWL_EXSTYLE, WS_EX_LEFT);
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWL_STYLE, WS_OVERLAPPEDWINDOW | WS_VISIBLE);
HDC _sdc = GetDC(NULL);
BLS32 _left = (GetDeviceCaps(_sdc, HORZRES) - _Width) / 2;
BLS32 _top = (GetDeviceCaps(_sdc, VERTRES) - _Height) / 2;
BLS32 _width = _Width;
BLS32 _height = _Height;
ReleaseDC(NULL, _sdc);
DWORD _style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX;
RECT _rectangle = { 0, 0, (LONG)_Width, (LONG)_Height };
AdjustWindowRect(&_rectangle, _style, FALSE);
_width = _rectangle.right - _rectangle.left;
_height = _rectangle.bottom - _rectangle.top;
SetWindowPos(_PrSystemMem->nHwnd, NULL, _left, _top, _width, _height, SWP_SHOWWINDOW | SWP_NOZORDER);
ShowWindow(_PrSystemMem->nHwnd, SW_RESTORE);
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWLP_USERDATA, 0);
}
BLVoid
_ShowWindow()
{
const BLUtf16* _title = blGenUtf16Str(_PrSystemMem->sBoostParam.pAppName);
WNDCLASSW _wc;
_wc.style = 0;
_wc.lpfnWndProc = _WndProc;
_wc.cbClsExtra = 0;
_wc.cbWndExtra = 0;
_wc.hInstance = GetModuleHandleW(NULL);
_wc.hIcon = NULL;
_wc.hCursor = 0;
_wc.hbrBackground = 0;
_wc.lpszMenuName = NULL;
_wc.lpszClassName = L"bulllord";
RegisterClassW(&_wc);
HDC _sdc = GetDC(NULL);
BLS32 _left = (GetDeviceCaps(_sdc, HORZRES) - _PrSystemMem->sBoostParam.nScreenWidth) / 2;
BLS32 _top = (GetDeviceCaps(_sdc, VERTRES) - _PrSystemMem->sBoostParam.nScreenHeight) / 2;
BLS32 _width = _PrSystemMem->sBoostParam.nScreenWidth;
BLS32 _height = _PrSystemMem->sBoostParam.nScreenHeight;
ReleaseDC(NULL, _sdc);
DWORD _style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX;
RECT _rectangle = { 0, 0, _width, _height };
AdjustWindowRect(&_rectangle, _style, FALSE);
_width = _rectangle.right - _rectangle.left;
_height = _rectangle.bottom - _rectangle.top;
_PrSystemMem->nHwnd = CreateWindowW(L"bulllord", (LPCWSTR)_title, _style, _left, _top, _width, _height, NULL, NULL, GetModuleHandle(NULL), NULL);
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWL_EXSTYLE, WS_EX_LEFT);
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWL_STYLE, WS_OVERLAPPEDWINDOW | WS_VISIBLE);
SetWindowPos(_PrSystemMem->nHwnd, NULL, 0, 0, _width, _height, SWP_NOMOVE | SWP_SHOWWINDOW | SWP_NOZORDER);
if (_PrSystemMem->sBoostParam.bFullscreen)
_EnterFullscreen();
ShowWindow(_PrSystemMem->nHwnd, SW_NORMAL);
UpdateWindow(_PrSystemMem->nHwnd);
SetWindowLongPtrW(_PrSystemMem->nHwnd, GWLP_USERDATA, 0);
blDeleteUtf16Str((BLUtf16*)_title);
_GpuIntervention(_PrSystemMem->nHwnd, _width, _height, !_PrSystemMem->sBoostParam.bProfiler);
_PrSystemMem->nIMC = ImmGetContext(_PrSystemMem->nHwnd);
if (_PrSystemMem->nIMC)
{
ImmAssociateContext(_PrSystemMem->nHwnd, NULL);
ImmReleaseContext(_PrSystemMem->nHwnd, _PrSystemMem->nIMC);
SetFocus(_PrSystemMem->nHwnd);
}
}
BLVoid
_PollMsg()
{
BOOL _gotmsg;
MSG _msg;
if (_GbSystemRunning == 1)
_gotmsg = ::PeekMessage(&_msg, 0, 0, 0, PM_REMOVE) ? TRUE : FALSE;
else
_gotmsg = ::GetMessage(&_msg, 0, 0, 0) ? TRUE : FALSE;
if (_gotmsg)
{
::TranslateMessage(&_msg);
::DispatchMessage(&_msg);
}
}
BLVoid
_CloseWindow()
{
_GpuAnitIntervention(_PrSystemMem->nHwnd);
ReleaseDC(_PrSystemMem->nHwnd, GetDC(_PrSystemMem->nHwnd));
ChangeDisplaySettings(NULL, 0);
ShowCursor(TRUE);
DestroyWindow(_PrSystemMem->nHwnd);
}
#elif defined(BL_PLATFORM_UWP)
ref class UWPView sealed : public Windows::ApplicationModel::Core::IFrameworkView
{
public:
virtual BLVoid Initialize(Windows::ApplicationModel::Core::CoreApplicationView^ _Appview)
{
_Appview->Activated += ref new Windows::Foundation::TypedEventHandler<Windows::ApplicationModel::Core::CoreApplicationView^, Windows::ApplicationModel::Activation::IActivatedEventArgs^>(this, &UWPView::OnActivated);
Windows::ApplicationModel::Core::CoreApplication::Suspending += ref new Windows::Foundation::EventHandler<Windows::ApplicationModel::SuspendingEventArgs^>(this, &UWPView::OnSuspending);
Windows::ApplicationModel::Core::CoreApplication::Resuming += ref new Windows::Foundation::EventHandler<Platform::Object^>(this, &UWPView::OnResuming);
}
virtual BLVoid Uninitialize() {}
virtual BLVoid SetWindow(Windows::UI::Core::CoreWindow^ _Window)
{
if (_PrSystemMem->nOrientation == SCREEN_PORTRAIT_INTERNAL)
Windows::Graphics::Display::DisplayInformation::AutoRotationPreferences = Windows::Graphics::Display::DisplayOrientations::Portrait;
else
Windows::Graphics::Display::DisplayInformation::AutoRotationPreferences = Windows::Graphics::Display::DisplayOrientations::Landscape | Windows::Graphics::Display::DisplayOrientations::LandscapeFlipped;
_Window->SizeChanged += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::WindowSizeChangedEventArgs^>(this, &UWPView::OnWindowSizeChanged);
_Window->VisibilityChanged += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::VisibilityChangedEventArgs^>(this, &UWPView::OnVisibilityChanged);
_Window->Closed += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::CoreWindowEventArgs^>(this, &UWPView::OnWindowClosed);
_Window->PointerPressed += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::PointerEventArgs^>(this, &UWPView::OnPointerPressed);
_Window->PointerReleased += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::PointerEventArgs^>(this, &UWPView::OnPointerReleased);
_Window->PointerMoved += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::PointerEventArgs^>(this, &UWPView::OnPointerMoved);
_Window->PointerEntered += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::PointerEventArgs^>(this, &UWPView::OnPointerEntered);
_Window->PointerExited += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::PointerEventArgs^>(this, &UWPView::OnPointerExited);
_Window->PointerWheelChanged += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::PointerEventArgs^>(this, &UWPView::OnPointerWheelChanged);
_Window->KeyDown += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::KeyEventArgs^>(this, &UWPView::OnKeyDown);
_Window->KeyUp += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Core::CoreWindow^, Windows::UI::Core::KeyEventArgs^>(this, &UWPView::OnKeyUp);
#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
HardwareButtons::BackPressed += ref new EventHandler<BackPressedEventArgs^>(this, &UWPView::OnBackButtonPressed);
#endif
Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->OrientationChanged += ref new Windows::Foundation::TypedEventHandler<Windows::Graphics::Display::DisplayInformation^, Object^>(this, &UWPView::OnOrientationChanged);
_PrSystemMem->pCTEcxt = Windows::UI::Text::Core::CoreTextServicesManager::GetForCurrentView()->CreateEditContext();
_PrSystemMem->pCTEcxt->CompositionStarted += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextCompositionStartedEventArgs^>(this, &UWPView::OnCompositionStarted);
_PrSystemMem->pCTEcxt->CompositionCompleted += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextCompositionCompletedEventArgs^>(this, &UWPView::OnCompositionCompleted);
_PrSystemMem->pCTEcxt->LayoutRequested += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextLayoutRequestedEventArgs^>(this, &UWPView::OnLayoutRequested);
_PrSystemMem->pCTEcxt->FocusRemoved += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Platform::Object^>(this, &UWPView::OnFocusRemoved);
_PrSystemMem->pCTEcxt->TextUpdating += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextTextUpdatingEventArgs^>(this, &UWPView::OnTextUpdating);
_PrSystemMem->pCTEcxt->FormatUpdating += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextFormatUpdatingEventArgs^>(this, &UWPView::OnFormatUpdating);
_PrSystemMem->pCTEcxt->SelectionRequested += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextSelectionRequestedEventArgs^>(this, &UWPView::OnSelectionRequested);
_PrSystemMem->pCTEcxt->SelectionUpdating += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextSelectionUpdatingEventArgs^>(this, &UWPView::OnSelectionUpdating);
_PrSystemMem->pCTEcxt->TextRequested += ref new Windows::Foundation::TypedEventHandler<Windows::UI::Text::Core::CoreTextEditContext^, Windows::UI::Text::Core::CoreTextTextRequestedEventArgs^>(this, &UWPView::OnTextRequested);
_PrSystemMem->sBoostParam.nScreenWidth = ((BLS32)(0.5f + (((BLF32)(_Window->Bounds.Width) * (BLF32)Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->LogicalDpi) / 96.f)));
_PrSystemMem->sBoostParam.nScreenHeight = ((BLS32)(0.5f + (((BLF32)(_Window->Bounds.Height) * (BLF32)Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->LogicalDpi) / 96.f)));
_cachestr = L"";
_initcursor = 100;
}
virtual BLVoid Load(Platform::String^)
{
if (!_GbSystemRunning)
{
Windows::UI::Core::CoreWindow ^ _window = Windows::UI::Core::CoreWindow::GetForCurrentThread();
_GpuIntervention(_window,
((BLS32)(0.5f + (((BLF32)(_window->Bounds.Width) * (BLF32)Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->LogicalDpi) / 96.f))),
((BLS32)(0.5f + (((BLF32)(_window->Bounds.Height) * (BLF32)Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->LogicalDpi) / 96.f))),
!_PrSystemMem->sBoostParam.bProfiler);
_AudioInit();
_UIInit(_PrSystemMem->sBoostParam.bProfiler);
_SpriteInit();
_GbSystemRunning = TRUE;
_PrSystemMem->pBeginFunc();
}
}
virtual BLVoid Run()
{
do {
if (_GbSystemRunning == 1)
Windows::UI::Core::CoreWindow::GetForCurrentThread()->Dispatcher->ProcessEvents(Windows::UI::Core::CoreProcessEventsOption::ProcessAllIfPresent);
else
Windows::UI::Core::CoreWindow::GetForCurrentThread()->Dispatcher->ProcessEvents(Windows::UI::Core::CoreProcessEventsOption::ProcessOneAndAllPending);
_SystemStep();
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
if (_initcursor >= 0 && _UseCustomCursor())
{
Windows::UI::Core::CoreWindow::GetForCurrentThread()->PointerCursor = nullptr;
_initcursor--;
}
#endif
} while (_GbSystemRunning);
_SystemDestroy();
}
protected:
BLVoid OnActivated(Windows::ApplicationModel::Core::CoreApplicationView^ _View, Windows::ApplicationModel::Activation::IActivatedEventArgs^ _Args)
{
if (_Args->Kind == Windows::ApplicationModel::Activation::ActivationKind::Launch)
{
if (static_cast<Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^>(_Args)->PrelaunchActivated)
{
Windows::ApplicationModel::Core::CoreApplication::Exit();
return;
}
}
Windows::UI::Core::CoreWindow::GetForCurrentThread()->Activate();
}
BLVoid OnSuspending(Platform::Object^ _Sender, Windows::ApplicationModel::SuspendingEventArgs^ _Args)
{
if (_GbSystemRunning == 2)
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
_GbSystemRunning = FALSE;
_SystemDestroy();
}
Windows::ApplicationModel::SuspendingDeferral^ _deferral = _Args->SuspendingOperation->GetDeferral();
concurrency::create_task([this, _deferral]()
{
_deferral->Complete();
});
}
BLVoid OnResuming(Platform::Object^ _Sender, Platform::Object^ _Args)
{
}
BLVoid OnWindowSizeChanged(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::WindowSizeChangedEventArgs^ _Args)
{
_PrSystemMem->sBoostParam.nScreenWidth = ((BLS32)(0.5f + (((BLF32)(_Sender->Bounds.Width) * (BLF32)Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->LogicalDpi) / 96.f)));
_PrSystemMem->sBoostParam.nScreenHeight = ((BLS32)(0.5f + (((BLF32)(_Sender->Bounds.Height) * (BLF32)Windows::Graphics::Display::DisplayInformation::GetForCurrentView()->LogicalDpi) / 96.f)));
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_RESOLUTION, 0, NULL, INVALID_GUID);
}
BLVoid OnVisibilityChanged(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::VisibilityChangedEventArgs^ _Args)
{
_GbSystemRunning = _Args->Visible ? 1 : 2;
}
BLVoid OnWindowClosed(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::CoreWindowEventArgs^ _Args)
{
_GbSystemRunning = FALSE;
}
#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
BLVoid OnBackButtonPressed(Platform::Object^ _Sender, Windows::Phone::UI::Input::BackPressedEventArgs^ _Args)
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_ESCAPE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
#endif
BLVoid OnOrientationChanged(Windows::Graphics::Display::DisplayInformation^ _Sender, Platform::Object^ _Args)
{
}
BLVoid OnPointerPressed(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::PointerEventArgs^ _Args)
{
_leftmouse = _Args->CurrentPoint->Properties->IsLeftButtonPressed;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_Args->CurrentPoint->Position.Y, _Args->CurrentPoint->Position.X), _leftmouse ? BL_ME_LDOWN : BL_ME_RDOWN, NULL, INVALID_GUID);
}
BLVoid OnPointerReleased(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::PointerEventArgs^ _Args)
{
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_Args->CurrentPoint->Position.Y, _Args->CurrentPoint->Position.X), _leftmouse ? BL_ME_LUP : BL_ME_RUP, NULL, INVALID_GUID);
}
BLVoid OnPointerMoved(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::PointerEventArgs^ _Args)
{
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_Args->CurrentPoint->Position.Y, _Args->CurrentPoint->Position.X), BL_ME_MOVE, NULL, INVALID_GUID);
}
BLVoid OnPointerEntered(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::PointerEventArgs^ _Args)
{
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
if (_UseCustomCursor())
_Sender->PointerCursor = nullptr;
else
_Sender->PointerCursor = ref new Windows::UI::Core::CoreCursor(Windows::UI::Core::CoreCursorType::Arrow, 0);
#endif
}
BLVoid OnPointerExited(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::PointerEventArgs^ _Args)
{
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
_Sender->PointerCursor = ref new Windows::UI::Core::CoreCursor(Windows::UI::Core::CoreCursorType::Arrow, 0);
#endif
}
BLVoid OnPointerWheelChanged(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::PointerEventArgs^ _Args)
{
BLS32 _val = (BLS32)((BLF32)_Args->CurrentPoint->Properties->MouseWheelDelta / WHEEL_DELTA);
if (_val > 0)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(1, _val), BL_ME_WHEEL, NULL, INVALID_GUID);
else
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(0, -_val), BL_ME_WHEEL, NULL, INVALID_GUID);
}
BLVoid OnKeyDown(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::KeyEventArgs^ _Args)
{
BLBool _shift = FALSE;
BLEnum _scancode = BL_KC_UNKNOWN;
if (_Args->KeyStatus.ScanCode < (sizeof(SCANCODE_INTERNAL) / sizeof(SCANCODE_INTERNAL[0])))
{
switch ((BLS32)_Args->VirtualKey)
{
case 16:
switch (SCANCODE_INTERNAL[_Args->KeyStatus.ScanCode])
{
case BL_KC_LSHIFT:
case BL_KC_RSHIFT:
_shift = TRUE;
_scancode = SCANCODE_INTERNAL[_Args->KeyStatus.ScanCode];
break;
}
break;
default:
break;
}
}
if (!_shift)
{
if ((BLS32)_Args->VirtualKey < (sizeof(OFFICIALCODE_INTERNAL) / sizeof(OFFICIALCODE_INTERNAL[0])))
_scancode = OFFICIALCODE_INTERNAL[(BLS32)_Args->VirtualKey];
if (_scancode == BL_KC_UNKNOWN)
{
switch ((BLS32)_Args->VirtualKey)
{
case 173: _scancode = BL_KC_MUTE; break;
case 174: _scancode = BL_KC_VOLUMEDOWN; break;
case 175: _scancode = BL_KC_VOLUMEUP; break;
case 176: _scancode = BL_KC_AUDIONEXT; break;
case 177: _scancode = BL_KC_AUDIOPREV; break;
case 179: _scancode = BL_KC_AUDIOPLAY; break;
case 180: _scancode = BL_KC_MAIL; break;
case 181: _scancode = BL_KC_MEDIASELECT; break;
case 183: _scancode = BL_KC_CALCULATOR; break;
case 186: _scancode = BL_KC_SEMICOLON; break;
case 187: _scancode = BL_KC_EQUALS; break;
case 188: _scancode = BL_KC_COMMA; break;
case 189: _scancode = BL_KC_MINUS; break;
case 190: _scancode = BL_KC_PERIOD; break;
case 191: _scancode = BL_KC_SLASH; break;
case 192: _scancode = BL_KC_GRAVE; break;
case 219: _scancode = BL_KC_LEFTBRACKET; break;
case 220: _scancode = BL_KC_BACKSLASH; break;
case 221: _scancode = BL_KC_RIGHTBRACKET; break;
case 222: _scancode = BL_KC_APOSTROPHE; break;
default: _scancode = BL_KC_UNKNOWN; break;
}
}
if (_scancode == BL_KC_UNKNOWN)
{
if (_Args->KeyStatus.ScanCode < (sizeof(SCANCODE_INTERNAL) / sizeof(SCANCODE_INTERNAL[0])))
_scancode = SCANCODE_INTERNAL[_Args->KeyStatus.ScanCode];
}
}
if (_scancode == BL_KC_LCTRL)
_PrSystemMem->bCtrlPressed = TRUE;
if (_PrSystemMem->bCtrlPressed)
{
switch (_scancode)
{
case BL_KC_A:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_SELECT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_C:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_COPY, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_X:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_CUT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_V:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_PASTE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
default:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
}
}
else
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
BLVoid OnKeyUp(Windows::UI::Core::CoreWindow^ _Sender, Windows::UI::Core::KeyEventArgs^ _Args)
{
BLBool _shift = FALSE;
BLEnum _scancode = BL_KC_UNKNOWN;
if (_Args->KeyStatus.ScanCode < (sizeof(SCANCODE_INTERNAL) / sizeof(SCANCODE_INTERNAL[0])))
{
switch ((BLS32)_Args->VirtualKey)
{
case 16:
switch (SCANCODE_INTERNAL[_Args->KeyStatus.ScanCode])
{
case BL_KC_LSHIFT:
case BL_KC_RSHIFT:
_shift = TRUE;
_scancode = SCANCODE_INTERNAL[_Args->KeyStatus.ScanCode];
break;
}
break;
default:
break;
}
}
if (!_shift)
{
if ((BLS32)_Args->VirtualKey < (sizeof(OFFICIALCODE_INTERNAL) / sizeof(OFFICIALCODE_INTERNAL[0])))
_scancode = OFFICIALCODE_INTERNAL[(BLS32)_Args->VirtualKey];
if (_scancode == BL_KC_UNKNOWN)
{
switch ((BLS32)_Args->VirtualKey)
{
case 173: _scancode = BL_KC_MUTE; break;
case 174: _scancode = BL_KC_VOLUMEDOWN; break;
case 175: _scancode = BL_KC_VOLUMEUP; break;
case 176: _scancode = BL_KC_AUDIONEXT; break;
case 177: _scancode = BL_KC_AUDIOPREV; break;
case 179: _scancode = BL_KC_AUDIOPLAY; break;
case 180: _scancode = BL_KC_MAIL; break;
case 181: _scancode = BL_KC_MEDIASELECT; break;
case 183: _scancode = BL_KC_CALCULATOR; break;
case 186: _scancode = BL_KC_SEMICOLON; break;
case 187: _scancode = BL_KC_EQUALS; break;
case 188: _scancode = BL_KC_COMMA; break;
case 189: _scancode = BL_KC_MINUS; break;
case 190: _scancode = BL_KC_PERIOD; break;
case 191: _scancode = BL_KC_SLASH; break;
case 192: _scancode = BL_KC_GRAVE; break;
case 219: _scancode = BL_KC_LEFTBRACKET; break;
case 220: _scancode = BL_KC_BACKSLASH; break;
case 221: _scancode = BL_KC_RIGHTBRACKET; break;
case 222: _scancode = BL_KC_APOSTROPHE; break;
default: _scancode = BL_KC_UNKNOWN; break;
}
}
if (_scancode == BL_KC_UNKNOWN)
{
if (_Args->KeyStatus.ScanCode < (sizeof(SCANCODE_INTERNAL) / sizeof(SCANCODE_INTERNAL[0])))
_scancode = SCANCODE_INTERNAL[_Args->KeyStatus.ScanCode];
}
}
if (_scancode == BL_KC_LCTRL)
_PrSystemMem->bCtrlPressed = FALSE;
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
BLVoid OnLayoutRequested(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextLayoutRequestedEventArgs^ _Args)
{
Windows::Foundation::Rect _r;
_r.X = _PrSystemMem->sIMEpos.X + Windows::UI::Core::CoreWindow::GetForCurrentThread()->Bounds.Left;
_r.Y = _PrSystemMem->sIMEpos.Y + Windows::UI::Core::CoreWindow::GetForCurrentThread()->Bounds.Top;
_r.Height = 18;
_r.Width = 250;
_Args->Request->LayoutBounds->TextBounds = _r;
_Args->Request->LayoutBounds->ControlBounds = _r;
}
BLVoid OnTextUpdating(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextTextUpdatingEventArgs^ _Args)
{
_cachestr = _Args->Text;
}
BLVoid OnFormatUpdating(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextFormatUpdatingEventArgs^ _Args)
{
}
BLVoid OnCompositionStarted(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextCompositionStartedEventArgs^ _Args)
{
}
BLVoid OnCompositionCompleted(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextCompositionCompletedEventArgs^ _Args)
{
BLUtf8 _tmp[1024] = { 0 };
WideCharToMultiByte(CP_UTF8, 0, _cachestr->Data(), -1, (LPSTR)_tmp, 1024, NULL, NULL);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, _tmp, INVALID_GUID);
_cachestr = L"";
}
BLVoid OnSelectionRequested(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextSelectionRequestedEventArgs^ _Args){}
BLVoid OnTextRequested(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextTextRequestedEventArgs^ _Args)
{
_Args->Request->Text = ref new Platform::String(_cachestr->Data());
}
BLVoid OnSelectionUpdating(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Windows::UI::Text::Core::CoreTextSelectionUpdatingEventArgs^ _Args){}
BLVoid OnFocusRemoved(Windows::UI::Text::Core::CoreTextEditContext^ _Sender, Platform::Object^ _Args)
{
_cachestr = L"";
}
private:
BLS32 _initcursor;
BLBool _leftmouse;
Platform::String^ _cachestr;
};
ref class UWPSource sealed : Windows::ApplicationModel::Core::IFrameworkViewSource
{
public:
virtual Windows::ApplicationModel::Core::IFrameworkView^ CreateView()
{
return ref new UWPView();
}
};
BLVoid
_EnterFullscreen()
{
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
Windows::UI::ViewManagement::ApplicationView::GetForCurrentView()->TryEnterFullScreenMode();
#endif
}
BLVoid
_ExitFullscreen(BLU32 _Width, BLU32 _Height)
{
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
Windows::UI::ViewManagement::ApplicationView::GetForCurrentView()->ExitFullScreenMode();
Windows::Foundation::Size _sz{ (BLF32)_Width, (BLF32)_Height };
Windows::UI::ViewManagement::ApplicationView::GetForCurrentView()->TryResizeView(_sz);
#endif
}
BLVoid
_ShowWindow()
{
auto _window = ref new UWPSource();
#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
_PrSystemMem->sBoostParam.bFullscreen = TRUE;
#endif
if (_PrSystemMem->sBoostParam.bFullscreen)
Windows::UI::ViewManagement::ApplicationView::PreferredLaunchWindowingMode = Windows::UI::ViewManagement::ApplicationViewWindowingMode::FullScreen;
else
{
Windows::UI::ViewManagement::ApplicationView::PreferredLaunchViewSize = Windows::Foundation::Size{ (BLF32)_PrSystemMem->sBoostParam.nScreenWidth, (BLF32)_PrSystemMem->sBoostParam.nScreenHeight };
Windows::UI::ViewManagement::ApplicationView::PreferredLaunchWindowingMode = Windows::UI::ViewManagement::ApplicationViewWindowingMode::PreferredLaunchViewSize;
}
if (_PrSystemMem->sBoostParam.nScreenWidth > _PrSystemMem->sBoostParam.nScreenHeight)
_PrSystemMem->nOrientation = SCREEN_LANDSCAPE_INTERNAL;
else
_PrSystemMem->nOrientation = SCREEN_PORTRAIT_INTERNAL;
Windows::ApplicationModel::Core::CoreApplication::Run(_window);
}
BLVoid
_PollMsg()
{
}
BLVoid
_CloseWindow()
{
_GpuAnitIntervention();
}
#elif defined(BL_PLATFORM_LINUX)
static BLVoid
_WndProc(XEvent* _Event)
{
BLBool _filtered = FALSE;
if (_PrSystemMem->pIME)
_filtered = XFilterEvent(_Event, None);
switch (_Event->type)
{
case KeyPress:
{
KeyCode _code = _Event->xkey.keycode;
BLS32 _mincode, _maxcode;
XDisplayKeycodes(_PrSystemMem->pDisplay, &_mincode, &_maxcode);
BLEnum _scancode = SCANCODE_INTERNAL[_code - _mincode];
if (_scancode == BL_KC_LCTRL)
_PrSystemMem->bCtrlPressed = TRUE;
if (_PrSystemMem->bCtrlPressed)
{
switch (_scancode)
{
case BL_KC_A:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_SELECT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_C:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_COPY, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_X:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_CUT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_V:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_PASTE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
default:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
}
}
else
{
if (_PrSystemMem->nLastCode != _code || _PrSystemMem->nLastCode != _Event->xkey.time)
{
if (_code)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
_PrSystemMem->nLastCode = _code;
if (!_filtered && _PrSystemMem->pIC)
{
BLS32 _count;
Status _status;
BLAnsi* _temp = (BLAnsi*)alloca(101);
memset(_temp, 0, 101);
_count = Xutf8LookupString(_PrSystemMem->pIC, &_Event->xkey, _temp, 100, NULL, &_status);
if (_status == XBufferOverflow)
{
_temp = (BLAnsi*)alloca(_count + 1);
_count = Xutf8LookupString(_PrSystemMem->pIC, &_Event->xkey, _temp, _count, NULL, &_status);
}
if (_status == XLookupChars || _status == XLookupBoth)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, _temp, INVALID_GUID);
}
else
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
}
break;
case KeyRelease:
{
KeyCode _code = _Event->xkey.keycode;
BLS32 _mincode, _maxcode;
XDisplayKeycodes(_PrSystemMem->pDisplay, &_mincode, &_maxcode);
BLEnum _scancode = SCANCODE_INTERNAL[_code - _mincode];
if (_scancode == BL_KC_LCTRL)
_PrSystemMem->bCtrlPressed = FALSE;
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
break;
case ButtonPress:
{
if (_Event->xbutton.button == Button1)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_PrSystemMem->nMouseY, _PrSystemMem->nMouseX), BL_ME_LDOWN, NULL, INVALID_GUID);
else if (_Event->xbutton.button == Button3)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_PrSystemMem->nMouseY, _PrSystemMem->nMouseX), BL_ME_RDOWN, NULL, INVALID_GUID);
else if (_Event->xbutton.button == Button4)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(1, 1), BL_ME_WHEEL, NULL, INVALID_GUID);
else if (_Event->xbutton.button == Button5)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(0, 1), BL_ME_WHEEL, NULL, INVALID_GUID);
}
break;
case ButtonRelease:
{
if (_Event->xbutton.button == Button1)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_PrSystemMem->nMouseY, _PrSystemMem->nMouseX), BL_ME_LUP, NULL, INVALID_GUID);
else if(_Event->xbutton.button == Button3)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_PrSystemMem->nMouseY, _PrSystemMem->nMouseX), BL_ME_RUP, NULL, INVALID_GUID);
}
break;
case MotionNotify:
{
_PrSystemMem->nMouseX = _Event->xmotion.x;
_PrSystemMem->nMouseY = _Event->xmotion.y;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_PrSystemMem->nMouseY, _PrSystemMem->nMouseX), BL_ME_MOVE, NULL, INVALID_GUID);
}
break;
case EnterNotify:
{
if (_UseCustomCursor())
XDefineCursor(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nNilCursor);
else
XDefineCursor(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nCursor);
}
break;
case LeaveNotify:
{
XDefineCursor(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nCursor);
}
break;
case Expose:
{
if (_Event->xexpose.count != 0)
break;
}
break;
case ConfigureNotify:
{
_PrSystemMem->sBoostParam.nScreenWidth = _Event->xconfigure.width;
_PrSystemMem->sBoostParam.nScreenHeight = _Event->xconfigure.height;
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_RESOLUTION, 0, NULL, INVALID_GUID);
}
break;
case ClientMessage:
{
if (_filtered)
return;
if (_Event->xclient.message_type == None)
return;
if (_Event->xclient.message_type == _PrSystemMem->nProtocols)
{
const Atom _protocol = _Event->xclient.data.l[0];
if (_protocol == None)
return;
if (_protocol == _PrSystemMem->nDelwin)
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
_GbSystemRunning = FALSE;
}
else if (_protocol == _PrSystemMem->nPing)
{
XEvent _reply = *_Event;
_reply.xclient.window = RootWindow(_PrSystemMem->pDisplay, DefaultScreen(_PrSystemMem->pDisplay));
XSendEvent(_PrSystemMem->pDisplay, RootWindow(_PrSystemMem->pDisplay, DefaultScreen(_PrSystemMem->pDisplay)), False, SubstructureNotifyMask | SubstructureRedirectMask, &_reply);
}
}
}
break;
case FocusIn:
{
if (_Event->xfocus.mode == NotifyGrab || _Event->xfocus.mode == NotifyUngrab)
return;
if (_PrSystemMem->pIC)
XSetICFocus(_PrSystemMem->pIC);
_GbSystemRunning = 1;
}
break;
case FocusOut:
{
if (_Event->xfocus.mode == NotifyGrab || _Event->xfocus.mode == NotifyUngrab)
return;
if (_PrSystemMem->pIC)
XUnsetICFocus(_PrSystemMem->pIC);
_GbSystemRunning = 2;
}
break;
case DestroyNotify:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
break;
default: break;
}
}
BLVoid
_EnterFullscreen()
{
XEvent _xev;
_xev.xclient.type = ClientMessage;
_xev.xclient.serial = 0;
_xev.xclient.send_event = True;
_xev.xclient.window = _PrSystemMem->nWindow;
_xev.xclient.message_type = _PrSystemMem->nWMState;
_xev.xclient.format = 32;
_xev.xclient.data.l[0] = 1;
_xev.xclient.data.l[1] = _PrSystemMem->nFullScreen;
_xev.xclient.data.l[2] = 0;
XSendEvent(_PrSystemMem->pDisplay, DefaultRootWindow(_PrSystemMem->pDisplay), False, SubstructureRedirectMask | SubstructureNotifyMask, &_xev);
XFlush(_PrSystemMem->pDisplay);
}
BLVoid
_ExitFullscreen(BLU32 _Width, BLU32 _Height)
{
XEvent _xev;
_xev.xclient.type = ClientMessage;
_xev.xclient.serial = 0;
_xev.xclient.send_event = True;
_xev.xclient.window = _PrSystemMem->nWindow;
_xev.xclient.message_type = _PrSystemMem->nWMState;
_xev.xclient.format = 32;
_xev.xclient.data.l[0] = 0;
_xev.xclient.data.l[1] = _PrSystemMem->nFullScreen;
_xev.xclient.data.l[2] = 0;
if (_PrSystemMem->nBorder != None)
{
struct
{
unsigned long x1;
unsigned long x2;
unsigned long x3;
long x4;
unsigned long x5;
} _bhints = {
(1L << 1), 0, 1, 0, 0
};
XChangeProperty(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nBorder, _PrSystemMem->nBorder, 32, PropModeReplace, (BLU8*)&_bhints, sizeof(_bhints) / sizeof(long));
}
XSendEvent(_PrSystemMem->pDisplay, DefaultRootWindow(_PrSystemMem->pDisplay), False, SubstructureRedirectMask | SubstructureNotifyMask, &_xev);
XResizeWindow(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _Width, _Height);
XFlush(_PrSystemMem->pDisplay);
}
BLVoid
_ShowWindow()
{
if (setlocale(LC_ALL, "") == NULL)
setlocale(LC_ALL, "C");
XInitThreads();
_PrSystemMem->pDisplay = XOpenDisplay(NULL);
Atom _wmcheck = XInternAtom(_PrSystemMem->pDisplay, "_NET_SUPPORTING_WM_CHECK", True);
Atom _netsupported = XInternAtom(_PrSystemMem->pDisplay, "_NET_SUPPORTED", True);
_PrSystemMem->bEWMHSupported = _wmcheck && _netsupported;
Atom _actualtype;
BLS32 _actualformat;
unsigned long _numitems;
unsigned long _numbytes;
BLU8* _data;
BLS32 _result = XGetWindowProperty(_PrSystemMem->pDisplay, DefaultRootWindow(_PrSystemMem->pDisplay), _wmcheck, 0, 1, False, XA_WINDOW, &_actualtype, &_actualformat, &_numitems, &_numbytes, &_data);
if (_result != Success || _actualtype != XA_WINDOW || _numitems != 1)
{
if(_result == Success)
XFree(_data);
_PrSystemMem->bEWMHSupported = FALSE;
}
else
{
Window _root = *(Window*)(_data);
XFree(_data);
if (!_root)
_PrSystemMem->bEWMHSupported = FALSE;
else
{
_result = XGetWindowProperty(_PrSystemMem->pDisplay, _root, _wmcheck, 0, 1, False, XA_WINDOW, &_actualtype, &_actualformat, &_numitems, &_numbytes, &_data);
if (_result != Success || _actualtype != XA_WINDOW || _numitems != 1)
{
if(_result == Success)
XFree(_data);
_PrSystemMem->bEWMHSupported = FALSE;
}
else
{
Window _child = *(Window*)(_data);
XFree(_data);
if (!_child)
_PrSystemMem->bEWMHSupported = FALSE;
else if (_root != _child)
_PrSystemMem->bEWMHSupported = FALSE;
else
_PrSystemMem->bEWMHSupported = TRUE;
}
}
}
_PrSystemMem->nProtocols = XInternAtom(_PrSystemMem->pDisplay, "WM_PROTOCOLS", False);
_PrSystemMem->nBorder = XInternAtom(_PrSystemMem->pDisplay, "_MOTIF_WM_HINTS", True);
_PrSystemMem->nDelwin = XInternAtom(_PrSystemMem->pDisplay, "WM_DELETE_WINDOW", False);
_PrSystemMem->nFullScreen = XInternAtom(_PrSystemMem->pDisplay, "_NET_WM_STATE_FULLSCREEN", False);
_PrSystemMem->nWMState = XInternAtom(_PrSystemMem->pDisplay, "_NET_WM_STATE", False);
_PrSystemMem->nPing = None;
Atom _wmpid = None;
Atom _compositor = XInternAtom(_PrSystemMem->pDisplay, "_NET_WM_BYPASS_COMPOSITOR", False);
BLS32 _visualattr[] = {
GLX_X_RENDERABLE , True,
GLX_DRAWABLE_TYPE , GLX_WINDOW_BIT,
GLX_RENDER_TYPE , GLX_RGBA_BIT,
GLX_X_VISUAL_TYPE , GLX_TRUE_COLOR,
8 , 8,
9 , 8,
10 , 8,
11 , 8,
12, 24,
13, 8,
5 , True,
None
};
BLS32 _fbcount;
_PrSystemMem->pLib = dlopen("libGL.so.1", RTLD_LAZY | RTLD_GLOBAL);
glXGetProcAddress = (PFNGLXGETPROCADDRESSPROC)dlsym(_PrSystemMem->pLib, "glXGetProcAddress");
glXGetProcAddressARB = (PFNGLXGETPROCADDRESSARBPROC)glXGetProcAddress((const GLubyte*)"glXGetProcAddressARB");
PFNGLXCHOOSEFBCONFIGPROC glXChooseFBConfig = (PFNGLXCHOOSEFBCONFIGPROC)glXGetProcAddress((const GLubyte*)"glXChooseFBConfig");
PFNGLXGETVISUALFROMFBCONFIGPROC glXGetVisualFromFBConfig = (PFNGLXGETVISUALFROMFBCONFIGPROC)glXGetProcAddress((const GLubyte*)"glXGetVisualFromFBConfig");
PFNGLXGETFBCONFIGATTRIBPROC glXGetFBConfigAttrib = (PFNGLXGETFBCONFIGATTRIBPROC)glXGetProcAddress((const GLubyte*)"glXGetFBConfigAttrib");
GLXFBConfig* _fbc = glXChooseFBConfig(_PrSystemMem->pDisplay, DefaultScreen(_PrSystemMem->pDisplay), _visualattr, &_fbcount);
assert(_fbc);
BLS32 _bestfbc = -1, _worstfbc = -1, _bestnumsamp = -1, _worstnumsamp = 999;
for (BLS32 _idx = 0; _idx < _fbcount; ++_idx)
{
XVisualInfo* _vi = glXGetVisualFromFBConfig(_PrSystemMem->pDisplay, _fbc[_idx]);
if (_vi)
{
BLS32 _sampbuf, _samples;
glXGetFBConfigAttrib(_PrSystemMem->pDisplay, _fbc[_idx], GLX_SAMPLE_BUFFERS , &_sampbuf);
glXGetFBConfigAttrib(_PrSystemMem->pDisplay, _fbc[_idx], GLX_SAMPLES , &_samples);
if (_bestfbc < 0 || (_sampbuf && _samples > _bestnumsamp))
_bestfbc = _idx, _bestnumsamp = _samples;
if (_worstfbc < 0 || !_sampbuf || _samples < _worstnumsamp)
_worstfbc = _idx, _worstnumsamp = _samples;
}
XFree(_vi);
}
GLXFBConfig _bestfbconfig = _fbc[_bestfbc];
XFree(_fbc);
XVisualInfo* _vi = glXGetVisualFromFBConfig(_PrSystemMem->pDisplay, _bestfbconfig);
XSetWindowAttributes _swa;
_swa.colormap = _PrSystemMem->nColormap = XCreateColormap(_PrSystemMem->pDisplay, RootWindow(_PrSystemMem->pDisplay, _vi->screen), _vi->visual, AllocNone);
_swa.background_pixmap = None;
_swa.border_pixel = 0;
_swa.event_mask = 6520959;
_swa.override_redirect = (_PrSystemMem->sBoostParam.bFullscreen && !_PrSystemMem->bEWMHSupported) ? True : False;
BLU32 _width = _PrSystemMem->sBoostParam.nScreenWidth;
BLU32 _height = _PrSystemMem->sBoostParam.nScreenHeight;
BLS32 _x = (DisplayWidth(_PrSystemMem->pDisplay, XDefaultScreen(_PrSystemMem->pDisplay))) - _width;
BLS32 _y = (DisplayHeight(_PrSystemMem->pDisplay, XDefaultScreen(_PrSystemMem->pDisplay))) - _height;
_PrSystemMem->nWindow = XCreateWindow(_PrSystemMem->pDisplay, RootWindow(_PrSystemMem->pDisplay, _vi->screen), _x/2, _y/2, _width, _height, 0, _vi->depth, InputOutput, _vi->visual, (CWEventMask | CWOverrideRedirect | CWColormap), &_swa);
assert(_PrSystemMem->nWindow);
XFree(_vi);
XSelectInput(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, (FocusChangeMask | EnterWindowMask | LeaveWindowMask | ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | KeyPressMask | KeyReleaseMask | PropertyChangeMask | StructureNotifyMask | KeymapStateMask));
if (_PrSystemMem->bEWMHSupported)
{
_PrSystemMem->nPing = XInternAtom(_PrSystemMem->pDisplay, "_NET_WM_PING", False);
_wmpid = XInternAtom(_PrSystemMem->pDisplay, "_NET_WM_PID", False);
if (_PrSystemMem->nPing && _wmpid)
{
const pid_t _pid = getpid();
XChangeProperty(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _wmpid, XA_CARDINAL, 32, PropModeReplace, (const BLU8*)&_pid, 1);
XChangeProperty(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nProtocols, XA_ATOM, 32, PropModeReplace, (const BLU8*)&_wmpid, 1);
}
}
XWMHints* _hints = XAllocWMHints();
_hints->flags = StateHint;
_hints->initial_state = NormalState;
XSetWMHints(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _hints);
XFree(_hints);
if (_PrSystemMem->sBoostParam.bFullscreen && _PrSystemMem->nBorder != None)
{
struct
{
unsigned long flags;
unsigned long functions;
unsigned long decorations;
long inputmode;
unsigned long state;
} _bhints;
_bhints.flags = (1 << 0) | (1 << 1);
_bhints.decorations = (1 << 6) | (1 << 2);
_bhints.functions = (1 << 4) | (1 << 1) | (1 << 5);
_bhints.inputmode = 0;
_bhints.state = 0;
XChangeProperty(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nBorder, _PrSystemMem->nBorder, 32, PropModeReplace, (const BLU8*)&_bhints, 5);
}
if (XSupportsLocale())
{
if (XSetLocaleModifiers("") != NULL)
{
_PrSystemMem->pIME = XOpenIM(_PrSystemMem->pDisplay, 0, NULL, NULL);
if (_PrSystemMem->pIME)
{
BLU32 _idx;
BLBool _found = FALSE;
XIMStyles* _styles = NULL;
if (XGetIMValues(_PrSystemMem->pIME, XNQueryInputStyle, &_styles, NULL) != NULL)
return;
for (_idx = 0; _idx < _styles->count_styles; ++_idx)
{
if (_styles->supported_styles[_idx] == (XIMPreeditNothing | XIMStatusNothing))
{
_found = TRUE;
break;
}
}
XFree(_styles);
if (!_found)
{
XCloseIM(_PrSystemMem->pIME);
_PrSystemMem->pIME = NULL;
}
}
}
}
BLS32 _comp = 1;
XChangeProperty(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _compositor, XA_CARDINAL, 32, PropModeReplace, (BLU8*)&_comp, 1);
XSetWMProtocols(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, &_PrSystemMem->nDelwin, 1);
XStoreName(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, (const BLAnsi*)_PrSystemMem->sBoostParam.pAppName);
XMapWindow(_PrSystemMem->pDisplay, _PrSystemMem->nWindow);
XMoveWindow(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _x / 2, _y / 2);
if (_PrSystemMem->sBoostParam.bFullscreen)
_EnterFullscreen();
_PrSystemMem->nCursor = XCreateFontCursor(_PrSystemMem->pDisplay, XC_left_ptr);
Pixmap _ncursorpixmap = XCreatePixmap(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, 1, 1, 1);
GC _graphicsctx = XCreateGC(_PrSystemMem->pDisplay, _ncursorpixmap, 0, NULL);
XDrawPoint(_PrSystemMem->pDisplay, _ncursorpixmap, _graphicsctx, 0, 0);
XFreeGC(_PrSystemMem->pDisplay, _graphicsctx);
XColor _alphacolor;
_alphacolor.flags = DoRed | DoGreen | DoBlue;
_alphacolor.red = _alphacolor.blue = _alphacolor.green = 0;
_PrSystemMem->nNilCursor = XCreatePixmapCursor(_PrSystemMem->pDisplay, _ncursorpixmap, _ncursorpixmap, &_alphacolor, &_alphacolor, 0, 0);
XFreePixmap(_PrSystemMem->pDisplay, _ncursorpixmap);
_GpuIntervention(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _width, _height, _bestfbconfig, _PrSystemMem->pLib, !_PrSystemMem->sBoostParam.bProfiler);
XFlush(_PrSystemMem->pDisplay);
}
BLVoid
_PollMsg()
{
BLS32 _count = XPending(_PrSystemMem->pDisplay);
while (_count--)
{
XEvent _event;
XNextEvent(_PrSystemMem->pDisplay, &_event);
_WndProc(&_event);
}
XFlush(_PrSystemMem->pDisplay);
}
BLVoid
_CloseWindow()
{
XLockDisplay(_PrSystemMem->pDisplay);
XUnmapWindow(_PrSystemMem->pDisplay, _PrSystemMem->nWindow);
XDestroyWindow(_PrSystemMem->pDisplay, _PrSystemMem->nWindow);
if (_PrSystemMem->pIME)
XCloseIM(_PrSystemMem->pIME);
XFreeColormap(_PrSystemMem->pDisplay, _PrSystemMem->nColormap);
_GpuAnitIntervention();
XUnlockDisplay(_PrSystemMem->pDisplay);
XCloseDisplay(_PrSystemMem->pDisplay);
dlclose(_PrSystemMem->pLib);
}
#elif defined(BL_PLATFORM_ANDROID)
extern "C" {
JNIEXPORT BLVoid JNICALL Java_org_bulllord_app_BLActivity_textChanged(JNIEnv* _Env, jobject, jstring _Text)
{
const BLUtf8* _utf8str = (const BLUtf8*)_Env->GetStringUTFChars(_Text, NULL);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, _utf8str, INVALID_GUID);
_Env->ReleaseStringUTFChars(_Text, (const BLAnsi*)_utf8str);
}
JNIEXPORT BLVoid JNICALL Java_org_bulllord_app_BLActivity_activityReady(JNIEnv* _Env, jobject, jobject _Activity, jint _Aep)
{
_PrSystemMem->pBLJava = _Activity;
_PrSystemMem->bAEPSupport = (_Aep == 1) ? TRUE : FALSE;
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pBLJava = _env->NewGlobalRef(_PrSystemMem->pBLJava);
}
}
static BLVoid
_WndProc(BLS32 _Msg, BLVoid* _Userdata)
{
int8_t _cmd = _Msg;
switch (_Msg)
{
case 10:
case 13:
case 14:
pthread_mutex_lock(&_PrSystemMem->sMutex);
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
while (_PrSystemMem->nActivityState != _cmd)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
case 11:
{
pthread_mutex_lock(&_PrSystemMem->sMutex);
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
while (_PrSystemMem->nActivityState != _cmd)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
JNIEnv* _env = _PrSystemMem->pActivity->env;
ANativeActivity_setWindowFlags(_PrSystemMem->pActivity, AWINDOW_FLAG_FULLSCREEN, AWINDOW_FLAG_FULLSCREEN);
jclass _acticls = _env->GetObjectClass(_PrSystemMem->pActivity->clazz);
jmethodID _getmid = _env->GetMethodID(_acticls, "getWindow", "()Landroid/view/Window;");
jobject _wndobj = _env->CallObjectMethod(_PrSystemMem->pActivity->clazz, _getmid);
_env->DeleteLocalRef(_acticls);
_env->DeleteLocalRef(_wndobj);
}
break;
case 6:
_PrSystemMem->bAvtivityFocus = TRUE;
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
break;
case 7:
_PrSystemMem->bAvtivityFocus = FALSE;
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
break;
case 8:
case 9:
case 12:
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
break;
case 21:
case 22:
{
pthread_mutex_lock(&_PrSystemMem->sMutex);
if (_PrSystemMem->pPendingWindow != NULL)
{
_cmd = 2;
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
}
_PrSystemMem->pPendingWindow = (ANativeWindow*)_Userdata;
if (_Userdata != NULL)
{
_cmd = 1;
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
}
while (_PrSystemMem->pWindow != _PrSystemMem->pPendingWindow)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
}
break;
case 23:
case 24:
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->pPendingInputQueue = (AInputQueue*)_Userdata;
_cmd = 0;
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
while (_PrSystemMem->pInputQueue != _PrSystemMem->pPendingInputQueue)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
default:
break;
}
}
BLVoid
_ShowWindow()
{
pthread_mutex_lock(&_PrSystemMem->sMutex);
if (_PrSystemMem->sBoostParam.nScreenWidth > _PrSystemMem->sBoostParam.nScreenHeight)
_PrSystemMem->nOrientation = SCREEN_LANDSCAPE_INTERNAL;
else
_PrSystemMem->nOrientation = SCREEN_PORTRAIT_INTERNAL;
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
jobject _actiobj = _PrSystemMem->pActivity->clazz;
jclass _acticls = _env->GetObjectClass(_actiobj);
jmethodID _orimid = _env->GetMethodID(_acticls, "setRequestedOrientation", "(I)V");
if (_PrSystemMem->sBoostParam.nScreenWidth > _PrSystemMem->sBoostParam.nScreenHeight)
_env->CallVoidMethod(_actiobj, _orimid, _PrSystemMem->nOrientation | 8);
else
_env->CallVoidMethod(_actiobj, _orimid, _PrSystemMem->nOrientation);
jclass _metcls = _env->FindClass("android/util/DisplayMetrics");
jmethodID _initmid = _env->GetMethodID(_metcls, "<init>", "()V");
jobject _metobj = _env->NewObject(_metcls, _initmid);
jmethodID _getwndmid = _env->GetMethodID(_acticls, "getWindow", "()Landroid/view/Window;");
jobject _wndobj = _env->CallObjectMethod(_actiobj, _getwndmid);
jclass _wndcls = _env->FindClass("android/view/Window");
jmethodID _getviewmid = _env->GetMethodID(_wndcls, "getDecorView", "()Landroid/view/View;");
jobject _viewobj = _env->CallObjectMethod(_wndobj, _getviewmid);
jmethodID _getmgrmid = _env->GetMethodID(_acticls, "getWindowManager", "()Landroid/view/WindowManager;");
jobject _mgrobj = _env->CallObjectMethod(_actiobj, _getmgrmid);
jclass _mgrcls = _env->FindClass("android/view/WindowManager");
jmethodID _getdismid = _env->GetMethodID(_mgrcls, "getDefaultDisplay", "()Landroid/view/Display;");
jobject _disobj = _env->CallObjectMethod(_mgrobj, _getdismid);
jclass _discls = _env->FindClass("android/view/Display");
jmethodID _getmetmid = _env->GetMethodID(_discls, "getRealMetrics", "(Landroid/util/DisplayMetrics;)V");
_env->CallVoidMethod(_disobj, _getmetmid, _metobj);
jfieldID _wfiled = _env->GetFieldID(_metcls, "widthPixels", "I");
jfieldID _hfield = _env->GetFieldID(_metcls, "heightPixels", "I");
jint _w = _env->GetIntField(_metobj, _wfiled);
jint _h = _env->GetIntField(_metobj, _hfield);
BLF32 _maxv = MAX_INTERNAL(_w, _h);
BLF32 _minv = MIN_INTERNAL(_w, _h);
if (_PrSystemMem->nOrientation == SCREEN_LANDSCAPE_INTERNAL)
{
_PrSystemMem->sBoostParam.nScreenWidth = _maxv;
_PrSystemMem->sBoostParam.nScreenHeight = _minv;
}
else
{
_PrSystemMem->sBoostParam.nScreenWidth = _minv;
_PrSystemMem->sBoostParam.nScreenHeight = _maxv;
}
_env->DeleteLocalRef(_wndobj);
_env->DeleteLocalRef(_viewobj);
_env->DeleteLocalRef(_acticls);
_env->DeleteLocalRef(_metcls);
_env->DeleteLocalRef(_disobj);
_env->DeleteLocalRef(_mgrobj);
_env->DeleteLocalRef(_mgrcls);
_env->DeleteLocalRef(_metobj);
_env->DeleteLocalRef(_discls);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
pthread_mutex_unlock(&_PrSystemMem->sMutex);
while (!_PrSystemMem->pWindow);
_GpuIntervention(_PrSystemMem->pWindow, _PrSystemMem->sBoostParam.nScreenWidth, _PrSystemMem->sBoostParam.nScreenHeight, !_PrSystemMem->sBoostParam.bProfiler, FALSE, _PrSystemMem->bAEPSupport);
}
BLVoid
_PollMsg()
{
BLS32 _ident;
BLS32 _events;
while ((_ident = ALooper_pollAll(0, NULL, &_events, NULL)) >= 0)
{
if (1 == _ident)
{
int8_t _cmd;
read(_PrSystemMem->nMsgRead, &_cmd, sizeof(_cmd));
if (12 == _cmd)
{
pthread_mutex_lock(&_PrSystemMem->sMutex);
if (_PrSystemMem->pSavedState != NULL)
{
free(_PrSystemMem->pSavedState);
_PrSystemMem->pSavedState = NULL;
_PrSystemMem->nSavedStateSize = 0;
}
pthread_mutex_unlock(&_PrSystemMem->sMutex);
}
switch (_cmd)
{
case 0:
pthread_mutex_lock(&_PrSystemMem->sMutex);
if (_PrSystemMem->pInputQueue != NULL)
AInputQueue_detachLooper(_PrSystemMem->pInputQueue);
_PrSystemMem->pInputQueue = _PrSystemMem->pPendingInputQueue;
if (_PrSystemMem->pInputQueue != NULL)
AInputQueue_attachLooper(_PrSystemMem->pInputQueue, _PrSystemMem->pLooper, 2, NULL, NULL);
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
case 1:
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->pWindow = _PrSystemMem->pPendingWindow;
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
_PrSystemMem->bBackendState = TRUE;
break;
case 2:
pthread_cond_broadcast(&_PrSystemMem->sCond);
break;
case 11:
case 10:
case 13:
case 14:
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->nActivityState = _cmd;
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
case 8:
AConfiguration_fromAssetManager(_PrSystemMem->pConfig, _PrSystemMem->pActivity->assetManager);
break;
case 15:
pthread_mutex_lock(&_PrSystemMem->sMutex);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
_GbSystemRunning = FALSE;
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
}
switch (_cmd)
{
case 2:
_GbSystemRunning = 2;
break;
default:
break;
}
switch (_cmd)
{
case 2:
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->pWindow = NULL;
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
case 12:
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->nStateSaved = 1;
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
case 11:
pthread_mutex_lock(&_PrSystemMem->sMutex);
if (_PrSystemMem->pSavedState != NULL)
{
free(_PrSystemMem->pSavedState);
_PrSystemMem->pSavedState = NULL;
_PrSystemMem->nSavedStateSize = 0;
}
pthread_mutex_unlock(&_PrSystemMem->sMutex);
break;
}
}
else
{
AInputEvent* _event = NULL;
while (AInputQueue_getEvent(_PrSystemMem->pInputQueue, &_event) >= 0)
{
if (AInputQueue_preDispatchEvent(_PrSystemMem->pInputQueue, _event))
continue;
if (AINPUT_EVENT_TYPE_MOTION == AInputEvent_getType(_event))
{
BLS32 _action = AMotionEvent_getAction(_event);
switch (_action & AMOTION_EVENT_ACTION_MASK)
{
case AMOTION_EVENT_ACTION_MOVE:
{
BLS32 _x = AMotionEvent_getX(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
BLS32 _y = AMotionEvent_getY(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_MOVE, NULL, INVALID_GUID);
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
}
break;
case AMOTION_EVENT_ACTION_DOWN:
{
BLS32 _x = AMotionEvent_getX(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
BLS32 _y = AMotionEvent_getY(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_LDOWN, NULL, INVALID_GUID);
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
}
break;
case AMOTION_EVENT_ACTION_POINTER_DOWN:
{
BLS32 _x = AMotionEvent_getX(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
BLS32 _y = AMotionEvent_getY(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_RDOWN, NULL, INVALID_GUID);
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
}
break;
case AMOTION_EVENT_ACTION_UP:
{
BLS32 _x = AMotionEvent_getX(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
BLS32 _y = AMotionEvent_getY(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_LUP, NULL, INVALID_GUID);
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
}
break;
case AMOTION_EVENT_ACTION_POINTER_UP:
{
BLS32 _x = AMotionEvent_getX(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
BLS32 _y = AMotionEvent_getY(_event, _action >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_RUP, NULL, INVALID_GUID);
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
}
break;
default:
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 0);
break;
}
}
else if (AINPUT_EVENT_TYPE_KEY == AInputEvent_getType(_event))
{
BLS32 _action = AKeyEvent_getAction(_event);
BLS32 _key = AKeyEvent_getKeyCode(_event);
if ((_action == AKEY_EVENT_ACTION_DOWN || _action == AKEY_EVENT_ACTION_UP || _action == AKEY_EVENT_ACTION_MULTIPLE) && _key != AKEYCODE_VOLUME_UP && _key != AKEYCODE_VOLUME_DOWN)
{
BLEnum _code = SCANCODE_INTERNAL[_key];
switch (_action)
{
case AKEY_EVENT_ACTION_DOWN:
if (_code == BL_KC_BACKSPACE || _code == BL_KC_RETURN)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if(_code == BL_KC_AC_BACK)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_ESCAPE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
break;
case AKEY_EVENT_ACTION_UP:
if (_code == BL_KC_BACKSPACE || _code == BL_KC_RETURN)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_code == BL_KC_AC_BACK)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_ESCAPE, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
else
{
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
jlong _downtim = AKeyEvent_getDownTime(_event);
jlong _eventtim = AKeyEvent_getEventTime(_event);
jint _repeat = AKeyEvent_getRepeatCount(_event);
jint _meta = AKeyEvent_getMetaState(_event);
jint _device = AInputEvent_getDeviceId(_event);
jint _scancode = AKeyEvent_getScanCode(_event);
jint _flags = AKeyEvent_getFlags(_event);
jint _source = AInputEvent_getSource(_event);
jclass _kecls = _env->FindClass("android/view/KeyEvent");
jmethodID _keconmid = _env->GetMethodID(_kecls, "<init>", "(JJIIIIIIII)V");
jobject _keobj = _env->NewObject(_kecls, _keconmid, _downtim, _eventtim, _action, _key, _repeat, _meta, _device, _scancode, _flags, _source);
jmethodID _unicodemid = _env->GetMethodID(_kecls, "getUnicodeChar", "(I)I");
jint _unicode = _env->CallIntMethod(_keobj, _unicodemid, _meta);
_env->DeleteLocalRef(_kecls);
_env->DeleteLocalRef(_keobj);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
BLUtf16 _tmp[2] = { _unicode, 0 };
const BLUtf8* _utf8str = blGenUtf8Str(_tmp);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, _utf8str, INVALID_GUID);
blDeleteUtf8Str((BLUtf8*)_utf8str);
}
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 1);
break;
default:
AInputQueue_finishEvent(_PrSystemMem->pInputQueue, _event, 0);
break;
}
}
}
}
}
}
}
BLVoid
_CloseWindow()
{
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
_env->DeleteGlobalRef(_PrSystemMem->pBLJava);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
_GpuAnitIntervention();
}
static BLVoid
_Start(ANativeActivity* _Activity) { _WndProc(10, NULL); }
static BLVoid
_Destroy(ANativeActivity* _Activity)
{
int8_t _cmd = 15;
pthread_mutex_lock(&_PrSystemMem->sMutex);
write(_PrSystemMem->nMsgWrite, &_cmd, sizeof(_cmd));
if (_GbSystemRunning)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
close(_PrSystemMem->nMsgRead);
close(_PrSystemMem->nMsgWrite);
pthread_cond_destroy(&_PrSystemMem->sCond);
pthread_mutex_destroy(&_PrSystemMem->sMutex);
free(_PrSystemMem);
_PrSystemMem = NULL;
}
static BLVoid
_Resume(ANativeActivity* _Activity){ _WndProc(11, NULL); _GbSystemRunning = 1; }
static BLVoid
_Pause(ANativeActivity* _Activity) { _WndProc(13, NULL); _GbSystemRunning = 2; }
static BLVoid
_Stop(ANativeActivity* _Activity) { _WndProc(14, NULL);}
static BLVoid
_LowMemory(ANativeActivity* _Activity) { _WndProc(9, NULL); }
static BLVoid
_WindowFocusChanged(ANativeActivity* _Activity, BLS32 _Focused) { _WndProc(_Focused ? 6 : 7, NULL); _GbSystemRunning = _Focused ? 1 : 2; }
static BLVoid
_ConfigurationChanged(ANativeActivity* _Activity) { _WndProc(8, NULL); }
static BLVoid
_NativeWindowCreated(ANativeActivity* _Activity, ANativeWindow* _Window) { _WndProc(21, _Window); }
static BLVoid
_NativeWindowDestroyed(ANativeActivity* _Activity, ANativeWindow* _Window) { _WndProc(22, NULL); }
static BLVoid
_InputQueueCreated(ANativeActivity* _Activity, AInputQueue* _Queue) { _WndProc(23, _Queue); }
static BLVoid
_InputQueueDestroyed(ANativeActivity* _Activity, AInputQueue* _Queue) { _WndProc(24, NULL); }
static BLVoid*
_SaveInstanceState(ANativeActivity* _Activity, size_t* _Len)
{
BLVoid* _saved = NULL;
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->nStateSaved = 0;
_WndProc(12, NULL);
while (!_PrSystemMem->nStateSaved)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
if (_PrSystemMem->pSavedState != NULL)
{
_saved = _PrSystemMem->pSavedState;
*_Len = _PrSystemMem->nSavedStateSize;
_PrSystemMem->pSavedState = NULL;
_PrSystemMem->nSavedStateSize = 0;
}
pthread_mutex_unlock(&_PrSystemMem->sMutex);
return _saved;
}
static BLVoid*
_AppEntry(BLVoid* _Param)
{
_PrSystemMem->pConfig = AConfiguration_new();
AConfiguration_setOrientation(_PrSystemMem->pConfig, ACONFIGURATION_ORIENTATION);
AConfiguration_setKeyboard(_PrSystemMem->pConfig, ACONFIGURATION_KEYBOARD);
AConfiguration_setKeysHidden(_PrSystemMem->pConfig, ACONFIGURATION_KEYBOARD_HIDDEN);
AConfiguration_setScreenSize(_PrSystemMem->pConfig, ACONFIGURATION_SCREEN_SIZE);
AConfiguration_fromAssetManager(_PrSystemMem->pConfig, _PrSystemMem->pActivity->assetManager);
ALooper* _looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS);
ALooper_addFd(_looper, _PrSystemMem->nMsgRead, 1, ALOOPER_EVENT_INPUT, NULL, NULL);
_PrSystemMem->pLooper = _looper;
pthread_mutex_lock(&_PrSystemMem->sMutex);
_GbSystemRunning = TRUE;
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
while (1)
{
ANativeWindow* _wnd;
pthread_mutex_lock(&_PrSystemMem->sMutex);
_wnd = _PrSystemMem->pWindow;
pthread_mutex_unlock(&_PrSystemMem->sMutex);
if (!_wnd)
_PollMsg();
else
break;
}
blSysRun(NULL, 84, 84, 84, 84, 1, 1, 1, 1, NULL, NULL, NULL);
pthread_mutex_lock(&_PrSystemMem->sMutex);
if (_PrSystemMem->pSavedState != NULL)
{
free(_PrSystemMem->pSavedState);
_PrSystemMem->pSavedState = NULL;
_PrSystemMem->nSavedStateSize = 0;
}
if (_PrSystemMem->pInputQueue != NULL)
AInputQueue_detachLooper(_PrSystemMem->pInputQueue);
AConfiguration_delete(_PrSystemMem->pConfig);
pthread_cond_broadcast(&_PrSystemMem->sCond);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
return NULL;
}
#elif defined(BL_PLATFORM_OSX)
@interface OSXDelegate : NSResponder <NSWindowDelegate> @end
@implementation OSXDelegate
- (BLVoid)flagsChanged:(NSEvent *)_Event{ }
- (BLVoid)keyDown:(NSEvent *)_Event{ }
- (BLVoid)keyUp:(NSEvent *)_Event{ }
- (BLVoid)doCommandBySelector:(SEL)_Selector{ }
- (BOOL)windowShouldClose:(id)_Sender{_GbSystemRunning = FALSE; return YES; }
- (BLVoid)windowDidMiniaturize:(NSNotification*)_Notification{ _GbSystemRunning = 2; }
- (BLVoid)windowDidDeminiaturize:(NSNotification*)_Notification{ _GbSystemRunning = 1; }
- (BLVoid)windowWillMove:(NSNotification*)_Notification{ _GbSystemRunning = 2; }
- (BLVoid)windowDidMove:(NSNotification*)_Notification{ _GbSystemRunning = 1; }
- (BLVoid)windowDidResize:(NSNotification *)_Notification
{
NSRect _rect = [_PrSystemMem->pWindow contentRectForFrameRect:[_PrSystemMem->pWindow frame]];
_PrSystemMem->sBoostParam.nScreenWidth = _rect.size.width;
_PrSystemMem->sBoostParam.nScreenHeight = _rect.size.height;
NSView* _view = [_PrSystemMem->pWindow contentView];
NSTrackingArea* _area = [[_view trackingAreas] firstObject];
[_view removeTrackingArea: _area];
NSTrackingAreaOptions _options = NSTrackingMouseEnteredAndExited|NSTrackingActiveAlways|NSTrackingAssumeInside;
_area = [[NSTrackingArea alloc] initWithRect:_view.bounds options:_options owner:_view userInfo:nil];
[_view addTrackingArea:_area];
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_RESOLUTION, 0, NULL, INVALID_GUID);
}
- (BLVoid)close
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
_GbSystemRunning = FALSE;
[_PrSystemMem->pWindow setDelegate:nil];
if ([_PrSystemMem->pWindow nextResponder] == self)
[_PrSystemMem->pWindow setNextResponder:nil];
if ([[_PrSystemMem->pWindow contentView] nextResponder] == self)
[[_PrSystemMem->pWindow contentView] setNextResponder:nil];
}
@end
@interface OSXWindow : NSWindow
- (BOOL)canBecomeKeyWindow;
- (BOOL)canBecomeMainWindow;
@end
@implementation OSXWindow
- (BOOL)canBecomeKeyWindow { return YES; }
- (BOOL)canBecomeMainWindow { return YES; }
@end
@interface OSXTextInput : NSTextView @end
@implementation OSXTextInput
- (BLVoid)doCommandBySelector:(SEL)_Selector{}
- (BOOL)canBecomeFirstResponder{ return YES; }
- (NSInteger)conversationIdentifier{ return (NSInteger) self; }
- (NSAttributedString*)attributedSubstringForProposedRange:(NSRange)_R actualRange:(NSRangePointer)_A{ return nil; }
- (NSUInteger)characterIndexForPoint:(NSPoint)_Point { return 0; }
- (NSArray *)validAttributesForMarkedText{ return [NSArray array]; }
- (BLVoid)insertText:(id)_String replacementRange:(NSRange)_ReplacementRange
{
const BLUtf8* _str;
if ([_String isKindOfClass: [NSAttributedString class]])
_str = (const BLUtf8*)[[_String string] UTF8String];
else
_str = (const BLUtf8*)[_String UTF8String];
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, _str, INVALID_GUID);
}
- (BLVoid)insertText:(id)_String
{
[self insertText:_String replacementRange:NSMakeRange(0, 0)];
}
- (NSRect)firstRectForCharacterRange:(NSRange)_Range actualRange:(NSRangePointer)_ActualRange;
{
NSRect _rect;
NSPoint _origin = [_PrSystemMem->pWindow frame].origin;
NSSize _size = [_PrSystemMem->pWindow frame].size;
_rect.origin.x = _origin.x + _PrSystemMem->sIMEpos.x;
_rect.origin.y = _size.height + _origin.y - _PrSystemMem->sIMEpos.y - 20;
_rect.size.width = 200;
_rect.size.height = 20;
return _rect;
}
@end
BLVoid
_EnterFullscreen()
{
NSRect _rect;
_rect.origin.x = 0;
_rect.origin.y = 0;
_rect.size.width = CGDisplayPixelsWide(kCGDirectMainDisplay);
_rect.size.height = CGDisplayPixelsHigh(kCGDirectMainDisplay);
[NSMenu setMenuBarVisible:NO];
[_PrSystemMem->pWindow setStyleMask:NSBorderlessWindowMask];
[_PrSystemMem->pWindow setFrame:[_PrSystemMem->pWindow frameRectForContentRect:_rect] display:NO];
}
BLVoid
_ExitFullscreen(BLU32 _Width, BLU32 _Height)
{
NSRect _rect;
_rect.origin.x = (CGDisplayPixelsWide(kCGDirectMainDisplay) - _Width)/2;
_rect.origin.y = (CGDisplayPixelsHigh(kCGDirectMainDisplay) - _Height)/2;
_rect.size.width = _Width;
_rect.size.height = _Height;
[NSMenu setMenuBarVisible:YES];
[_PrSystemMem->pWindow setStyleMask:NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask];
[_PrSystemMem->pWindow setFrame:[_PrSystemMem->pWindow frameRectForContentRect:_rect] display:YES];
[_PrSystemMem->pWindow setTitle:[NSString stringWithUTF8String : (const BLAnsi*)_PrSystemMem->sBoostParam.pAppName]];
}
BLVoid
_ShowWindow()
{
_PrSystemMem->pPool = [[NSAutoreleasePool alloc] init];
[NSApplication sharedApplication];
NSString* _appname = [NSString stringWithUTF8String : (const BLAnsi*)_PrSystemMem->sBoostParam.pAppName];
NSMenu* _bar = [[NSMenu alloc] init];
[NSApp setMainMenu:_bar];
NSMenuItem* _item = [_bar addItemWithTitle:@"" action:NULL keyEquivalent:@""];
NSMenu* _menu = [[NSMenu alloc] init];
[_item setSubmenu:_menu];
[_menu addItemWithTitle:[NSString stringWithFormat:@"About %@", _appname] action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""];
[_menu addItem:[NSMenuItem separatorItem]];
NSMenu* _services = [[NSMenu alloc] init];
[NSApp setServicesMenu:_services];
[[_menu addItemWithTitle:@"Services" action:NULL keyEquivalent:@""] setSubmenu:_services];
[_services release];
[_menu addItem:[NSMenuItem separatorItem]];
[_menu addItemWithTitle:[NSString stringWithFormat:@"Hide %@", _appname] action:@selector(hide:) keyEquivalent:@"h"];
[[_menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]
setKeyEquivalentModifierMask:NSAlternateKeyMask | NSCommandKeyMask];
[_menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""];
[_menu addItem:[NSMenuItem separatorItem]];
[_menu addItemWithTitle:[NSString stringWithFormat:@"Quit %@", _appname] action:@selector(terminate:) keyEquivalent:@"q"];
NSMenuItem* _windowitem = [_bar addItemWithTitle:@"" action:NULL keyEquivalent:@""];
[_bar release];
NSMenu* _winmenu = [[NSMenu alloc] initWithTitle:@"Window"];
[NSApp setWindowsMenu:_winmenu];
[_windowitem setSubmenu:_winmenu];
[_winmenu addItemWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"];
[_winmenu addItemWithTitle:@"Zoom" action:@selector(performZoom:) keyEquivalent:@""];
[_winmenu addItem:[NSMenuItem separatorItem]];
[_winmenu addItemWithTitle:@"Bring All to Front" action:@selector(arrangeInFront:) keyEquivalent:@""];
[_winmenu addItem:[NSMenuItem separatorItem]];
[[_winmenu addItemWithTitle:@"Enter Full Screen" action:@selector(toggleFullScreen:) keyEquivalent:@"f"]
setKeyEquivalentModifierMask:NSControlKeyMask | NSCommandKeyMask];
SEL _selector = NSSelectorFromString(@"setAppleMenu:");
[NSApp performSelector:_selector withObject:_menu];
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
[NSApp activateIgnoringOtherApps:YES];
[NSApp finishLaunching];
NSRect _rect;
BLU32 _style = 0;
if (_PrSystemMem->sBoostParam.bFullscreen)
{
_style = NSBorderlessWindowMask;
_rect.origin.x = 0;
_rect.origin.y = 0;
_rect.size.width = CGDisplayPixelsWide(kCGDirectMainDisplay);
_rect.size.height = CGDisplayPixelsHigh(kCGDirectMainDisplay);
[NSMenu setMenuBarVisible:NO];
}
else
{
_style = NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask;
_rect.origin.x = (CGDisplayPixelsWide(kCGDirectMainDisplay) - _PrSystemMem->sBoostParam.nScreenWidth)/2;
_rect.origin.y = (CGDisplayPixelsHigh(kCGDirectMainDisplay) - _PrSystemMem->sBoostParam.nScreenHeight)/2;
_rect.size.width = _PrSystemMem->sBoostParam.nScreenWidth;
_rect.size.height = _PrSystemMem->sBoostParam.nScreenHeight;
[NSMenu setMenuBarVisible:YES];
}
_PrSystemMem->pWindow = [[OSXWindow alloc] initWithContentRect:_rect styleMask:_style backing:NSBackingStoreBuffered defer:NO screen:[NSScreen screens][0]];
[_PrSystemMem->pWindow setTitle:_appname];
[_PrSystemMem->pWindow setBackgroundColor:[NSColor blackColor]];
[_PrSystemMem->pWindow setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
NSView* _view = [_PrSystemMem->pWindow contentView];
_PrSystemMem->pDelegate = [[OSXDelegate alloc] init];
[_PrSystemMem->pWindow setDelegate:_PrSystemMem->pDelegate];
[_PrSystemMem->pWindow setNextResponder:_PrSystemMem->pDelegate];
[_PrSystemMem->pWindow setAcceptsMouseMovedEvents:YES];
[_PrSystemMem->pWindow setOneShot:NO];
[_PrSystemMem->pWindow makeKeyAndOrderFront:nil];
[_PrSystemMem->pWindow center];
[_PrSystemMem->pWindow setAutodisplay:YES];
[_PrSystemMem->pWindow setReleasedWhenClosed:NO];
NSTrackingAreaOptions _options = NSTrackingMouseEnteredAndExited|NSTrackingActiveAlways|NSTrackingAssumeInside;
NSTrackingArea* _area = [[NSTrackingArea alloc] initWithRect:_view.bounds options:_options owner:_view userInfo:nil];
[_view addTrackingArea:_area];
_GpuIntervention(_view, _rect.size.width, _rect.size.height, !_PrSystemMem->sBoostParam.bProfiler);
# ifndef DEBUG
if (_PrSystemMem->sBoostParam.bFullscreen)
[_PrSystemMem->pWindow setLevel:CGShieldingWindowLevel()];
else
[_PrSystemMem->pWindow setLevel:kCGNormalWindowLevel];
# endif
}
BLVoid
_PollMsg()
{
@autoreleasepool
{
while (1)
{
NSEvent* _event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:[NSDate distantPast] inMode:NSDefaultRunLoopMode dequeue:YES ];
if (_event == nil)
break;
switch ([_event type])
{
case NSMouseEntered:
{
if (_UseCustomCursor())
[NSCursor hide];
}
break;
case NSMouseExited:
{
[NSCursor unhide];
}
break;
case NSLeftMouseDown:
{
if ([_event window])
{
if (NSPointInRect([_event locationInWindow], [[[_event window] contentView] frame]))
{
NSPoint _pos = [NSEvent mouseLocation];
NSPoint _origin = [_PrSystemMem->pWindow frame].origin;
BLU32 _x = _pos.x - _origin.x;
BLU32 _y = _PrSystemMem->sBoostParam.nScreenHeight - _pos.y + _origin.y;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_LDOWN, NULL, INVALID_GUID);
}
}
}
break;
case NSRightMouseDown:
{
if ([_event window])
{
if (NSPointInRect([_event locationInWindow], [[[_event window] contentView] frame]))
{
NSPoint _pos = [NSEvent mouseLocation];
NSPoint _origin = [_PrSystemMem->pWindow frame].origin;
BLU32 _x = _pos.x - _origin.x;
BLU32 _y = _PrSystemMem->sBoostParam.nScreenHeight - _pos.y + _origin.y;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_RDOWN, NULL, INVALID_GUID);
}
}
}
break;
case NSLeftMouseUp:
{
if ([_event window])
{
if (NSPointInRect([_event locationInWindow], [[[_event window] contentView] frame]))
{
NSPoint _pos = [NSEvent mouseLocation];
NSPoint _origin = [_PrSystemMem->pWindow frame].origin;
BLU32 _x = _pos.x - _origin.x;
BLU32 _y = _PrSystemMem->sBoostParam.nScreenHeight - _pos.y + _origin.y;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_LUP, NULL, INVALID_GUID);
}
}
}
break;
case NSRightMouseUp:
{
if ([_event window])
{
if (NSPointInRect([_event locationInWindow], [[[_event window] contentView] frame]))
{
NSPoint _pos = [NSEvent mouseLocation];
NSPoint _origin = [_PrSystemMem->pWindow frame].origin;
BLU32 _x = _pos.x - _origin.x;
BLU32 _y = _PrSystemMem->sBoostParam.nScreenHeight - _pos.y + _origin.y;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_RUP, NULL, INVALID_GUID);
}
}
}
break;
case NSMouseMoved:
{
if ([_event window])
{
if (NSPointInRect([_event locationInWindow], [[[_event window] contentView] frame]))
{
NSPoint _pos = [NSEvent mouseLocation];
NSPoint _origin = [_PrSystemMem->pWindow frame].origin;
BLU32 _x = _pos.x - _origin.x;
BLU32 _y = _PrSystemMem->sBoostParam.nScreenHeight - _pos.y + _origin.y;
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_MOVE, NULL, INVALID_GUID);
}
}
}
break;
case NSScrollWheel:
{
BLF32 _delta;
if (floor(NSAppKitVersionNumber) >= NSAppKitVersionNumber10_7)
{
_delta = [_event scrollingDeltaY];
if ([_event hasPreciseScrollingDeltas])
_delta *= 0.1f;
}
else
_delta = [_event deltaY];
_delta *= 10;
if (_delta < 0)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(1, (BLS32)-_delta), BL_ME_WHEEL, NULL, INVALID_GUID);
else
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(0, (BLS32)_delta), BL_ME_WHEEL, NULL, INVALID_GUID);
}
break;
case NSKeyDown:
{
BLEnum _code = SCANCODE_INTERNAL[[_event keyCode]];
if (_PrSystemMem->bCtrlPressed)
{
switch (_code)
{
case BL_KC_A:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_SELECT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_C:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_COPY, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_X:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_CUT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case BL_KC_V:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_PASTE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
default:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
}
}
else
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
break;
case NSKeyUp:
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(SCANCODE_INTERNAL[[_event keyCode]], FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
break;
case NSFlagsChanged:
{
BLEnum _code = SCANCODE_INTERNAL[[_event keyCode]];
NSEventModifierFlags _flags = [_event modifierFlags];
if (_code == BL_KC_CAPSLOCK)
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
break;
}
if (_flags & NSFunctionKeyMask)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_flags & NSAlternateKeyMask)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_flags & NSControlKeyMask)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_flags & NSShiftKeyMask)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_flags & NSNumericPadKeyMask)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_flags & NSHelpKeyMask)
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
else if (_flags & NSCommandKeyMask)
{
_PrSystemMem->bCtrlPressed = TRUE;
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
}
else
{
if (!(_flags & NSAlphaShiftKeyMask))
{
if (_code == BL_KC_LGUI || _code == BL_KC_RGUI)
_PrSystemMem->bCtrlPressed = FALSE;
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
else
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_code, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
}
break;
default:
break;
}
[NSApp sendEvent:_event];
}
}
}
BLVoid
_CloseWindow()
{
_GpuAnitIntervention();
[_PrSystemMem->pTICcxt release];
[NSMenu setMenuBarVisible:YES];
[_PrSystemMem->pWindow release];
[_PrSystemMem->pPool release];
}
#elif defined(BL_PLATFORM_IOS)
@interface IOSWindow : UIWindow
- (BLVoid)layoutSubviews;
@end
@implementation IOSWindow
- (BLVoid)layoutSubviews
{
self.frame = self.screen.bounds;
[super layoutSubviews];
}
@end
@interface IOSView : UIView
- (instancetype)initWithFrame:(CGRect)_Frame;
- (CGPoint)touchLocation:(UITouch*)_Touch shouldNormalize:(BOOL)_Normalize;
- (BLVoid)touchesBegan:(NSSet*)_Touches withEvent:(UIEvent*)_Event;
- (BLVoid)touchesEnded:(NSSet*)_Touches withEvent:(UIEvent*)_Event;
- (BLVoid)touchesMoved:(NSSet*)_Touches withEvent:(UIEvent*)_Event;
@end
@implementation IOSView{
UITouch* _FFDown;
}
- (instancetype)initWithFrame:(CGRect)_Frame
{
if ((self = [super initWithFrame:_Frame]))
{
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.autoresizesSubviews = YES;
self.multipleTouchEnabled = YES;
}
return self;
}
- (CGPoint)touchLocation:(UITouch*)_Touch shouldNormalize:(BOOL)_Normalize
{
CGPoint _point = [_Touch locationInView:self];
if (_Normalize)
{
CGRect _bounds = self.bounds;
_point.x /= _bounds.size.width;
_point.y /= _bounds.size.height;
}
return _point;
}
- (BLVoid)touchesBegan:(NSSet*)_Touches withEvent:(UIEvent*)_Event
{
for (UITouch* _touch in _Touches)
{
if (!_FFDown)
_FFDown = _touch;
if (_FFDown == _touch)
{
CGPoint _location = [self touchLocation:_touch shouldNormalize:NO];
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_location.y * _PrSystemMem->nRetinaScale, _location.x * _PrSystemMem->nRetinaScale), BL_ME_LDOWN, NULL, INVALID_GUID);
}
else
{
CGPoint _location = [self touchLocation:_touch shouldNormalize:YES];
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_location.y * _PrSystemMem->nRetinaScale, _location.x * _PrSystemMem->nRetinaScale), BL_ME_RDOWN, NULL, INVALID_GUID);
}
}
}
- (BLVoid)touchesEnded:(NSSet*)_Touches withEvent:(UIEvent*)_Event
{
for (UITouch* _touch in _Touches)
{
if (_touch == _FFDown)
{
CGPoint _location = [self touchLocation:_touch shouldNormalize:NO];
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_location.y * _PrSystemMem->nRetinaScale, _location.x * _PrSystemMem->nRetinaScale), BL_ME_LUP, NULL, INVALID_GUID);
_FFDown = nil;
}
else
{
CGPoint _location = [self touchLocation:_touch shouldNormalize:YES];
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_location.y * _PrSystemMem->nRetinaScale, _location.x * _PrSystemMem->nRetinaScale), BL_ME_RUP, NULL, INVALID_GUID);
}
}
}
- (BLVoid)touchesCancelled:(NSSet*)_Touches withEvent:(UIEvent*)_Event
{
[self touchesEnded:_Touches withEvent:_Event];
}
- (BLVoid)touchesMoved:(NSSet*)_Touches withEvent:(UIEvent*)_Event
{
for (UITouch* _touch in _Touches)
{
CGPoint _location = [self touchLocation:_touch shouldNormalize:NO];
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_location.y * _PrSystemMem->nRetinaScale, _location.x * _PrSystemMem->nRetinaScale), BL_ME_MOVE, NULL, INVALID_GUID);
}
}
@end
@interface IOSGLESView : IOSView
- (instancetype)initWithFrame:(CGRect)_Frame scale:(CGFloat)_Scale;
@end
@implementation IOSGLESView {}
+ (Class)layerClass
{
return [CAEAGLLayer class];
}
- (instancetype)initWithFrame:(CGRect)_Frame scale:(CGFloat)_Scale
{
if ((self = [super initWithFrame:_Frame]))
{
CAEAGLLayer* _eagllayer = (CAEAGLLayer*)self.layer;
_eagllayer.opaque = YES;
_eagllayer.drawableProperties = @{
kEAGLDrawablePropertyRetainedBacking:@(YES),
kEAGLDrawablePropertyColorFormat:kEAGLColorFormatRGBA8
};
self.contentScaleFactor = _Scale;
}
return self;
}
- (void)layoutSubviews {
[super layoutSubviews];
}
@end
@interface IOSMETALView : IOSView
- (instancetype)initWithFrame:(CGRect)_Frame scale:(CGFloat)_Scale;
@end
@implementation IOSMETALView {}
+ (Class)layerClass
{
#if TARGET_IPHONE_SIMULATOR
return [CAEAGLLayer class];
#else
return [CAMetalLayer class];
#endif
}
- (instancetype)initWithFrame:(CGRect)_Frame scale:(CGFloat)_Scale
{
if ((self = [super initWithFrame:_Frame]))
{
self.contentScaleFactor = _Scale;
}
return self;
}
@end
@interface IOSController : UIViewController <UITextFieldDelegate>
- (instancetype)initWithNil;
- (BLVoid)loadView;
- (BLVoid)viewDidLayoutSubviews;
- (NSUInteger)supportedInterfaceOrientations;
- (BOOL)prefersStatusBarHidden;
- (BLVoid)initKeyboard;
- (BLVoid)deinitKeyboard;
- (BLVoid)keyboardWillShow:(NSNotification*)_Notification;
- (BLVoid)keyboardWillHide:(NSNotification*)_Notification;
- (BLVoid)updateKeyboard;
@end
@implementation IOSController{
}
- (instancetype)initWithNil
{
[super initWithNibName:nil bundle:nil];
[self initKeyboard];
return self;
}
- (BLVoid)dealloc
{
[self deinitKeyboard];
[super dealloc];
}
- (BLVoid)loadView{}
- (BOOL)prefersStatusBarHidden{ return YES; }
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)_Orientation
{
return ([self supportedInterfaceOrientations] & (1 << _Orientation)) != 0;
}
- (NSUInteger)supportedInterfaceOrientations
{
NSUInteger _mask = 0;
if (_PrSystemMem->nOrientation == SCREEN_LANDSCAPE_INTERNAL)
_mask |= UIInterfaceOrientationMaskLandscape;
else
_mask |= (UIInterfaceOrientationMaskPortrait);
return _mask;
}
- (BLVoid)viewDidLayoutSubviews
{
const CGSize _size = self.view.bounds.size;
_PrSystemMem->sBoostParam.nScreenWidth = _size.width * _PrSystemMem->nRetinaScale;
_PrSystemMem->sBoostParam.nScreenHeight = _size.height * _PrSystemMem->nRetinaScale;
}
- (BLVoid)doLoop:(CADisplayLink*)_Sender
{
_SystemStep();
}
- (BLVoid)initKeyboard
{
_PrSystemMem->pTICcxt = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
_PrSystemMem->pTICcxt.delegate = self;
_PrSystemMem->pTICcxt.text = @" ";
_PrSystemMem->pTICcxt.autocapitalizationType = UITextAutocapitalizationTypeNone;
_PrSystemMem->pTICcxt.autocorrectionType = UITextAutocorrectionTypeNo;
_PrSystemMem->pTICcxt.enablesReturnKeyAutomatically = NO;
_PrSystemMem->pTICcxt.keyboardAppearance = UIKeyboardAppearanceDefault;
_PrSystemMem->pTICcxt.keyboardType = UIKeyboardTypeDefault;
_PrSystemMem->pTICcxt.returnKeyType = UIReturnKeyDefault;
_PrSystemMem->pTICcxt.secureTextEntry = NO;
_PrSystemMem->pTICcxt.hidden = YES;
NSNotificationCenter* _center = [NSNotificationCenter defaultCenter];
[_center addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[_center addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
[_center addObserver:self selector:@selector(textFieldTextDidChange:) name:UITextFieldTextDidChangeNotification object:nil];
}
- (BLVoid)deinitKeyboard
{
NSNotificationCenter* _center = [NSNotificationCenter defaultCenter];
[_center removeObserver:self name:UIKeyboardWillShowNotification object:nil];
[_center removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}
- (BLVoid)setView:(UIView*)_View
{
[super setView:_View];
[_View addSubview:_PrSystemMem->pTICcxt];
}
- (BLVoid)keyboardWillShow:(NSNotification*)_Notification
{
CGRect _kbrect = [[_Notification userInfo][UIKeyboardFrameBeginUserInfoKey] CGRectValue];
_kbrect = [self.view convertRect:_kbrect fromView:nil];
[self setKeyboardHeight:(int)_kbrect.size.height];
}
- (BLVoid)keyboardWillHide:(NSNotification *)_Notification
{
[self setKeyboardHeight:0];
}
- (BLVoid)updateKeyboard
{
CGAffineTransform _t = self.view.transform;
CGPoint _offset = CGPointMake(0.0, 0.0);
CGRect _frame = self.view.window.screen.bounds;
if (_PrSystemMem->nKeyboardHeight)
{
int _rectbottom = 0;
int _keybottom = self.view.bounds.size.height - _PrSystemMem->nKeyboardHeight;
if (_keybottom < _rectbottom)
_offset.y = _keybottom - _rectbottom;
}
_t.tx = 0.0;
_t.ty = 0.0;
_offset = CGPointApplyAffineTransform(_offset, _t);
_frame.origin.x += _offset.x;
_frame.origin.y += _offset.y;
self.view.frame = _frame;
}
- (BLVoid)setKeyboardHeight:(int)_Height
{
_PrSystemMem->nKeyboardHeight = _Height;
[self updateKeyboard];
}
- (BOOL)textField:(UITextField*)_TextField shouldChangeCharactersInRange:(NSRange)_Range replacementString:(NSString*)_String
{
NSUInteger _len = _String.length;
if (_len == 0)
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_BACKSPACE, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_BACKSPACE, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
}
else
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_UNKNOWN, FALSE), BL_ET_KEY, [_String UTF8String], INVALID_GUID);
return NO;
}
- (BOOL)textFieldShouldReturn:(UITextField*)_TextField
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_RETURN, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_RETURN, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
[_PrSystemMem->pTICcxt resignFirstResponder];
return YES;
}
@end
@interface IOSDelegate : NSObject<UIApplicationDelegate>
+ (id)sharedAppDelegate;
+ (NSString*)getAppDelegateClassName;
- (void)hideLaunchScreen;
@end
@implementation IOSDelegate{
UIWindow* _launch;
}
+ (id)sharedAppDelegate
{
return [UIApplication sharedApplication].delegate;
}
+ (NSString*)getAppDelegateClassName
{
return @"IOSDelegate";
}
- (BLVoid)hideLaunchScreen
{
UIWindow* _window = _launch;
if (!_window || _window.hidden)
return;
_launch = nil;
[UIView animateWithDuration:0.2 animations:^
{
_window.alpha = 0.0;
} completion:^(BOOL _Finished) {
_window.hidden = YES;
//fixme
[_window removeFromSuperview];
}];
}
- (BLVoid)postFinishLaunch
{
[self performSelector:@selector(hideLaunchScreen) withObject:nil afterDelay:0.0];
[UIApplication sharedApplication].statusBarHidden = YES;
CGRect _frame = [[UIScreen mainScreen] bounds];
BLF32 _maxv = MAX_INTERNAL(_frame.size.width, _frame.size.height);
BLF32 _minv = MIN_INTERNAL(_frame.size.width, _frame.size.height);
if (_PrSystemMem->nOrientation == SCREEN_LANDSCAPE_INTERNAL)
{
_frame.size.width = _maxv;
_frame.size.height = _minv;
}
else
{
_frame.size.width = _minv;
_frame.size.height = _maxv;
}
_PrSystemMem->sBoostParam.bFullscreen = TRUE;
_PrSystemMem->sBoostParam.nScreenWidth = _frame.size.width * _PrSystemMem->nRetinaScale;
_PrSystemMem->sBoostParam.nScreenHeight = _frame.size.height * _PrSystemMem->nRetinaScale;
_PrSystemMem->pWindow = [[IOSWindow alloc] initWithFrame : _frame];
IOSController* _controller = [[IOSController alloc] initWithNil];
[_PrSystemMem->pWindow makeKeyAndVisible];
_PrSystemMem->pCtlView = [[IOSGLESView alloc] initWithFrame : _frame scale : _PrSystemMem->nRetinaScale];
_GpuIntervention(_PrSystemMem->pCtlView.layer, _PrSystemMem->sBoostParam.nScreenWidth, _PrSystemMem->sBoostParam.nScreenHeight, _PrSystemMem->nRetinaScale, !_PrSystemMem->sBoostParam.bProfiler);
[_controller.view removeFromSuperview];
[_controller setView:_PrSystemMem->pCtlView];
_PrSystemMem->pWindow.rootViewController = nil;
_PrSystemMem->pWindow.rootViewController = _controller;
[_PrSystemMem->pWindow layoutIfNeeded];
_AudioInit();
_UIInit(_PrSystemMem->sBoostParam.bProfiler);
_SpriteInit();
_GbSystemRunning = TRUE;
_PrSystemMem->pBeginFunc();
do {
_SystemStep();
} while (_GbSystemRunning);
_SystemDestroy();
}
- (BOOL)application:(UIApplication*)_App didFinishLaunchingWithOptions:(NSDictionary*)_Opt
{
_PrSystemMem->nRetinaScale = [[UIScreen mainScreen] scale];
UIViewController* _vc = nil;
NSString* _screenname = nil;
NSBundle* _bundle = [NSBundle mainBundle];
_screenname = [_bundle objectForInfoDictionaryKey:@"UILaunchStoryboardName"];
if (_screenname) {
@try {
UIStoryboard* _storyboard = [UIStoryboard storyboardWithName:_screenname bundle:_bundle];
_vc = [_storyboard instantiateInitialViewController];
}
@catch (NSException *exception) {
/* Do nothing (there's more code to execute below). */
}
}
if (_vc.view)
{
_launch = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
_launch.windowLevel = UIWindowLevelNormal + 1.0;
_launch.hidden = NO;
_launch.rootViewController = _vc;
}
[[NSFileManager defaultManager] changeCurrentDirectoryPath: [_bundle resourcePath]];
[self performSelector:@selector(postFinishLaunch) withObject:nil afterDelay:0.0];
return YES;
}
- (BLVoid)applicationDidBecomeActive:(UIApplication*)_App { _GbSystemRunning = 1; }
- (BLVoid)applicationDidEnterBackground:(UIApplication*)_App { _GbSystemRunning = 2; }
- (BLVoid)applicationWillTerminate:(UIApplication*)_App
{
blSysInvokeEvent(BL_ET_KEY, MAKEU32(BL_KC_EXIT, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
_GbSystemRunning = FALSE;
_SystemDestroy();
}
@end
BLVoid
_ShowWindow()
{
if (_PrSystemMem->sBoostParam.nScreenWidth > _PrSystemMem->sBoostParam.nScreenHeight)
_PrSystemMem->nOrientation = SCREEN_LANDSCAPE_INTERNAL;
else
_PrSystemMem->nOrientation = SCREEN_PORTRAIT_INTERNAL;
_PrSystemMem->pPool = [[NSAutoreleasePool alloc] init];
UIApplicationMain(0, nil, nil, [IOSDelegate getAppDelegateClassName]);
}
BLVoid
_PollMsg()
{
SInt32 _result;
do {
_result = CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0.000001, TRUE);
} while (_result == kCFRunLoopRunHandledSource);
}
BLVoid
_CloseWindow()
{
[_PrSystemMem->pCtlView release];
[_PrSystemMem->pTICcxt release];
[_PrSystemMem->pWindow release];
[_PrSystemMem->pPool release];
}
#elif defined(BL_PLATFORM_WEB)
EM_BOOL
_ContextProc(BLS32 _EventType, const BLVoid* _Reserved, BLVoid* _UserData)
{
switch (_EventType) {
case EMSCRIPTEN_EVENT_WEBGLCONTEXTLOST: _GbSystemRunning = 2; break;
case EMSCRIPTEN_EVENT_WEBGLCONTEXTRESTORED: _GbSystemRunning = 1; break;
default: break;
}
return TRUE;
}
EM_BOOL
_KeyProc(BLS32 _EventType, const EmscriptenKeyboardEvent* _KeyEvent, BLVoid* _UserData)
{
BLEnum _scancode = SCANCODE_INTERNAL[_KeyEvent->keyCode];
BLU32 _codepoint;
BLUtf8 _text[5];
switch (_EventType) {
case EMSCRIPTEN_EVENT_KEYDOWN:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, TRUE), BL_ET_KEY, NULL, INVALID_GUID);
break;
case EMSCRIPTEN_EVENT_KEYUP:
blSysInvokeEvent(BL_ET_KEY, MAKEU32(_scancode, FALSE), BL_ET_KEY, NULL, INVALID_GUID);
break;
default:
break;
}
return TRUE;
}
EM_BOOL
_TouchProc(BLS32 _EventType, const EmscriptenTouchEvent* _TouchEvent, BLVoid* _UserData)
{
for (BLS32 _i = 0; _i < _TouchEvent->numTouches; _i++)
{
const EmscriptenTouchPoint* _src = &_TouchEvent->touches[_i];
BLS32 _x = (BLS32)_src->targetX;
BLS32 _y = (BLS32)_src->targetY;
switch (_EventType)
{
case EMSCRIPTEN_EVENT_TOUCHSTART:
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), _i = 0 ? BL_ME_LDOWN : BL_ME_RDOWN , NULL, INVALID_GUID);
break;
case EMSCRIPTEN_EVENT_TOUCHEND:
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), _i = 0 ? BL_ME_LUP : BL_ME_RUP, NULL, INVALID_GUID);
break;
case EMSCRIPTEN_EVENT_TOUCHMOVE:
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_MOVE, NULL, INVALID_GUID);
break;
default:
break;
}
}
return TRUE;
}
EM_BOOL
_MouseProc(BLS32 _EventType, const EmscriptenMouseEvent* _MouseEvent, BLVoid* _UserData)
{
BLS32 _x = (BLS32)_MouseEvent->targetX;
BLS32 _y = (BLS32)_MouseEvent->targetY;
switch (_EventType)
{
case EMSCRIPTEN_EVENT_MOUSEDOWN:
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), _MouseEvent->button == 0 ? BL_ME_LDOWN : BL_ME_RDOWN, NULL, INVALID_GUID);
break;
case EMSCRIPTEN_EVENT_MOUSEUP:
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), _MouseEvent->button == 0 ? BL_ME_LUP : BL_ME_RUP, NULL, INVALID_GUID);
break;
case EMSCRIPTEN_EVENT_MOUSEMOVE:
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(_y, _x), BL_ME_MOVE, NULL, INVALID_GUID);
break;
case EMSCRIPTEN_EVENT_MOUSEENTER:
case EMSCRIPTEN_EVENT_MOUSELEAVE:
if (_UseCustomCursor())
EM_ASM({ document.querySelector("#canvas").cursor = "none"; });
else
EM_ASM({ document.querySelector("#canvas").cursor = "auto"; });
break;
default:
break;
}
return TRUE;
}
EM_BOOL
_ScrollProc(BLS32 _EventType, const EmscriptenWheelEvent* _WheelEvent, BLVoid* _UserData)
{
BLS16 _val = _WheelEvent->deltaY < 0 ? 1 : -1;
if (_val > 0)
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(1, _val), BL_ME_WHEEL, NULL, INVALID_GUID);
else
blSysInvokeEvent(BL_ET_MOUSE, MAKEU32(0, -_val), BL_ME_WHEEL, NULL, INVALID_GUID);
return TRUE;
}
EM_BOOL
_FullscreenProc(BLS32 _EventType, const BLVoid* _Reserved, BLVoid* _UserData)
{
BLS32 _Width, _Height;
emscripten_get_canvas_element_size(NULL, &_Width, &_Height);
_PrSystemMem->sBoostParam.nScreenWidth = _Width;
_PrSystemMem->sBoostParam.nScreenHeight = _Height;
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_RESOLUTION, 0, NULL, INVALID_GUID);
return TRUE;
}
BLVoid
_EnterFullscreen()
{
EmscriptenFullscreenStrategy _s;
memset(&_s, 0, sizeof(_s));
_s.scaleMode = EMSCRIPTEN_FULLSCREEN_SCALE_STRETCH;
_s.canvasResolutionScaleMode = EMSCRIPTEN_FULLSCREEN_CANVAS_SCALE_STDDEF;
_s.filteringMode = EMSCRIPTEN_FULLSCREEN_FILTERING_DEFAULT;
_s.canvasResizedCallback = _FullscreenProc;
emscripten_enter_soft_fullscreen(0, &_s);
}
BLVoid
_ExitFullscreen(BLU32 _Width, BLU32 _Height)
{
emscripten_exit_soft_fullscreen();
emscripten_set_canvas_element_size(NULL, _Width, _Height);
_PrSystemMem->sBoostParam.nScreenWidth = _Width;
_PrSystemMem->sBoostParam.nScreenHeight = _Height;
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_RESOLUTION, 0, NULL, INVALID_GUID);
}
BLVoid
_ShowWindow()
{
BLU32 _width = _PrSystemMem->sBoostParam.nScreenWidth;
BLU32 _height = _PrSystemMem->sBoostParam.nScreenHeight;
emscripten_set_canvas_element_size("#canvas", _width, _height);
_GpuIntervention(_width, _height, !_PrSystemMem->sBoostParam.bProfiler);
emscripten_set_mousedown_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _MouseProc);
emscripten_set_mouseup_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _MouseProc);
emscripten_set_mousemove_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _MouseProc);
emscripten_set_mouseenter_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _MouseProc);
emscripten_set_mouseleave_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _MouseProc);
emscripten_set_wheel_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _ScrollProc);
emscripten_set_keydown_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _KeyProc);
emscripten_set_keyup_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _KeyProc);
emscripten_set_keypress_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _KeyProc);
emscripten_set_touchstart_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _TouchProc);
emscripten_set_touchmove_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _TouchProc);
emscripten_set_touchend_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _TouchProc);
emscripten_set_touchcancel_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, TRUE, _TouchProc);
emscripten_set_webglcontextlost_callback("#canvas", 0, TRUE, _ContextProc);
emscripten_set_webglcontextrestored_callback("#canvas", 0, TRUE, _ContextProc);
if (_PrSystemMem->sBoostParam.bFullscreen)
_EnterFullscreen();
}
BLVoid
_PollMsg()
{
}
BLVoid
_CloseWindow()
{
_GpuAnitIntervention();
}
#endif
static BLVoid
_PollEvent()
{
#ifdef BL_PLATFORM_ANDROID
BLS32 _busy;
_busy = pthread_mutex_trylock(&_PrSystemMem->sMutex);
#endif
for (BLU32 _idx = 0; _idx < _PrSystemMem->nEventIdx; ++_idx)
{
switch (_PrSystemMem->pEvents[_idx].eType)
{
case BL_ET_NET:
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][0])
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](BL_ET_NET, _PrSystemMem->pEvents[_idx].uEvent.sNet.nID, _PrSystemMem->pEvents[_idx].uEvent.sNet.nLength, _PrSystemMem->pEvents[_idx].uEvent.sNet.pBuf, INVALID_GUID))
break;
++_fidx;
}
}
if (_PrSystemMem->pEvents[_idx].uEvent.sNet.pBuf)
free((BLVoid*)_PrSystemMem->pEvents[_idx].uEvent.sNet.pBuf);
} break;
case BL_ET_UI:
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][0])
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](BL_ET_UI, _PrSystemMem->pEvents[_idx].uEvent.sUI.nUParam, _PrSystemMem->pEvents[_idx].uEvent.sUI.nSParam, _PrSystemMem->pEvents[_idx].uEvent.sUI.pPParam, _PrSystemMem->pEvents[_idx].uEvent.sUI.nID))
break;
_fidx++;
}
}
} break;
case BL_ET_MOUSE:
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][0])
{
if (BL_ME_WHEEL == _PrSystemMem->pEvents[_idx].uEvent.sMouse.eEvent)
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](BL_ME_WHEEL, _PrSystemMem->pEvents[_idx].uEvent.sMouse.nWheel, _PrSystemMem->pEvents[_idx].uEvent.sMouse.eEvent, NULL, INVALID_GUID))
break;
_fidx++;
}
}
else
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](_PrSystemMem->pEvents[_idx].uEvent.sMouse.eEvent, MAKEU32(_PrSystemMem->pEvents[_idx].uEvent.sMouse.nY, _PrSystemMem->pEvents[_idx].uEvent.sMouse.nX), _PrSystemMem->pEvents[_idx].uEvent.sMouse.eEvent, NULL, INVALID_GUID))
break;
_fidx++;
}
}
}
} break;
case BL_ET_KEY:
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][0])
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](BL_ET_KEY, MAKEU32(_PrSystemMem->pEvents[_idx].uEvent.sKey.eCode, _PrSystemMem->pEvents[_idx].uEvent.sKey.bPressed), 0, _PrSystemMem->pEvents[_idx].uEvent.sKey.pString, INVALID_GUID))
break;
_fidx++;
}
}
if (_PrSystemMem->pEvents[_idx].uEvent.sKey.pString)
free((BLVoid*)_PrSystemMem->pEvents[_idx].uEvent.sKey.pString);
} break;
case BL_ET_SYSTEM:
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][0])
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](BL_ET_SYSTEM, _PrSystemMem->pEvents[_idx].uEvent.sSys.nUParam, _PrSystemMem->pEvents[_idx].uEvent.sSys.nSParam, _PrSystemMem->pEvents[_idx].uEvent.sSys.pPParam, INVALID_GUID))
break;
_fidx++;
}
}
if (_PrSystemMem->pEvents[_idx].uEvent.sSys.pPParam)
free((BLVoid*)_PrSystemMem->pEvents[_idx].uEvent.sSys.pPParam);
} break;
case BL_ET_SPRITE:
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][0])
{
BLU32 _fidx = 0;
while (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx])
{
if (_PrSystemMem->pSubscriber[_PrSystemMem->pEvents[_idx].eType][_fidx](BL_ET_SPRITE, _PrSystemMem->pEvents[_idx].uEvent.sSprite.nUParam, _PrSystemMem->pEvents[_idx].uEvent.sSprite.nSParam, NULL, _PrSystemMem->pEvents[_idx].uEvent.sSprite.nID))
break;
_fidx++;
}
}
} break;
default:break;
}
}
_PrSystemMem->nEventIdx = 0;
_PrSystemMem->nEventsSz = 0;
#ifdef BL_PLATFORM_ANDROID
if (!_busy)
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#endif
}
BLVoid
_SystemInit()
{
_UtilsInit();
#if defined(BL_PLATFORM_ANDROID)
_StreamIOInit(_PrSystemMem->pActivity->assetManager);
#else
_StreamIOInit(NULL);
#endif
_NetworkInit();
_ShowWindow();
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_LINUX) || defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_ANDROID) || defined(BL_PLATFORM_WEB)
_AudioInit();
_UIInit(_PrSystemMem->sBoostParam.bProfiler);
_SpriteInit();
_GbSystemRunning = TRUE;
_PrSystemMem->pBeginFunc();
#endif
_PrSystemMem->nSysTime = blSysTickCounts();
}
#ifdef EMSCRIPTEN
static EM_BOOL
_SystemStep(BLF64 _Time, BLVoid* _UserData)
#else
BLVoid
_SystemStep()
#endif
{
blFrameBufferClear(TRUE, TRUE, TRUE);
BLU32 _now = blSysTickCounts();
BLU32 _delta = _now - _PrSystemMem->nSysTime;
_PrSystemMem->nSysTime = _now;
for (BLU32 _idx = 0 ; _idx < 8; ++_idx)
{
if (_PrSystemMem->aTimers[_idx].nId != -1)
{
if (_PrSystemMem->nSysTime - _PrSystemMem->aTimers[_idx].nLastTime >= (BLU32)_PrSystemMem->aTimers[_idx].fElapse * 1000)
{
blSysInvokeEvent(BL_ET_SYSTEM, BL_SE_TIMER, _PrSystemMem->aTimers[_idx].nId, NULL, INVALID_GUID);
_PrSystemMem->aTimers[_idx].nLastTime = _PrSystemMem->nSysTime;
}
}
}
_PollMsg();
_PollEvent();
#if defined(BL_PLATFORM_ANDROID)
if (_PrSystemMem->bBackendState)
{
_GpuIntervention(_PrSystemMem->pWindow, _PrSystemMem->sBoostParam.nScreenWidth, _PrSystemMem->sBoostParam.nScreenHeight, !_PrSystemMem->sBoostParam.bProfiler, TRUE, _PrSystemMem->bAEPSupport);
_PrSystemMem->bBackendState = FALSE;
}
#endif
_UtilsStep(_delta);
_AudioStep(_delta);
_NetworkStep(_delta);
_UIStep(_delta, TRUE);
_SpriteStep(_delta, FALSE);
_UIStep(_delta, FALSE);
_SpriteStep(_delta, TRUE);
_StreamIOStep(_delta);
_PrSystemMem->pStepFunc(_delta);
if (_GbSystemRunning == 1)
_GpuSwapBuffer();
#ifdef EMSCRIPTEN
return TRUE;
#endif
}
BLVoid
_SystemDestroy()
{
if (_GbTVMode)
_GbTVMode = FALSE;
BLAnsi _tmp[256] = { 0 };
sprintf(_tmp, "%d", _PrSystemMem->sBoostParam.nScreenWidth);
blSysEnvVariable((const BLUtf8*)"SCREEN_WIDTH", (BLUtf8*)_tmp, TRUE);
memset(_tmp, 0, sizeof(_tmp));
sprintf(_tmp, "%d", _PrSystemMem->sBoostParam.nScreenHeight);
blSysEnvVariable((const BLUtf8*)"SCREEN_HEIGHT", (BLUtf8*)_tmp, TRUE);
memset(_tmp, 0, sizeof(_tmp));
if (_PrSystemMem->sBoostParam.bFullscreen)
strcpy(_tmp, "true");
else
strcpy(_tmp, "false");
blSysEnvVariable((const BLUtf8*)"FULLSCREEN", (BLUtf8*)_tmp, TRUE);
memset(_tmp, 0, sizeof(_tmp));
sprintf(_tmp, "%d", _PrSystemMem->sBoostParam.eQuality);
blSysEnvVariable((const BLUtf8*)"QUALITY", (BLUtf8*)_tmp, TRUE);
_PrSystemMem->pEndFunc();
_NetworkDestroy();
_SpriteDestroy();
_UIDestroy();
_AudioDestroy();
_StreamIODestroy();
_CloseWindow();
_UtilsDestroy();
if (_PrSystemMem->pEvents)
free(_PrSystemMem->pEvents);
#if defined(BL_PLATFORM_UWP)
delete _PrSystemMem;
_PrSystemMem = NULL;
#else
free(_PrSystemMem);
_PrSystemMem = NULL;
#endif
}
BLEnum
blSysPlatformId()
{
#if defined(BL_PLATFORM_WIN32)
return BL_PLATFORM_WIN32;
#elif defined(BL_PLATFORM_UWP)
return BL_PLATFORM_UWP;
#elif defined(BL_PLATFORM_LINUX)
return BL_PLATFORM_LINUX;
#elif defined(BL_PLATFORM_ANDROID)
return BL_PLATFORM_ANDROID;
#elif defined(BL_PLATFORM_OSX)
return BL_PLATFORM_OSX;
#elif defined(BL_PLATFORM_IOS)
return BL_PLATFORM_IOS;
#elif defined(BL_PLATFORM_WEB)
return BL_PLATFORM_WEB;
#else
return -1;
#endif
}
BLU32
blSysCpuCores()
{
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
SYSTEM_INFO _systemInfo;
GetSystemInfo(&_systemInfo);
return _systemInfo.dwNumberOfProcessors;
#elif defined(BL_PLATFORM_LINUX) || defined(BL_PLATFORM_ANDROID)
BLU32 _ncpu;
_ncpu = sysconf(_SC_NPROCESSORS_ONLN);
return _ncpu;
#elif defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_IOS)
size_t _len;
BLU32 _ncpu;
_len = sizeof(_ncpu);
sysctlbyname("hw.ncpu", &_ncpu, &_len, NULL, 0);
return _ncpu;
#elif defined(BL_PLATFORM_WEB)
return 1;
#else
return 1;
#endif
}
BLU32
blSysTickCounts()
{
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
static LARGE_INTEGER _litime = { 0 };
if (_litime.QuadPart == 0)
QueryPerformanceFrequency(&_litime);
LARGE_INTEGER _lifreq;
QueryPerformanceCounter(&_lifreq);
return (BLU32)((_lifreq.QuadPart) * 1000 / _litime.QuadPart);
#elif defined(BL_PLATFORM_LINUX)
struct timeval _val;
gettimeofday(&_val, NULL);
return (BLU32)(_val.tv_sec * 1000 + _val.tv_usec / 1000.0f);
#elif defined(BL_PLATFORM_ANDROID)
struct timeval _val;
gettimeofday(&_val, NULL);
return (BLU32)(_val.tv_sec * 1000 + _val.tv_usec / 1000.0f);
#elif defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_IOS)
static mach_timebase_info_data_t _frequency = { 0 , 0 };
if (_frequency.denom == 0)
mach_timebase_info(&_frequency);
BLU64 _now = mach_absolute_time();
return (BLU32)((((_now) * _frequency.numer) / _frequency.denom) / 1000000);
#elif defined(BL_PLATFORM_WEB)
struct timeval _val;
gettimeofday(&_val, NULL);
return (BLU32)(_val.tv_sec * 1000 + _val.tv_usec / 1000.0f);
#endif
return 0;
}
BLVoid
blSysTickDelay(IN BLU32 _Ms)
{
if (_Ms == 0)
return;
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
Sleep(_Ms);
#elif defined(BL_PLATFORM_LINUX) || defined(BL_PLATFORM_ANDROID)
struct timespec _res;
_res.tv_sec = _Ms / 1000;
_res.tv_nsec = (_Ms * 1000000) % 1000000000;
clock_nanosleep(CLOCK_MONOTONIC, 0, &_res, NULL);
#elif defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_IOS)
static BLF64 _timebase = -1.0;
if (_timebase < 0)
{
mach_timebase_info_data_t _frequency = { 0 , 0 };
mach_timebase_info(&_frequency);
_timebase = (BLF64)_frequency.numer / (BLF64)_frequency.denom * 1e-9;
}
mach_wait_until(_Ms * 1000 / 1e6 / _timebase + mach_absolute_time());
#elif defined(BL_PLATFORM_WEB)
#endif
}
const BLAnsi*
blSysUserFolderDir()
{
#if defined(BL_PLATFORM_WIN32)
if (!_PrSystemMem->aUserDir[0])
{
BLAnsi _fullpath[260 + 1];
GetModuleFileNameA(NULL, _fullpath, 260 + 1);
BLAnsi* _basename = strrchr(_fullpath, '/');
if (_basename)
{
BLAnsi _appdatapath[260 + 1];
if (SUCCEEDED(SHGetFolderPathA(NULL, CSIDL_LOCAL_APPDATA, NULL, SHGFP_TYPE_CURRENT, _appdatapath)))
{
memset(_PrSystemMem->aUserDir, 0, sizeof(_PrSystemMem->aUserDir));
strcpy_s(_PrSystemMem->aUserDir, 260, _appdatapath);
strcat_s(_PrSystemMem->aUserDir, 260, _basename);
for (BLU32 _i = (BLU32)strlen(_PrSystemMem->aUserDir); _i >= 0; --_i)
{
if (_PrSystemMem->aUserDir[_i] != '.')
_PrSystemMem->aUserDir[_i] = 0;
else
{
_PrSystemMem->aUserDir[_i] = 0;
break;
}
}
strcat_s(_PrSystemMem->aUserDir, 260, "/");
SHCreateDirectoryExA(NULL, _PrSystemMem->aUserDir, NULL);
}
}
BLAnsi _bsfolder[260] = { 0 };
strcpy_s(_bsfolder, 260, _PrSystemMem->aUserDir);
strcat_s(_bsfolder, 260, "bshaders");
SHCreateDirectoryExA(NULL, _bsfolder, NULL);
}
return _PrSystemMem->aUserDir;
#elif defined(BL_PLATFORM_UWP)
if (!_PrSystemMem->aUserDir[0])
{
auto _localfolderpath = Windows::Storage::ApplicationData::Current->LocalFolder->Path;
Platform::String^ _path = _localfolderpath;
const wchar_t* _wstr = _path->Data();
BLU32 _wsz = (BLU32)wcslen(_wstr);
BLU32 _y;
for (_y = 0; _y < _wsz; ++_y)
_PrSystemMem->aUserDir[_y] = (BLAnsi)_wstr[_y];
strcat(_PrSystemMem->aUserDir, "/");
Windows::Storage::ApplicationData::Current->LocalFolder->CreateFolderAsync(L"bshaders");
}
return _PrSystemMem->aUserDir;
#elif defined(BL_PLATFORM_LINUX)
if (!_PrSystemMem->aUserDir[0])
{
const BLAnsi* _xdgpath = getenv("XDG_DATA_HOME");
if (!_xdgpath)
{
strcpy(_PrSystemMem->aUserDir, getenv("HOME"));
strcat(_PrSystemMem->aUserDir, "/.local/share/");
}
else
{
strcpy(_PrSystemMem->aUserDir, _xdgpath);
strcat(_PrSystemMem->aUserDir, "/");
}
strcat(_PrSystemMem->aUserDir, (const BLAnsi*)_PrSystemMem->sBoostParam.pAppName);
mkdir(_PrSystemMem->aUserDir, 0755);
strcat(_PrSystemMem->aUserDir, "/");
BLAnsi _bsfolder[260] = { 0 };
strcpy(_bsfolder, _PrSystemMem->aUserDir);
strcat(_bsfolder, "bshaders");
mkdir(_bsfolder, 0755);
}
return _PrSystemMem->aUserDir;
#elif defined(BL_PLATFORM_ANDROID)
if (!_PrSystemMem->aUserDir[0])
{
strcpy(_PrSystemMem->aUserDir, _PrSystemMem->pActivity->externalDataPath);
mkdir(_PrSystemMem->aUserDir, 0755);
strcat(_PrSystemMem->aUserDir, "/");
BLAnsi _bsfolder[260] = { 0 };
strcpy(_bsfolder, _PrSystemMem->aUserDir);
strcat(_bsfolder, "bshaders");
mkdir(_bsfolder, 0755);
}
return _PrSystemMem->aUserDir;
#elif defined(BL_PLATFORM_OSX)
if (!_PrSystemMem->aUserDir[0])
{
NSArray* _paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
NSString* _directory = [_paths objectAtIndex : 0];
const BLAnsi* _strtmp = [_directory UTF8String];
strcpy(_PrSystemMem->aUserDir, _strtmp);
strcat(_PrSystemMem->aUserDir, "/");
strcat(_PrSystemMem->aUserDir, (const BLAnsi*)_PrSystemMem->sBoostParam.pAppName);
mkdir(_PrSystemMem->aUserDir, 0755);
strcat(_PrSystemMem->aUserDir, "/");
BLAnsi _bsfolder[260] = { 0 };
strcpy(_bsfolder, _PrSystemMem->aUserDir);
strcat(_bsfolder, "bshaders");
mkdir(_bsfolder, 0755);
}
return _PrSystemMem->aUserDir;
#elif defined(BL_PLATFORM_IOS)
if (!_PrSystemMem->aUserDir[0])
{
NSArray* _paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* _directory = [_paths objectAtIndex : 0];
const BLAnsi* _strtmp = [_directory UTF8String];
strcpy(_PrSystemMem->aUserDir, _strtmp);
strcat(_PrSystemMem->aUserDir, "/");
strcat(_PrSystemMem->aUserDir, (const BLAnsi*)_PrSystemMem->sBoostParam.pAppName);
mkdir(_PrSystemMem->aUserDir, 0755);
strcat(_PrSystemMem->aUserDir, "/");
BLAnsi _bsfolder[260] = { 0 };
strcpy(_bsfolder, _PrSystemMem->aUserDir);
strcat(_bsfolder, "bshaders");
mkdir(_bsfolder, 0755);
}
return _PrSystemMem->aUserDir;
#elif defined(BL_PLATFORM_WEB)
if (!_PrSystemMem->aUserDir[0])
{
strcpy(_PrSystemMem->aUserDir, "/remote/");
}
return _PrSystemMem->aUserDir;
#endif
}
const BLAnsi*
blSysWorkingDir()
{
#if defined(BL_PLATFORM_WIN32)
if (!_PrSystemMem->aWorkDir[0])
{
DWORD(WINAPI* _modulemid)(HANDLE, HMODULE, LPWSTR, DWORD);
DWORD _buflen = 128;
WCHAR* _path = NULL;
HMODULE _psapi = LoadLibraryW(L"psapi.dll");
DWORD _len = 0;
INT _idx;
if (!_psapi)
return NULL;
_modulemid = (DWORD(WINAPI*)(HANDLE, HMODULE, LPWSTR, DWORD))GetProcAddress(_psapi, "GetModuleFileNameExW");
if (!_modulemid)
{
FreeLibrary(_psapi);
return NULL;
}
while (TRUE)
{
BLVoid* _ptr = realloc(_path, _buflen * sizeof(WCHAR));
if (!_ptr)
{
free(_path);
FreeLibrary(_psapi);
return NULL;
}
_path = (WCHAR*)_ptr;
_len = _modulemid(GetCurrentProcess(), NULL, _path, _buflen);
if (_len != _buflen)
break;
_buflen *= 2;
}
FreeLibrary(_psapi);
if (_len == 0)
return NULL;
for (_idx = _len - 1; _idx > 0; _idx--)
{
if (_path[_idx] == '/' || _path[_idx] == '\\')
break;
}
assert(_idx > 0);
_path[_idx + 1] = '\0';
for (BLS32 _i = 0; _i <= _idx; ++_i)
{
if (_path[_i] == '\\')
_path[_i] = '/';
}
const BLAnsi* _tmp = (const BLAnsi*)blGenUtf8Str((const BLUtf16*)_path);
strcpy_s(_PrSystemMem->aWorkDir, 260, _tmp);
blDeleteUtf8Str((BLUtf8*)_tmp);
free(_path);
}
#elif defined(BL_PLATFORM_UWP)
if (!_PrSystemMem->aWorkDir[0])
{
Windows::ApplicationModel::Package^ _package = Windows::ApplicationModel::Package::Current;
Platform::String^ _path = _package->InstalledLocation->Path;
const WCHAR* _wstr = _path->Data();
BLU32 _wsz = (BLU32)wcslen(_wstr);
BLU32 _y;
for (_y = 0; _y < _wsz; ++_y)
_PrSystemMem->aWorkDir[_y] = (BLAnsi)_wstr[_y];
strcat(_PrSystemMem->aWorkDir, "/Assets/");
}
#elif defined(BL_PLATFORM_LINUX)
if (!_PrSystemMem->aWorkDir[0])
{
BLAnsi _fullpath[256] = { 0 };
size_t _length = readlink("/proc/self/exe", _fullpath, sizeof(_fullpath) - 1);
_fullpath[_length] = 0;
for (BLS32 _i = strlen(_fullpath); _i >= 0; --_i)
{
if (_fullpath[_i] != '/')
_fullpath[_i] = 0;
else
break;
}
strcpy(_PrSystemMem->aWorkDir, _fullpath);
}
#elif defined(BL_PLATFORM_ANDROID)
#elif defined(BL_PLATFORM_OSX)
if (!_PrSystemMem->aWorkDir[0])
{
NSString* _path = [[NSBundle mainBundle] resourcePath];
const BLAnsi* _strtmp = [_path UTF8String];
strcpy(_PrSystemMem->aWorkDir, _strtmp);
strcat(_PrSystemMem->aWorkDir, "/");
}
#elif defined(BL_PLATFORM_IOS)
if (!_PrSystemMem->aWorkDir[0])
{
NSString* _path = [[NSBundle mainBundle] resourcePath];
const BLAnsi* _strtmp = [_path UTF8String];
strcpy(_PrSystemMem->aWorkDir, _strtmp);
strcat(_PrSystemMem->aWorkDir, "/");
}
#elif defined(BL_PLATFORM_WEB)
if (!_PrSystemMem->aWorkDir[0])
{
_PrSystemMem->aWorkDir[0] = '/';
}
#endif
return _PrSystemMem->aWorkDir;
}
BLBool
blSysClipboardCopy(IN BLUtf8* _Text)
{
if (!_Text)
return FALSE;
BLU32 _length = blUtf8Length(_Text);
if (_length + 1 > 1024)
return FALSE;
#if defined(BL_PLATFORM_WIN32)
if (OpenClipboard(_PrSystemMem->nHwnd))
{
BLU32 _idx;
HANDLE _hmem;
WCHAR* _wtext;
BLS32 _len = MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_Text, -1, NULL, 0);
if ((1 + _len) * sizeof(WCHAR) > 1024)
{
CloseClipboard();
return FALSE;
}
memset(_PrSystemMem->aClipboard, 0, 1024);
::MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_Text, -1, (LPWSTR)_PrSystemMem->aClipboard, _len);
_wtext = (WCHAR*)_PrSystemMem->aClipboard;
_hmem = GlobalAlloc(GMEM_MOVEABLE, (_len + 1) * sizeof(WCHAR));
if (_hmem)
{
WCHAR* _dst = (WCHAR*)GlobalLock(_hmem);
if (_dst)
{
for (_idx = 0; _wtext[_idx]; ++_idx)
{
if (_wtext[_idx] == '\n' && (_idx == 0 || _wtext[_idx - 1] != '\r'))
*_dst++ = '\r';
*_dst++ = _wtext[_idx];
}
*_dst = 0;
GlobalUnlock(_hmem);
}
EmptyClipboard();
if (!SetClipboardData(CF_UNICODETEXT, _hmem))
{
CloseClipboard();
return FALSE;
}
}
CloseClipboard();
}
return TRUE;
#elif defined(BL_PLATFORM_UWP)
WCHAR* _wtext;
BLS32 _len = MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_Text, -1, NULL, 0);
if ((1 + _len) * sizeof(WCHAR) > 1024)
return FALSE;
memset(_PrSystemMem->aClipboard, 0, 1024);
MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_Text, -1, (LPWSTR)_PrSystemMem->aClipboard, _len);
_wtext = (WCHAR*)_PrSystemMem->aClipboard;
Windows::ApplicationModel::DataTransfer::DataPackage^ _datapackage = ref new Windows::ApplicationModel::DataTransfer::DataPackage();
_datapackage->SetText(ref new Platform::String(_wtext));
Windows::ApplicationModel::DataTransfer::Clipboard::SetContent(_datapackage);
return TRUE;
#elif defined(BL_PLATFORM_OSX)
@autoreleasepool
{
NSPasteboard* _pasteboard;
NSString* _format;
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_5)
_format = NSPasteboardTypeString;
else
_format = NSStringPboardType;
_pasteboard = [NSPasteboard generalPasteboard];
[_pasteboard declareTypes : [NSArray arrayWithObject : _format] owner : nil];
[_pasteboard setString : [NSString stringWithUTF8String : (const BLAnsi*)_Text] forType : _format];
}
return TRUE;
#elif defined(BL_PLATFORM_WEB)
memset(_PrSystemMem->aClipboard, 0, 1024);
memcpy(_PrSystemMem->aClipboard, _Text, blUtf8Length(_Text));
return TRUE;
#else
memset(_PrSystemMem->aClipboard, 0, 1024);
memcpy(_PrSystemMem->aClipboard, _Text, blUtf8Length(_Text));
return TRUE;
#endif
}
const BLUtf8*
blSysClipboardPaste()
{
#if defined(BL_PLATFORM_WIN32)
memset(_PrSystemMem->aClipboard, 0, 1024);
if (IsClipboardFormatAvailable(CF_UNICODETEXT) && OpenClipboard(_PrSystemMem->nHwnd))
{
HANDLE _hmem;
WCHAR* _wstr;
_hmem = GetClipboardData(CF_UNICODETEXT);
if (_hmem)
{
_wstr = (WCHAR*)GlobalLock(_hmem);
WideCharToMultiByte(CP_UTF8, 0, _wstr, -1, (CHAR*)_PrSystemMem->aClipboard, 1024, NULL, NULL);
GlobalUnlock(_hmem);
}
else
{
CloseClipboard();
return NULL;
}
CloseClipboard();
}
#elif defined(BL_PLATFORM_UWP)
Windows::ApplicationModel::DataTransfer::DataPackageView^ _con = Windows::ApplicationModel::DataTransfer::Clipboard::GetContent();
if (_con->Contains(Windows::ApplicationModel::DataTransfer::StandardDataFormats::Text))
{
Platform::String^ _str;
auto _task = _con->GetTextAsync();
Platform::Exception^ _exception = nullptr;
HANDLE _handle = CreateEventEx(NULL, NULL, 0, EVENT_ALL_ACCESS);
_task->Completed = ref new Windows::Foundation::AsyncOperationCompletedHandler<Platform::String^>([&]
(Windows::Foundation::IAsyncOperation<Platform::String^>^ _AsyncInfo, Windows::Foundation::AsyncStatus _AsyncStatus)
{
try
{
_str = _AsyncInfo->GetResults();
}
catch (Platform::Exception^ _E) { _exception = _E; }
SetEvent(_handle);
});
WaitForSingleObjectEx(_handle, INFINITE, FALSE);
if (_exception)
return NULL;
memset(_PrSystemMem->aClipboard, 0, 1024);
WideCharToMultiByte(CP_UTF8, 0, _str->Data(), -1, (CHAR*)_PrSystemMem->aClipboard, 1024, NULL, NULL);
}
else
return NULL;
#elif defined(BL_PLATFORM_OSX)
memset(_PrSystemMem->aClipboard, 0, 1024);
@autoreleasepool
{
NSPasteboard* _pasteboard;
NSString* _format;
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_5)
_format = NSPasteboardTypeString;
else
_format = NSStringPboardType;
NSString* _available;
_pasteboard = [NSPasteboard generalPasteboard];
_available = [_pasteboard availableTypeFromArray: [NSArray arrayWithObject:_format]];
if ([_available isEqualToString:_format])
{
NSString* _string;
_string = [_pasteboard stringForType:_format];
if (_string != nil)
memcpy(_PrSystemMem->aClipboard, [_string UTF8String], strlen([_string UTF8String]));
}
}
#elif defined(BL_PLATFORM_WEB)
return _PrSystemMem->aClipboard;
#endif
return _PrSystemMem->aClipboard;
}
BLBool
blSysPeekEvent(IN BLBool _LClick, IN BLEnum _Key)
{
BLBool _triggered = FALSE;
_PollMsg();
#ifdef BL_PLATFORM_ANDROID
BLS32 _busy;
_busy = pthread_mutex_trylock(&_PrSystemMem->sMutex);
#endif
for (BLU32 _idx = 0; _idx < _PrSystemMem->nEventIdx; ++_idx)
{
switch (_PrSystemMem->pEvents[_idx].eType)
{
case BL_ET_NET:
{
if (_PrSystemMem->pEvents[_idx].uEvent.sNet.pBuf)
free((BLVoid*)_PrSystemMem->pEvents[_idx].uEvent.sNet.pBuf);
} break;
case BL_ET_MOUSE:
{
if (BL_ME_LDOWN == _PrSystemMem->pEvents[_idx].uEvent.sMouse.eEvent)
_triggered = _LClick;
} break;
case BL_ET_KEY:
{
if (_PrSystemMem->pEvents[_idx].uEvent.sKey.eCode == _Key)
_triggered = TRUE;
if (_PrSystemMem->pEvents[_idx].uEvent.sKey.pString)
free((BLVoid*)_PrSystemMem->pEvents[_idx].uEvent.sKey.pString);
} break;
default:break;
}
}
_PrSystemMem->nEventIdx = 0;
_PrSystemMem->nEventsSz = 0;
#ifdef BL_PLATFORM_ANDROID
if (!_busy)
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#endif
return _triggered;
}
BLBool
blSysEnvVariable(IN BLUtf8* _Section, INOUT BLUtf8 _Value[256], IN BLBool _Set)
{
BLAnsi _path[260] = { 0 };
#if defined(BL_PLATFORM_WEB)
if (_Set)
{
EM_ASM_ARGS({ var _key = UTF8ToString($0); var _value = UTF8ToString($1); localStorage.setItem(_key, _value); }, (const BLAnsi*)_Section, (const BLAnsi*)_Value);
}
else
{
BLAnsi* _ret = (BLAnsi*)EM_ASM_INT({
var _key = UTF8ToString($0);
return localStorage.getItem(_key);
}, (const BLAnsi*)_Section);
memset(_Value, 0, 256);
strcpy(_Value, _ret);
}
#elif defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
HANDLE _fp;
WIN32_FILE_ATTRIBUTE_DATA _wfad;
strcpy_s(_path, 260, blSysUserFolderDir());
strcat_s(_path, 260, "EnvStringOptions");
BLBool _fileexist = GetFileAttributesExA(_path, GetFileExInfoStandard, &_wfad) ? TRUE : FALSE;
BLDictionary* _tmpdic = NULL;
BLUtf8* _tmpstr = NULL;
BLU32 _vallen = blUtf8Length(_Value);
BLU32 _id = blHashString(_Section);
if (!_Set && !_fileexist)
return FALSE;
else if (_Set && !_fileexist)
{
#ifdef WINAPI_FAMILY
WCHAR _wfilename[260] = { 0 };
MultiByteToWideChar(CP_UTF8, 0, _path, -1, _wfilename, sizeof(_wfilename));
_fp = CreateFile2(_wfilename, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, CREATE_ALWAYS, NULL);
#else
_fp = CreateFileA(_path, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
#endif
_tmpdic = blGenDict(FALSE);
}
else
{
#ifdef WINAPI_FAMILY
WCHAR _wfilename[260] = { 0 };
MultiByteToWideChar(CP_UTF8, 0, _path, -1, _wfilename, sizeof(_wfilename));
_fp = CreateFile2(_wfilename, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, OPEN_EXISTING, NULL);
#else
_fp = CreateFileA(_path, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
#endif
LARGE_INTEGER _li;
GetFileSizeEx(_fp, &_li);
if (_li.LowPart != 0)
{
_li.LowPart = 0;
_li.HighPart = 0;
SetFilePointerEx(_fp, _li, NULL, FILE_BEGIN);
_tmpdic = blGenDict(FALSE);
do
{
BLU32 _sid, _strsz;
if (!ReadFile(_fp, &_sid, sizeof(BLU32), NULL, NULL))
break;
if (_sid == 0xDEAD)
break;
if (!ReadFile(_fp, &_strsz, sizeof(BLU32), NULL, NULL))
break;
_tmpstr = (BLUtf8*)malloc(_strsz + 1);
if (!ReadFile(_fp, _tmpstr, sizeof(BLUtf8) * _strsz, NULL, NULL))
{
free(_tmpstr);
break;
}
_tmpstr[_strsz] = 0;
blDictInsert(_tmpdic, _sid, _tmpstr);
} while (1);
}
else
_tmpdic = blGenDict(FALSE);
}
CloseHandle(_fp);
if (!_Set)
{
memset(_Value, 0, sizeof(BLUtf8) * 256);
BLUtf8* _str = (BLUtf8*)blDictElement(_tmpdic, _id);
if (_str)
memcpy(_Value, _str, strlen((const BLAnsi*)_str));
else
{
FOREACH_DICT(BLUtf8*, _iter, _tmpdic)
{
free(_iter);
}
blDeleteDict(_tmpdic);
return FALSE;
}
}
else
{
BLUtf8* _str = (BLUtf8*)blDictElement(_tmpdic, _id);
BLU32 _sz;
if (_str)
{
free(_str);
blDictErase(_tmpdic, _id);
_tmpstr = (BLUtf8*)malloc(_vallen + 1);
memcpy(_tmpstr, _Value, _vallen);
_tmpstr[_vallen] = 0;
blDictInsert(_tmpdic, _id, _tmpstr);
}
else
{
_tmpstr = (BLUtf8*)malloc(_vallen + 1);
memcpy(_tmpstr, _Value, _vallen);
_tmpstr[_vallen] = 0;
blDictInsert(_tmpdic, _id, _tmpstr);
}
#ifdef WINAPI_FAMILY
WCHAR _wfilename[260] = { 0 };
MultiByteToWideChar(CP_UTF8, 0, _path, -1, _wfilename, sizeof(_wfilename));
_fp = CreateFile2(_wfilename, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, CREATE_ALWAYS, NULL);
#else
_fp = CreateFileA(_path, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
#endif
FOREACH_DICT(BLUtf8*, _iter, _tmpdic)
{
WriteFile(_fp, &_iteratorkey, sizeof(BLU32), NULL, NULL);
_sz = (BLU32)strlen((const BLAnsi*)_iter);
WriteFile(_fp, &_sz, sizeof(BLU32), NULL, NULL);
WriteFile(_fp, _iter, _sz, NULL, NULL);
}
_sz = 0xDEAD;
WriteFile(_fp, &_sz, sizeof(BLU32), NULL, NULL);
CloseHandle(_fp);
}
FOREACH_DICT(BLUtf8*, _iter, _tmpdic)
{
free(_iter);
}
blDeleteDict(_tmpdic);
#else
FILE* _fp;
strcpy(_path, blSysUserFolderDir());
strcat(_path, "EnvStringOptions");
BLBool _fileexist = (access(_path, 0) != -1) ? TRUE : FALSE;
BLDictionary* _tmpdic = NULL;
BLUtf8* _tmpstr = NULL;
BLU32 _vallen = blUtf8Length(_Value);
BLU32 _id = blHashString(_Section);
if (!_Set && !_fileexist)
return FALSE;
else if (_Set && !_fileexist)
{
_fp = fopen(_path, "wb");
_tmpdic = blGenDict(FALSE);
}
else
{
_fp = fopen(_path, "rb");
fseek(_fp, 0, SEEK_END);
if (ftell(_fp) != 0)
{
fseek(_fp, 0, SEEK_SET);
_tmpdic = blGenDict(FALSE);
do
{
BLU32 _strsz, _sid;
if (!fread(&_sid, sizeof(BLU32), 1, _fp))
break;
if (_sid == 0xDEAD)
break;
if (!fread(&_strsz, sizeof(BLU32), 1, _fp))
break;
_tmpstr = (BLUtf8*)malloc(_strsz + 1);
if (!fread(_tmpstr, sizeof(BLUtf8), _strsz, _fp))
{
free(_tmpstr);
break;
}
_tmpstr[_strsz] = 0;
blDictInsert(_tmpdic, _sid, _tmpstr);
} while (1);
}
else
_tmpdic = blGenDict(FALSE);
}
fclose(_fp);
if (!_Set)
{
memset(_Value, 0, sizeof(BLUtf8) * 256);
BLUtf8* _str = (BLUtf8*)blDictElement(_tmpdic, _id);
if (_str)
memcpy(_Value, _str, strlen((const BLAnsi*)_str));
else
{
FOREACH_DICT(BLUtf8*, _iter, _tmpdic)
{
free(_iter);
}
blDeleteDict(_tmpdic);
return FALSE;
}
}
else
{
BLUtf8* _str = (BLUtf8*)blDictElement(_tmpdic, _id);
BLU32 _sz;
if (_str)
{
free(_str);
blDictErase(_tmpdic, _id);
_tmpstr = (BLUtf8*)malloc(_vallen + 1);
memcpy(_tmpstr, _Value, _vallen);
_tmpstr[_vallen] = 0;
blDictInsert(_tmpdic, _id, _tmpstr);
}
else
{
_tmpstr = (BLUtf8*)malloc(_vallen + 1);
memcpy(_tmpstr, _Value, _vallen);
_tmpstr[_vallen] = 0;
blDictInsert(_tmpdic, _id, _tmpstr);
}
_fp = fopen(_path, "wb");
FOREACH_DICT(BLUtf8*, _iter, _tmpdic)
{
fwrite(&_iteratorkey, sizeof(BLU32), 1, _fp);
_sz = (BLU32)strlen((const BLAnsi*)_iter);
fwrite(&_sz, sizeof(BLU32), 1, _fp);
fwrite(_iter, sizeof(BLUtf8), _sz, _fp);
}
_sz = 0xDEAD;
fwrite(&_sz, sizeof(BLU32), 1, _fp);
fclose(_fp);
}
FOREACH_DICT(BLUtf8*, _iter, _tmpdic)
{
free(_iter);
}
blDeleteDict(_tmpdic);
#endif
return TRUE;
}
BLVoid
blSysOpenURL(IN BLUtf8* _Url)
{
BLUtf8* _absurl;
BLBool _malloc = FALSE;
if (strncmp((const BLAnsi*)_Url, "http://", 7) == 0)
_absurl = (BLUtf8*)_Url;
else
{
_malloc = TRUE;
_absurl = (BLUtf8*)malloc(strlen((const BLAnsi*)_Url) + 8);
memset(_absurl, 0, strlen((const BLAnsi*)_Url) + 8);
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
sprintf_s((BLAnsi*)_absurl, strlen((const BLAnsi*)_Url) + 8, "http://%s", _Url);
#else
sprintf((BLAnsi*)_absurl, "http://%s", _Url);
#endif
}
#if defined(BL_PLATFORM_WIN32)
WCHAR _wurl[260] = { 0 };
BLS32 _len = MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_absurl, -1, NULL, 0);
::MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_absurl, -1, _wurl, _len);
ShellExecuteW(NULL, L"open", _wurl, NULL, NULL, SW_SHOWNORMAL);
#elif defined(BL_PLATFORM_UWP)
WCHAR _wurl[260] = { 0 };
BLS32 _len = MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_absurl, -1, NULL, 0);
MultiByteToWideChar(CP_UTF8, 0, (LPCCH)_absurl, -1, _wurl, _len);
Windows::Foundation::Uri^ _uri = ref new Windows::Foundation::Uri(ref new Platform::String(_wurl));
Windows::System::Launcher::LaunchUriAsync(_uri);
#elif defined(BL_PLATFORM_LINUX)
BLAnsi _cmd[512] = { 0 };
strcpy(_cmd, "xdg-open ");
strcat(_cmd, (const BLAnsi*)_absurl);
system(_cmd);
#elif defined(BL_PLATFORM_ANDROID)
JNIEnv* _env = _PrSystemMem->pActivity->env;
pthread_mutex_lock(&_PrSystemMem->sMutex);
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
jclass _activitycls = _env->FindClass("android/app/Activity");
jmethodID _startmid = _env->GetMethodID(_activitycls, "startActivity", "(Landroid/content/Intent;)V");
jclass _intentcls = _env->FindClass("android/content/Intent");
jstring _actionpar = _env->NewStringUTF("android.intent.action.VIEW");
jmethodID _intentctormid = _env->GetMethodID(_intentcls, "<init>", "(Ljava/lang/String;)V");
jobject _intentobject = _env->NewObject(_intentcls, _intentctormid, _actionpar);
_env->DeleteLocalRef(_actionpar);
jmethodID _setmid = _env->GetMethodID(_intentcls, "setData", "(Landroid/net/Uri;)Landroid/content/Intent;");
jclass _uricls = _env->FindClass("android/net/Uri");
jmethodID _uriparsemid = _env->GetStaticMethodID(_uricls, "parse", "(Ljava/lang/String;)Landroid/net/Uri;");
jstring _urlpar = _env->NewStringUTF((const BLAnsi*)_absurl);
jobject _uriobject = _env->CallStaticObjectMethod(_uricls, _uriparsemid, _urlpar);
jobject _newintentobj = _env->CallObjectMethod(_intentobject, _setmid, _uriobject);
_env->DeleteLocalRef(_activitycls);
_env->DeleteLocalRef(_intentcls);
_env->DeleteLocalRef(_uricls);
_env->DeleteLocalRef(_urlpar);
_env->CallVoidMethod(_PrSystemMem->pActivity->clazz, _startmid, _newintentobj);
_env->DeleteLocalRef(_uriobject);
_env->DeleteLocalRef(_intentobject);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#elif defined(BL_PLATFORM_OSX)
NSString* _str = [NSString stringWithCString : (const BLAnsi*)_absurl encoding : NSUTF8StringEncoding];
NSURL* _url = [NSURL URLWithString : _str];
[[NSWorkspace sharedWorkspace] openURL:_url];
#elif defined(BL_PLATFORM_IOS)
NSString* _str = [NSString stringWithCString : (const BLAnsi*)_absurl encoding : NSUTF8StringEncoding];
NSURL* _url = [NSURL URLWithString : _str];
[[UIApplication sharedApplication] openURL:_url options:@{} completionHandler : nil];
#elif defined(BL_PLATFORM_WEB)
EM_ASM_({ var _url = UTF8ToString($0); window.open(_url, 'newwindow'); }, (const BLAnsi*)_absurl);
#endif
if (_malloc)
free(_absurl);
}
BLBool
blSysOpenPlugin(IN BLAnsi* _Basename)
{
BLU32 _hashname = blHashString((const BLUtf8*)_Basename);
BLU32 _idx = 0;
for (; _idx < 64; ++_idx)
{
if (_PrSystemMem->aPlugins[_idx].nHash == 0)
break;
else if (_PrSystemMem->aPlugins[_idx].nHash == _hashname)
return TRUE;
}
if (_idx >= 64)
return FALSE;
_PrSystemMem->aPlugins[_idx].nHash = _hashname;
BLAnsi _path[260] = { 0 };
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
strcpy_s(_path, 260, blSysWorkingDir());
strcat_s(_path, 260, "lib");
strcat_s(_path, 260, _Basename);
strcat_s(_path, 260, "Plugin.dll");
#elif defined(BL_PLATFORM_LINUX)
strcpy(_path, blSysWorkingDir());
strcat(_path, "lib");
strcat(_path, _Basename);
strcat(_path, "Plugin.so");
#elif defined(BL_PLATFORM_ANDROID)
pthread_mutex_lock(&_PrSystemMem->sMutex);
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
jmethodID _applicationnfomid = _env->GetMethodID(_env->GetObjectClass(_PrSystemMem->pActivity->clazz), "getApplicationInfo", "()Landroid/content/pm/ApplicationInfo;");
jobject _appinfo = _env->CallObjectMethod(_PrSystemMem->pActivity->clazz, _applicationnfomid);
jfieldID _fieldid = _env->GetFieldID(_env->GetObjectClass(_appinfo), "nativeLibraryDir", "Ljava/lang/String;");
jstring _nativelibrarydir = (jstring)_env->GetObjectField(_appinfo, _fieldid);
const BLAnsi* _str = _env->GetStringUTFChars(_nativelibrarydir, NULL);
strcpy(_path, _str);
_env->ReleaseStringUTFChars(_nativelibrarydir, _str);
_env->DeleteLocalRef(_appinfo);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
pthread_mutex_unlock(&_PrSystemMem->sMutex);
strcat(_path, "/lib");
strcat(_path, _Basename);
strcat(_path, "Plugin.so");
#elif defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_IOS)
strcpy(_path, blSysWorkingDir());
strcat(_path, "lib");
strcat(_path, _Basename);
strcat(_path, "Plugin.dylib");
#elif defined(BL_PLATFORM_WEB)
strcpy(_path, blSysWorkingDir());
strcat(_path, "lib");
strcat(_path, _Basename);
strcat(_path, "Plugin.js");
#endif
#if defined(BL_PLATFORM_WIN32)
WCHAR _wfilename[260] = { 0 };
MultiByteToWideChar(CP_UTF8, 0, _path, -1, _wfilename, sizeof(_wfilename));
_PrSystemMem->aPlugins[_idx].pHandle = LoadLibraryW(_wfilename);
#elif defined(BL_PLATFORM_UWP)
WCHAR _wfilename[260] = { 0 };
MultiByteToWideChar(CP_UTF8, 0, _path, -1, _wfilename, sizeof(_wfilename));
_PrSystemMem->aPlugins[_idx].pHandle = LoadPackagedLibrary(_wfilename, 0);
#elif defined(BL_PLATFORM_LINUX)
_PrSystemMem->aPlugins[_idx].pHandle = dlopen(_path, RTLD_LAZY | RTLD_GLOBAL);
#elif defined(BL_PLATFORM_ANDROID)
_PrSystemMem->aPlugins[_idx].pHandle = dlopen(_path, RTLD_LAZY | RTLD_GLOBAL);
#elif defined(BL_PLATFORM_OSX)
_PrSystemMem->aPlugins[_idx].pHandle = dlopen(_path, RTLD_LAZY | RTLD_GLOBAL);
#elif defined(BL_PLATFORM_IOS)
_PrSystemMem->aPlugins[_idx].pHandle = dlopen(_path, RTLD_LAZY | RTLD_GLOBAL);
#elif defined(BL_PLATFORM_WEB)
_PrSystemMem->aPlugins[_idx].pHandle = dlopen(_path, RTLD_LAZY | RTLD_GLOBAL);
#endif
memset(_path, 0, sizeof(_path));
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
strcpy_s(_path, 260, "bl");
strcat_s(_path, 260, _Basename);
strcat_s(_path, 260, "OpenEXT");
#else
strcpy(_path, "bl");
strcat(_path, _Basename);
strcat(_path, "OpenEXT");
#endif
BLVoid(*_open)(IN BLAnsi*, ...);
_open = (BLVoid(*)(IN BLAnsi*, ...))blSysPluginProcAddress(_Basename, _path);
#if defined(BL_PLATFORM_WIN32)
_open(BL_SDK_VERSION, &_PrSystemMem->nHwnd);
#elif defined(BL_PLATFORM_UWP)
_open(BL_SDK_VERSION);
#elif defined(BL_PLATFORM_LINUX)
_open(BL_SDK_VERSION, _PrSystemMem->pDisplay, &_PrSystemMem->nWindow);
#elif defined(BL_PLATFORM_ANDROID)
_open(BL_SDK_VERSION, _PrSystemMem->pActivity->vm, _PrSystemMem->pActivity->env, &_PrSystemMem->pBLJava);
#elif defined(BL_PLATFORM_OSX)
_open(BL_SDK_VERSION, _PrSystemMem->pWindow);
#elif defined(BL_PLATFORM_IOS)
_open(BL_SDK_VERSION, _PrSystemMem->pWindow);
#elif defined(BL_PLATFORM_WEB)
_open(BL_SDK_VERSION, NULL);
#endif
return TRUE;
}
BLBool
blSysClosePlugin(IN BLAnsi* _Basename)
{
BLU32 _hashname = blHashString((const BLUtf8*)_Basename);
BLU32 _idx = 0;
for (; _idx < 64; ++_idx)
{
if (_PrSystemMem->aPlugins[_idx].nHash == _hashname)
break;
}
if (_idx >= 64)
return FALSE;
BLAnsi _path[260] = { 0 };
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
strcpy_s(_path, 260, "bl");
strcat_s(_path, 260, _Basename);
strcat_s(_path, 260, "CloseEXT");
#else
strcpy(_path, "bl");
strcat(_path, _Basename);
strcat(_path, "CloseEXT");
#endif
BLVoid(*_close)(BLVoid);
_close = (BLVoid(*)(BLVoid))blSysPluginProcAddress(_Basename, _path);
_close();
#if defined(BL_PLATFORM_WIN32)
FreeLibrary(_PrSystemMem->aPlugins[_idx].pHandle);
#elif defined(BL_PLATFORM_UWP)
FreeLibrary(_PrSystemMem->aPlugins[_idx].pHandle);
#elif defined(BL_PLATFORM_LINUX)
dlclose(_PrSystemMem->aPlugins[_idx].pHandle);
#elif defined(BL_PLATFORM_ANDROID)
dlclose(_PrSystemMem->aPlugins[_idx].pHandle);
#elif defined(BL_PLATFORM_OSX)
dlclose(_PrSystemMem->aPlugins[_idx].pHandle);
#elif defined(BL_PLATFORM_IOS)
dlclose(_PrSystemMem->aPlugins[_idx].pHandle);
#elif defined(BL_PLATFORM_WEB)
dlclose(_PrSystemMem->aPlugins[_idx].pHandle);
#endif
_PrSystemMem->aPlugins[_idx].nHash = 0;
return TRUE;
}
BLVoid*
blSysPluginProcAddress(IN BLAnsi* _Basename, IN BLAnsi* _Function)
{
BLU32 _hashname = blHashString((const BLUtf8*)_Basename);
BLU32 _idx = 0;
for (; _idx < 64; ++_idx)
{
if (_PrSystemMem->aPlugins[_idx].nHash == _hashname)
break;
}
if (_idx >= 64)
return NULL;
BLVoid* _ret;
#if defined(BL_PLATFORM_WIN32)
_ret = GetProcAddress(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#elif defined(BL_PLATFORM_UWP)
_ret = GetProcAddress(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#elif defined(BL_PLATFORM_LINUX)
_ret = dlsym(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#elif defined(BL_PLATFORM_ANDROID)
_ret = dlsym(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#elif defined(BL_PLATFORM_OSX)
_ret = dlsym(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#elif defined(BL_PLATFORM_IOS)
_ret = dlsym(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#elif defined(BL_PLATFORM_WEB)
_ret = dlsym(_PrSystemMem->aPlugins[_idx].pHandle, _Function);
#endif
return _ret;
}
BLVoid
blSysAttachIME(IN BLF32 _Xpos, IN BLF32 _Ypos, IN BLEnum _Type)
{
BLF32 _x = _Xpos, _y = _Ypos;
if (_PrSystemMem->sBoostParam.bUseDesignRes)
{
BLF32 _dwidth = (BLF32)_PrSystemMem->sBoostParam.nDesignWidth;
BLF32 _dheight = (BLF32)_PrSystemMem->sBoostParam.nDesignHeight;
BLF32 _ratioorg = (BLF32)(_PrSystemMem->sBoostParam.nScreenWidth) / (BLF32)(_PrSystemMem->sBoostParam.nScreenHeight);
BLF32 _ratiodeg = (BLF32)(_dwidth) / (BLF32)(_dheight);
BLU32 _actualw, _actualh;
if (_ratiodeg >= _ratioorg)
{
_actualh = (BLU32)_dheight;
_actualw = (BLU32)(_ratioorg * _dheight);
}
else
{
_actualh = (BLU32)(_dwidth / _ratioorg);
_actualw = (BLU32)_dwidth;
}
_x *= (BLF32)(_PrSystemMem->sBoostParam.nScreenWidth) / (BLF32)(_actualw);
_y *= (BLF32)(_PrSystemMem->sBoostParam.nScreenHeight) / (BLF32)(_actualh);
}
#if defined(BL_PLATFORM_WIN32)
if (_PrSystemMem->nIMC && _Type == BL_IT_TEXT)
{
COMPOSITIONFORM _com;
ImmAssociateContext(_PrSystemMem->nHwnd, _PrSystemMem->nIMC);
ImmGetCompositionWindow(_PrSystemMem->nIMC, &_com);
_com.dwStyle = CFS_POINT;
_com.ptCurrentPos.x = (LONG)_x;
_com.ptCurrentPos.y = (LONG)_y;
ImmSetCompositionWindow(_PrSystemMem->nIMC, &_com);
}
#elif defined(BL_PLATFORM_UWP)
# if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
_PrSystemMem->sIMEpos.X = _x;
_PrSystemMem->sIMEpos.Y = _y;
_PrSystemMem->pCTEcxt->NotifyFocusEnter();
_PrSystemMem->pCTEcxt->NotifyLayoutChanged();
# else
if (_Type == BL_IT_TEXT)
{
_PrSystemMem->sIMEpos.X = _x;
_PrSystemMem->sIMEpos.Y = _y;
_PrSystemMem->pCTEcxt->NotifyFocusEnter();
_PrSystemMem->pCTEcxt->NotifyLayoutChanged();
}
# endif
#elif defined(BL_PLATFORM_LINUX)
if (_PrSystemMem->pIME)
_PrSystemMem->pIC = XCreateIC(_PrSystemMem->pIME, XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XNClientWindow, _PrSystemMem->nWindow, XNFocusWindow, _PrSystemMem->nWindow, NULL);
if (_PrSystemMem->pIC)
{
XVaNestedList _attr;
XPoint _spot;
_spot.x = _x;
_spot.y = _y;
_attr = XVaCreateNestedList(0, XNSpotLocation, &_spot, NULL);
XSetICValues(_PrSystemMem->pIC, XNPreeditAttributes, _attr, NULL);
XFree(_attr);
BLAnsi* _contents = Xutf8ResetIC(_PrSystemMem->pIC);
if (_contents)
XFree(_contents);
}
#elif defined(BL_PLATFORM_OSX)
if (!_PrSystemMem->pTICcxt)
{
_PrSystemMem->pTICcxt = [[OSXTextInput alloc] initWithFrame: NSMakeRect(0, 0, 0, 0)];
_PrSystemMem->sIMEpos.x = _x;
_PrSystemMem->sIMEpos.y = _y;
}
if (![[_PrSystemMem->pTICcxt superview] isEqual: [_PrSystemMem->pWindow contentView]])
{
[_PrSystemMem->pTICcxt removeFromSuperview];
[[_PrSystemMem->pWindow contentView] addSubview: _PrSystemMem->pTICcxt];
[_PrSystemMem->pWindow setNextResponder:nil];
[_PrSystemMem->pWindow makeFirstResponder: _PrSystemMem->pTICcxt];
}
#elif defined(BL_PLATFORM_IOS)
if (_Type == BL_IT_TEXT)
_PrSystemMem->pTICcxt.keyboardType = UIKeyboardTypeDefault;
else if (_Type == BL_IT_NUMERIC)
_PrSystemMem->pTICcxt.keyboardType = UIKeyboardTypeDecimalPad;
else
_PrSystemMem->pTICcxt.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
[_PrSystemMem->pTICcxt becomeFirstResponder];
#elif defined(BL_PLATFORM_ANDROID)
BLS32 _busy;
_busy = pthread_mutex_trylock(&_PrSystemMem->sMutex);
while (!_PrSystemMem->bAvtivityFocus);
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
jclass _blcls = _env->GetObjectClass(_PrSystemMem->pBLJava);
jmethodID _showviewmid = _env->GetMethodID(_blcls, "showTextInput", "(I)V");
_env->CallVoidMethod(_PrSystemMem->pBLJava, _showviewmid, (jint)_Type);
_env->DeleteLocalRef(_blcls);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
if (!_busy)
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#elif defined(BL_PLATFORM_WEB)
EM_ASM_ARGS({
var _glcanvas = document.querySelector('canvas');
var _input = document.createElement('input');
var _absx = _glcanvas.getBoundingClientRect().left + document.body.scrollLeft;
var _absy = _glcanvas.getBoundingClientRect().top + document.body.scrollTop;
var _lock = false;
_input.type = 'text';
_input.id = 'BLIMEDummyBox';
_input.style.position = 'fixed';
_input.style.left = (_absx + $0) + 'px';
_input.style.top = (_absy + $1) + 'px';
_input.style.width = '0%';
_input.style.height = '0%';
_input.style.color = '#000000';
_input.style.border = 0;
_input.style.background = 'transparent';
if ($2 == 0)
_input.type = 'text';
else if ($2 == 1)
_input.type = 'tel';
else
_input.type = 'url';
document.body.appendChild(_input);
_input.addEventListener('compositionstart', function () {
_lock = true;
}, false);
_input.addEventListener('compositionend', function () {
_lock = false;
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_input.value), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
_input.value = null;
}, false);
_input.addEventListener('keyup', function (e) {
if (_lock === true) return;
if (e.keyCode === 13 || e.keyCode === 108)
_blInvokeEvent(3, 2621441, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 46)
_blInvokeEvent(3, 4980737, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 8)
_blInvokeEvent(3, 2752513, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 37)
_blInvokeEvent(3, 5242881, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 39)
_blInvokeEvent(3, 5177345, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 38)
_blInvokeEvent(3, 5373953, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 40)
_blInvokeEvent(3, 5308417, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 36)
_blInvokeEvent(3, 4849665, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 35)
_blInvokeEvent(3, 5046273, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 65 && e.ctrlKey == 1)
_blInvokeEvent(3, 7798785, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 88 && e.ctrlKey == 1)
_blInvokeEvent(3, 8060929, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 67 && e.ctrlKey == 1)
_blInvokeEvent(3, 8126465, 0, 0, 0xFFFFFFFFFFFFFFFF);
else if (e.keyCode === 86 && e.ctrlKey == 1)
_blInvokeEvent(3, 8192001, 0, 0, 0xFFFFFFFFFFFFFFFF);
else
{
var _utf8str;
if (e.keyCode >= 96 && e.keyCode <= 107)
{
_utf8str = String.fromCharCode(e.keyCode);
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
}
else if (e.keyCode >= 109 && e.keyCode <= 111)
{
_utf8str = String.fromCharCode(e.keyCode);
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
}
else if (e.keyCode >= 65 && e.keyCode <= 90)
{
_utf8str = e.shiftKey ? String.fromCharCode(e.keyCode) : String.fromCharCode(e.keyCode).toLowerCase();
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
}
else if (e.keyCode == 32)
{
_utf8str = String.fromCharCode(e.keyCode);
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
}
else
{
switch (e.keyCode)
{
case 48:
_utf8str = e.shiftKey ? ')' : '0';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 49:
_utf8str = e.shiftKey ? '!' : '1';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 50:
_utf8str = e.shiftKey ? '@' : '2';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 51:
_utf8str = e.shiftKey ? '#' : '3';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 52:
_utf8str = e.shiftKey ? '$' : '4';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 53:
_utf8str = e.shiftKey ? '%' : '5';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 54:
_utf8str = e.shiftKey ? '^' : '6';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 55:
_utf8str = e.shiftKey ? '&' : '7';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 56:
_utf8str = e.shiftKey ? '*' : '8';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 57:
_utf8str = e.shiftKey ? '(' : '9';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 186:
_utf8str = e.shiftKey ? ':' : ';';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 187:
_utf8str = e.shiftKey ? '+' : '=';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 188:
_utf8str = e.shiftKey ? '<' : ',';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 189:
_utf8str = e.shiftKey ? '_' : '-';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 190:
_utf8str = e.shiftKey ? '>' : '.';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 191:
_utf8str = e.shiftKey ? '?' : '/';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 192:
_utf8str = e.shiftKey ? '~' : '`';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 219:
_utf8str = e.shiftKey ? '{' : '[';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 220:
_utf8str = e.shiftKey ? '|' : String.fromCharCode(92);
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 221:
_utf8str = e.shiftKey ? '}' : ']';
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
case 222:
_utf8str = e.shiftKey ? '"' : "'";
_blInvokeEvent(3, 0, 0, allocate(intArrayFromString(_utf8str), 'i8', ALLOC_NORMAL), 0xFFFFFFFFFFFFFFFF);
break;
default:
if (e.preventDefault)
e.preventDefault();
else
e.returnValue = false;
break;
}
}
}
}, false);
_input.addEventListener('blur', function () {
document.body.removeChild(this);
}, false);
_input.focus();
},_Xpos, _Ypos, _Type);
#endif
}
BLVoid
blSysDetachIME(IN BLEnum _Type)
{
#if defined(BL_PLATFORM_WIN32)
if (_PrSystemMem->nIMC && _Type == BL_IT_TEXT)
{
ImmAssociateContext(_PrSystemMem->nHwnd, NULL);
ImmReleaseContext(_PrSystemMem->nHwnd, _PrSystemMem->nIMC);
SetFocus(_PrSystemMem->nHwnd);
}
#elif defined(BL_PLATFORM_UWP)
# if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
_PrSystemMem->pCTEcxt->NotifyFocusLeave();
# else
if (_Type == KEYBOARD_TEXT_INTERNAL)
_PrSystemMem->pCTEcxt->NotifyFocusLeave();
# endif
#elif defined(BL_PLATFORM_LINUX)
if (_PrSystemMem->pIME)
{
BLAnsi* _contents = Xutf8ResetIC(_PrSystemMem->pIC);
if (_contents)
XFree(_contents);
if (_PrSystemMem->pIME)
XDestroyIC(_PrSystemMem->pIC);
}
#elif defined(BL_PLATFORM_OSX)
if (_PrSystemMem->pTICcxt)
{
[_PrSystemMem->pWindow setNextResponder:_PrSystemMem->pDelegate];
[_PrSystemMem->pTICcxt removeFromSuperview];
[_PrSystemMem->pTICcxt release];
_PrSystemMem->pTICcxt = nil;
}
#elif defined(BL_PLATFORM_IOS)
[_PrSystemMem->pTICcxt resignFirstResponder];
#elif defined(BL_PLATFORM_ANDROID)
BLS32 _busy;
_busy = pthread_mutex_trylock(&_PrSystemMem->sMutex);
JNIEnv* _env = _PrSystemMem->pActivity->env;
_PrSystemMem->pActivity->vm->AttachCurrentThread(&_env, NULL);
jclass _blcls = _env->GetObjectClass(_PrSystemMem->pBLJava);
jmethodID _hideviewmid = _env->GetMethodID(_blcls, "hideTextInput", "()V");
_env->CallVoidMethod(_PrSystemMem->pBLJava, _hideviewmid);
_env->DeleteLocalRef(_blcls);
_PrSystemMem->pActivity->vm->DetachCurrentThread();
if (!_busy)
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#elif defined(BL_PLATFORM_WEB)
EM_ASM(
var _glcanvas = document.querySelector('canvas');
var _input = document.querySelector('input');
if (_input != null)
document.body.removeChild(_input);
_glcanvas.focus();
);
#endif
}
BLVoid
blSysCursorVisiblity(IN BLBool _Show)
{
#if defined(BL_PLATFORM_WIN32)
ShowCursor(_Show);
#elif defined(BL_PLATFORM_LINUX)
if (_Show)
XDefineCursor(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nCursor);
else
XDefineCursor(_PrSystemMem->pDisplay, _PrSystemMem->nWindow, _PrSystemMem->nNilCursor);
#elif defined(BL_PLATFORM_OSX)
if (_Show)
[NSCursor unhide];
else
[NSCursor hide];
#elif defined(BL_PLATFORM_UWP)
# if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
if (_Show)
Windows::UI::Core::CoreWindow::GetForCurrentThread()->PointerCursor = ref new Windows::UI::Core::CoreCursor(Windows::UI::Core::CoreCursorType::Arrow, 0);
else
Windows::UI::Core::CoreWindow::GetForCurrentThread()->PointerCursor = nullptr;
# endif
#elif defined(BL_PLATFORM_WEB)
if (_Show)
EM_ASM({ document.querySelector("#canvas").cursor = "none"; });
else
EM_ASM({ document.querySelector("#canvas").cursor = "auto"; });
#endif
}
BLVoid
blSysSubscribeEvent(IN BLEnum _Type, IN BLBool(*_Subscriber)(BLEnum, BLU32, BLS32, BLVoid*, BLGuid))
{
BLU32 _idx = 0;
while (_PrSystemMem->pSubscriber[_Type][_idx])
_idx++;
_PrSystemMem->pSubscriber[_Type][_idx] = _Subscriber;
}
BLVoid
blSysInvokeEvent(IN BLEnum _Type, IN BLU32 _Uparam, IN BLS32 _Sparam, IN BLVoid* _Pparam, IN BLGuid _ID)
{
#ifdef BL_PLATFORM_ANDROID
BLS32 _busy;
_busy = pthread_mutex_trylock(&_PrSystemMem->sMutex);
#endif
BLEnum _etype = _Type;
if (_PrSystemMem->nEventIdx >= _PrSystemMem->nEventsSz)
{
_PrSystemMem->nEventsSz = 2 * _PrSystemMem->nEventIdx + 2;
_PrSystemMem->pEvents = (_BLEvent*)realloc(_PrSystemMem->pEvents, _PrSystemMem->nEventsSz * sizeof(_BLEvent));
}
if (_etype == BL_ET_NET)
{
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].eType = _Type;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sNet.nID = _Uparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sNet.pBuf = (BLVoid*)_Pparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sNet.nLength = _Sparam;
}
else if (_etype == BL_ET_UI)
{
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].eType = _etype;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sUI.nSParam = _Sparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sUI.nUParam = _Uparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sUI.pPParam = (BLVoid*)_Pparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sUI.nID = _ID;
}
else if (_etype == BL_ET_MOUSE)
{
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].eType = _etype;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sMouse.nX = LOWU16(_Uparam);
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sMouse.nY = HIGU16(_Uparam);
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sMouse.eEvent = _Sparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sMouse.nWheel = (_Sparam == BL_ME_WHEEL) ? (BLS32)_Uparam : 0;
}
else if (_etype == BL_ET_KEY)
{
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].eType = _etype;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sKey.eCode = HIGU16(_Uparam);
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sKey.bPressed = (BLBool)LOWU16(_Uparam);
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sKey.pString = NULL;
if (_Pparam)
{
const BLUtf8* _tmp = (const BLUtf8*)_Pparam;
BLU32 _cnt = 0;
while (*_tmp++)
_cnt++;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sKey.pString = (BLUtf8*)malloc((1 + _cnt)*sizeof(BLUtf8));
memcpy(_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sKey.pString, _Pparam, _cnt*sizeof(BLUtf8));
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sKey.pString[_cnt] = 0;
}
}
else if (_etype == BL_ET_SPRITE)
{
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].eType = _etype;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSprite.nSParam = _Sparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSprite.nUParam = _Uparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSprite.nID = _ID;
}
else
{
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].eType = _etype;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSys.nSParam = _Sparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSys.nUParam = _Uparam;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSys.pPParam = NULL;
if (_Pparam)
{
const BLUtf8* _tmp = (const BLUtf8*)_Pparam;
BLU32 _cnt = 0;
while (*_tmp++)
_cnt++;
_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSys.pPParam = (BLUtf8*)malloc((1 + _cnt)*sizeof(BLUtf8));
memcpy(_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSys.pPParam, _Pparam, _cnt*sizeof(BLUtf8));
((BLU8*)_PrSystemMem->pEvents[_PrSystemMem->nEventIdx].uEvent.sSys.pPParam)[_cnt] = 0;
}
}
_PrSystemMem->nEventIdx++;
#ifdef BL_PLATFORM_ANDROID
if (!_busy)
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#endif
}
BLVoid
blSysDateTime(OUT BLS32* _Year, OUT BLS32* _Month, OUT BLS32* _Day, OUT BLS32* _Hour, OUT BLS32* _Minute, OUT BLS32* _Second, OUT BLS32* _Wday, OUT BLS32* _Yday, OUT BLS32* _Dst)
{
time_t _timer;
struct tm* _tblock;
_timer = time(NULL);
_tblock = localtime(&_timer);
*_Year = _tblock->tm_year + 1900;
*_Month = _tblock->tm_mon + 1;
*_Day = _tblock->tm_mday;
*_Hour = _tblock->tm_hour;
*_Minute = _tblock->tm_min;
*_Second = _tblock->tm_sec;
*_Wday = _tblock->tm_wday;
*_Yday = _tblock->tm_yday;
*_Dst = _tblock->tm_isdst;
}
BLBool
blSysTimer(IN BLS32 _PositiveID, IN BLF32 _Elapse)
{
BLU32 _idx = 0;
BLBool _full = TRUE;
for (_idx = 0 ; _idx < 8 ; ++_idx)
{
if (_PrSystemMem->aTimers[_idx].nId == -1)
{
_full = FALSE;
break;
}
}
if (_full)
return FALSE;
_PrSystemMem->aTimers[_idx].nId = _PositiveID;
_PrSystemMem->aTimers[_idx].fElapse = _Elapse;
_PrSystemMem->aTimers[_idx].nLastTime = blSysTickCounts();
return TRUE;
}
BLVoid
blSysWindowQuery(OUT BLU32* _Width, OUT BLU32* _Height, OUT BLU32* _ActualWidth, OUT BLU32* _ActualHeight, OUT BLF32* _RatioX, OUT BLF32* _RatioY)
{
*_Width = _PrSystemMem->sBoostParam.nScreenWidth;
*_Height = _PrSystemMem->sBoostParam.nScreenHeight;
if (_PrSystemMem->sBoostParam.bUseDesignRes)
{
BLF32 _dwidth = (BLF32)_PrSystemMem->sBoostParam.nDesignWidth;
BLF32 _dheight = (BLF32)_PrSystemMem->sBoostParam.nDesignHeight;
BLF32 _ratioorg = (BLF32)(*_Width) / (BLF32)(*_Height);
BLF32 _ratiodeg = (BLF32)(_dwidth) / (BLF32)(_dheight);
if (_ratiodeg >= _ratioorg)
{
*_ActualHeight = (BLU32)_dheight;
*_ActualWidth = (BLU32)(_ratioorg * _dheight);
}
else
{
*_ActualHeight = (BLU32)(_dwidth / _ratioorg);
*_ActualWidth = (BLU32)_dwidth;
}
*_RatioX = (BLF32)(*_Width) / (BLF32)(*_ActualWidth);
*_RatioY = (BLF32)(*_Height) / (BLF32)(*_ActualHeight);
}
else
{
*_ActualWidth = *_Width;
*_ActualHeight = *_Height;
*_RatioX = 1.f;
*_RatioY = 1.f;
}
}
BLVoid
blSysWindowResize(IN BLU32 _Width, IN BLU32 _Height, IN BLBool _Fullscreen)
{
#if defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_LINUX) || defined(BL_PLATFORM_UWP) || defined(BL_PLATFORM_WEB)
if (_Fullscreen)
_EnterFullscreen();
else
_ExitFullscreen(_Width, _Height);
BLAnsi _tmp[256] = { 0 };
sprintf(_tmp, "%d", _PrSystemMem->sBoostParam.nScreenWidth);
blSysEnvVariable((const BLUtf8*)"SCREEN_WIDTH", (BLUtf8*)_tmp, TRUE);
memset(_tmp, 0, sizeof(_tmp));
sprintf(_tmp, "%d", _PrSystemMem->sBoostParam.nScreenHeight);
blSysEnvVariable((const BLUtf8*)"SCREEN_HEIGHT", (BLUtf8*)_tmp, TRUE);
memset(_tmp, 0, sizeof(_tmp));
if (_PrSystemMem->sBoostParam.bFullscreen)
strcpy(_tmp, "true");
else
strcpy(_tmp, "false");
blSysEnvVariable((const BLUtf8*)"FULLSCREEN", (BLUtf8*)_tmp, TRUE);
memset(_tmp, 0, sizeof(_tmp));
sprintf(_tmp, "%d", _PrSystemMem->sBoostParam.eQuality);
blSysEnvVariable((const BLUtf8*)"QUALITY", (BLUtf8*)_tmp, TRUE);
#endif
}
BLBool
blSysPrepare(IN BLVoid* _Activity, IN BLVoid* _State, IN BLU32 _StateSize)
{
#if defined(BL_PLATFORM_ANDROID)
ANativeActivity* _activity = (ANativeActivity*)_Activity;
_activity->callbacks->onDestroy = _Destroy;
_activity->callbacks->onStart = _Start;
_activity->callbacks->onResume = _Resume;
_activity->callbacks->onSaveInstanceState = _SaveInstanceState;
_activity->callbacks->onPause = _Pause;
_activity->callbacks->onStop = _Stop;
_activity->callbacks->onConfigurationChanged = _ConfigurationChanged;
_activity->callbacks->onLowMemory = _LowMemory;
_activity->callbacks->onWindowFocusChanged = _WindowFocusChanged;
_activity->callbacks->onNativeWindowCreated = _NativeWindowCreated;
_activity->callbacks->onNativeWindowDestroyed = _NativeWindowDestroyed;
_activity->callbacks->onInputQueueCreated = _InputQueueCreated;
_activity->callbacks->onInputQueueDestroyed = _InputQueueDestroyed;
_PrSystemMem = (_BLSystemMember*)malloc(sizeof(_BLSystemMember));
_PrSystemMem->pActivity = _activity;
_PrSystemMem->pBLJava = NULL;
_PrSystemMem->pWindow = NULL;
_PrSystemMem->pSavedState = NULL;
_PrSystemMem->pInputQueue = NULL;
pthread_mutex_init(&_PrSystemMem->sMutex, NULL);
pthread_cond_init(&_PrSystemMem->sCond, NULL);
if (_State != NULL)
{
_PrSystemMem->pSavedState = malloc(_StateSize);
_PrSystemMem->nSavedStateSize = _StateSize;
memcpy(_PrSystemMem->pSavedState, _State, _StateSize);
}
BLS32 _msgpipe[2];
pipe(_msgpipe);
_PrSystemMem->nMsgRead = _msgpipe[0];
_PrSystemMem->nMsgWrite = _msgpipe[1];
pthread_attr_t _attr;
pthread_attr_init(&_attr);
pthread_attr_setdetachstate(&_attr, PTHREAD_CREATE_DETACHED);
pthread_create(&_PrSystemMem->nThread, &_attr, _AppEntry, NULL);
pthread_mutex_lock(&_PrSystemMem->sMutex);
while (!_GbSystemRunning)
pthread_cond_wait(&_PrSystemMem->sCond, &_PrSystemMem->sMutex);
pthread_mutex_unlock(&_PrSystemMem->sMutex);
#elif defined(BL_PLATFORM_WEB)
_SystemInit();
emscripten_request_animation_frame_loop(_SystemStep, 0);
#endif
return TRUE;
}
BLVoid
blSysRun(IN BLAnsi* _Appname, IN BLU32 _Width, IN BLU32 _Height, IN BLU32 _DesignWidth, IN BLU32 _DesignHeight, IN BLBool _UseDesignRes, IN BLBool _Fullscreen, IN BLBool _Profiler, IN BLEnum _Quality, IN BLVoid(*_Begin)(BLVoid), IN BLVoid(*_Step)(BLU32), IN BLVoid(*_End)(BLVoid))
{
blDebugOutput("Run %s app:%d x %d", _Appname, _Width, _Height);
#if defined(BL_PLATFORM_UWP)
_PrSystemMem = new _BLSystemMember;
#elif defined(BL_PLATFORM_ANDROID)
if (!_PrAndroidGlue)
{
_PrAndroidGlue = (_BLBoostParam*)malloc(sizeof(_BLBoostParam));
memset(_PrAndroidGlue->pAppName, 0, sizeof(_PrAndroidGlue->pAppName));
strcpy((BLAnsi*)_PrAndroidGlue->pAppName, _Appname);
_PrAndroidGlue->nScreenWidth = _Width;
_PrAndroidGlue->nScreenHeight = _Height;
_PrAndroidGlue->nDesignWidth = _DesignWidth;
_PrAndroidGlue->nDesignHeight = _DesignHeight;
_PrAndroidGlue->bUseDesignRes = _UseDesignRes;
_PrAndroidGlue->bFullscreen = _Fullscreen;
_PrAndroidGlue->bProfiler = _Profiler;
_PrAndroidGlue->eQuality = _Quality;
_PrAndroidGlue->pBeginFunc = _Begin;
_PrAndroidGlue->pStepFunc = _Step;
_PrAndroidGlue->pEndFunc = _End;
return;
}
#else
_PrSystemMem = (_BLSystemMember*)malloc(sizeof(_BLSystemMember));
#endif
memset(_PrSystemMem->pSubscriber, 0, sizeof(_PrSystemMem->pSubscriber));
_PrSystemMem->pBeginFunc = NULL;
_PrSystemMem->pStepFunc = NULL;
_PrSystemMem->pEndFunc = NULL;
_PrSystemMem->pEvents = NULL;
memset(_PrSystemMem->aWorkDir, 0, sizeof(_PrSystemMem->aWorkDir));
memset(_PrSystemMem->aUserDir, 0, sizeof(_PrSystemMem->aUserDir));
memset(_PrSystemMem->aEncryptkey, 0, sizeof(_PrSystemMem->aEncryptkey));
_PrSystemMem->nEventsSz = 0;
_PrSystemMem->nEventIdx = 0;
_PrSystemMem->nSysTime = 0;
_PrSystemMem->nOrientation = SCREEN_LANDSCAPE_INTERNAL;
for (BLU32 _idx = 0; _idx < 64; ++_idx)
_PrSystemMem->aPlugins[_idx].nHash = 0;
#if defined(BL_PLATFORM_WIN32)
_PrSystemMem->bCtrlPressed = FALSE;
#elif defined(BL_PLATFORM_UWP)
_PrSystemMem->bCtrlPressed = FALSE;
#elif defined(BL_PLATFORM_LINUX)
_PrSystemMem->pDisplay = NULL;
_PrSystemMem->pIME = NULL;
_PrSystemMem->pIC = NULL;
_PrSystemMem->pLib = NULL;
_PrSystemMem->bCtrlPressed = FALSE;
_PrSystemMem->bEWMHSupported = FALSE;
#elif defined(BL_PLATFORM_ANDROID)
_PrSystemMem->bAvtivityFocus = FALSE;
_PrSystemMem->bBackendState = 0;
#elif defined(BL_PLATFORM_OSX)
_PrSystemMem->pPool = nil;
_PrSystemMem->pWindow = nil;
_PrSystemMem->pTICcxt = nil;
_PrSystemMem->pDelegate = nil;
_PrSystemMem->bCtrlPressed = FALSE;
#elif defined(BL_PLATFORM_IOS)
_PrSystemMem->pPool = nil;
_PrSystemMem->pWindow = nil;
_PrSystemMem->pTICcxt = nil;
_PrSystemMem->nKeyboardHeight = 0;
_PrSystemMem->pCtlView = nil;
_PrSystemMem->bInitState = FALSE;
#endif
for (BLU32 _idx = 0; _idx < 8; ++_idx)
_PrSystemMem->aTimers[_idx].nId = -1;
memset(_PrSystemMem->sBoostParam.pAppName, 0, sizeof(_PrSystemMem->sBoostParam.pAppName));
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_UWP)
strcpy_s((BLAnsi*)_PrSystemMem->sBoostParam.pAppName, 128, _Appname);
#elif defined(BL_PLATFORM_ANDROID)
strcpy((BLAnsi*)_PrSystemMem->sBoostParam.pAppName, (const BLAnsi*)_PrAndroidGlue->pAppName);
#else
strcpy((BLAnsi*)_PrSystemMem->sBoostParam.pAppName, _Appname);
#endif
if (_Width + _Height == 0)
{
BLAnsi _tmp[256] = { 0 };
if (blSysEnvVariable((const BLUtf8*)"SCREEN_WIDTH", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.nScreenWidth = (BLU32)strtoul(_tmp, NULL, 10);
else
_PrSystemMem->sBoostParam.nScreenWidth = 0;
memset(_tmp, 0, sizeof(_tmp));
if (blSysEnvVariable((const BLUtf8*)"SCREEN_HEIGHT", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.nScreenHeight = (BLU32)strtoul(_tmp, NULL, 10);
else
_PrSystemMem->sBoostParam.nScreenHeight = 0;
memset(_tmp, 0, sizeof(_tmp));
if (blSysEnvVariable((const BLUtf8*)"FULLSCREEN", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.bFullscreen = strcmp(_tmp, "true") ? FALSE : TRUE;
else
_PrSystemMem->sBoostParam.bFullscreen = FALSE;
memset(_tmp, 0, sizeof(_tmp));
if (blSysEnvVariable((const BLUtf8*)"QUALITY", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.eQuality = (BLU32)strtoul(_tmp, NULL, 10);
else
_PrSystemMem->sBoostParam.eQuality = BL_RQ_NORMAL;
}
else
{
#if defined(BL_PLATFORM_ANDROID)
_PrSystemMem->sBoostParam.nScreenWidth = _PrAndroidGlue->nScreenWidth;
_PrSystemMem->sBoostParam.nScreenHeight = _PrAndroidGlue->nScreenHeight;
_PrSystemMem->sBoostParam.bFullscreen = _PrAndroidGlue->bFullscreen;
_PrSystemMem->sBoostParam.eQuality = _GbRenderQuality = _PrAndroidGlue->eQuality;
#else
_PrSystemMem->sBoostParam.nScreenWidth = _Width;
_PrSystemMem->sBoostParam.nScreenHeight = _Height;
_PrSystemMem->sBoostParam.bFullscreen = _Fullscreen;
_PrSystemMem->sBoostParam.eQuality = _GbRenderQuality = _Quality;
#endif
}
#if defined(BL_PLATFORM_ANDROID)
_PrSystemMem->sBoostParam.nDesignWidth = _PrAndroidGlue->nDesignWidth;
_PrSystemMem->sBoostParam.nDesignHeight = _PrAndroidGlue->nDesignHeight;
_PrSystemMem->sBoostParam.bUseDesignRes = _PrAndroidGlue->bUseDesignRes;
_PrSystemMem->sBoostParam.bProfiler = _PrAndroidGlue->bProfiler;
_PrSystemMem->pBeginFunc = _PrAndroidGlue->pBeginFunc;
_PrSystemMem->pStepFunc = _PrAndroidGlue->pStepFunc;
_PrSystemMem->pEndFunc = _PrAndroidGlue->pEndFunc;
free(_PrAndroidGlue);
_PrAndroidGlue = NULL;
#else
_PrSystemMem->sBoostParam.nDesignWidth = _DesignWidth;
_PrSystemMem->sBoostParam.nDesignHeight = _DesignHeight;
_PrSystemMem->sBoostParam.bUseDesignRes = _UseDesignRes;
_PrSystemMem->sBoostParam.bProfiler = _Profiler;
_PrSystemMem->pBeginFunc = _Begin;
_PrSystemMem->pStepFunc = _Step;
_PrSystemMem->pEndFunc = _End;
#endif
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_LINUX) || defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_ANDROID)
_SystemInit();
do {
_SystemStep();
} while (_GbSystemRunning);
_SystemDestroy();
#elif defined(BL_PLATFORM_IOS)
_SystemInit();
#elif defined(BL_PLATFORM_WEB)
EM_ASM(
FS.mkdir('/remote');
FS.mount(IDBFS, {}, '/remote');
FS.syncfs(true, function(err) {
assert(!err);
ccall('blSysPrepare', 'number', ['number', 'number', 'number'], [0, 0, 0]);
});
);
#endif
}
BLVoid
blSysScriptRun(IN BLAnsi* _Encryptkey)
{
#if defined(BL_PLATFORM_UWP)
_PrSystemMem = new _BLSystemMember;
#elif defined(BL_PLATFORM_ANDROID)
#else
_PrSystemMem = (_BLSystemMember*)malloc(sizeof(_BLSystemMember));
#endif
memset(_PrSystemMem->pSubscriber, 0, sizeof(_PrSystemMem->pSubscriber));
_PrSystemMem->pBeginFunc = NULL;
_PrSystemMem->pStepFunc = NULL;
_PrSystemMem->pEndFunc = NULL;
_PrSystemMem->pEvents = NULL;
memset(_PrSystemMem->aWorkDir, 0, sizeof(_PrSystemMem->aWorkDir));
memset(_PrSystemMem->aUserDir, 0, sizeof(_PrSystemMem->aUserDir));
memset(_PrSystemMem->aEncryptkey, 0, sizeof(_PrSystemMem->aEncryptkey));
strcpy(_PrSystemMem->aEncryptkey, _Encryptkey);
_PrSystemMem->nEventsSz = 0;
_PrSystemMem->nEventIdx = 0;
_PrSystemMem->nSysTime = 0;
_PrSystemMem->nOrientation = SCREEN_LANDSCAPE_INTERNAL;
for (BLU32 _idx = 0; _idx < 64; ++_idx)
_PrSystemMem->aPlugins[_idx].nHash = 0;
BLAnsi _tmp[256] = { 0 };
if (blSysEnvVariable((const BLUtf8*)"SCREEN_WIDTH", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.nScreenWidth = (BLU32)strtoul(_tmp, NULL, 10);
else
_PrSystemMem->sBoostParam.nScreenWidth = 0;
memset(_tmp, 0, sizeof(_tmp));
if (blSysEnvVariable((const BLUtf8*)"SCREEN_HEIGHT", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.nScreenHeight = (BLU32)strtoul(_tmp, NULL, 10);
else
_PrSystemMem->sBoostParam.nScreenHeight = 0;
memset(_tmp, 0, sizeof(_tmp));
if (blSysEnvVariable((const BLUtf8*)"FULLSCREEN", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.bFullscreen = strcmp(_tmp, "true") ? FALSE : TRUE;
else
_PrSystemMem->sBoostParam.bFullscreen = FALSE;
memset(_tmp, 0, sizeof(_tmp));
if (blSysEnvVariable((const BLUtf8*)"QUALITY", (BLUtf8*)_tmp, FALSE))
_PrSystemMem->sBoostParam.eQuality = (BLU32)strtoul(_tmp, NULL, 10);
else
_PrSystemMem->sBoostParam.eQuality = BL_RQ_NORMAL;
#if defined(BL_PLATFORM_WIN32)
_PrSystemMem->bCtrlPressed = FALSE;
#elif defined(BL_PLATFORM_UWP)
_PrSystemMem->bCtrlPressed = FALSE;
#elif defined(BL_PLATFORM_LINUX)
_PrSystemMem->pDisplay = NULL;
_PrSystemMem->pIME = NULL;
_PrSystemMem->pIC = NULL;
_PrSystemMem->pLib = NULL;
_PrSystemMem->bCtrlPressed = FALSE;
_PrSystemMem->bEWMHSupported = FALSE;
#elif defined(BL_PLATFORM_ANDROID)
_PrSystemMem->bAvtivityFocus = FALSE;
_PrSystemMem->bBackendState = 0;
#elif defined(BL_PLATFORM_OSX)
_PrSystemMem->pPool = nil;
_PrSystemMem->pWindow = nil;
_PrSystemMem->pTICcxt = nil;
_PrSystemMem->pDelegate = nil;
_PrSystemMem->bCtrlPressed = FALSE;
#elif defined(BL_PLATFORM_IOS)
_PrSystemMem->pPool = nil;
_PrSystemMem->pWindow = nil;
_PrSystemMem->pTICcxt = nil;
_PrSystemMem->nKeyboardHeight = 0;
_PrSystemMem->pCtlView = nil;
#endif
for (BLU32 _idx = 0; _idx < 8; ++_idx)
_PrSystemMem->aTimers[_idx].nId = -1;
memset(_PrSystemMem->sBoostParam.pAppName, 0, sizeof(_PrSystemMem->sBoostParam.pAppName));
#if defined(BL_PLATFORM_WIN32) || defined(BL_PLATFORM_LINUX) || defined(BL_PLATFORM_OSX) || defined(BL_PLATFORM_ANDROID)
_SystemInit();
do {
_SystemStep();
} while (_GbSystemRunning);
_SystemDestroy();
#elif defined(BL_PLATFORM_WEB)
_SystemInit();
emscripten_request_animation_frame_loop(_SystemStep, 0);
#endif
}
| XC | 3 | timgates42/Bulllord-Engine | code/src/system.xc | [
"MIT"
] |
/* Bring in the gd library functions */
#include "gd.h"
/* Bring in standard I/O and string manipulation functions */
#include <stdio.h>
#include <stdlib.h> /* for atoi() */
#include <string.h>
#ifdef _WIN32
#include <process.h>
int
getpid ()
{
return _getpid ();
}
#else
#include <unistd.h> /* for getpid(), unlink() */
#endif
int
main (int argc, char **argv)
{
FILE *in;
FILE *out;
char outFn[20];
int useStdinStdout = 0;
/* Declare our image pointer */
gdImagePtr im = 0;
int i;
/* We'll clear 'no' once we know the user has made a
reasonable request. */
int no = 1;
/* We'll set 'write' once we know the user's request
requires that the image be written back to disk. */
int write = 0;
/* C programs always get at least one argument; we want at
least one more (the image), more in practice. */
if (argc < 2 || !strcmp (argv[1], "--help"))
{
no = 1;
goto usage;
}
/* The last argument should be the image. Open the file. */
if (strcmp ("-", argv[argc - 1]) == 0)
{ /* - is synonymous with STDIN */
useStdinStdout = 1;
in = stdin;
}
else
{
in = fopen (argv[argc - 1], "rb");
}
if (!in)
{
fprintf (stderr,
"Error: can't open file %s.\n", argv[argc - 1]);
exit (1);
}
/* Now load the image. */
im = gdImageCreateFromPng (in);
fclose (in);
/* If the load failed, it must not be a PNG file. */
if (!im)
{
fprintf (stderr,
"Error: %s is not a valid PNG file.\n", argv[argc - 1]);
exit (1);
}
/* Consider each argument in turn. */
for (i = 1; (i < (argc - 1)); i++)
{
/* -i turns on and off interlacing. */
if (!strcmp (argv[i], "--help"))
{
/* Every program should use this for help! :) */
no = 1;
goto usage;
}
else if (!strcmp (argv[i], "-i"))
{
if (i == (argc - 2))
{
fprintf (stderr,
"Error: -i specified without y or n.\n");
no = 1;
goto usage;
}
if (!strcmp (argv[i + 1], "y"))
{
/* Set interlace. */
gdImageInterlace (im, 1);
}
else if (!strcmp (argv[i + 1], "n"))
{
/* Clear interlace. */
gdImageInterlace (im, 0);
}
else
{
fprintf (stderr,
"Error: -i specified without y or n.\n");
no = 1;
goto usage;
}
i++;
no = 0;
write = 1;
}
else if (!strcmp (argv[i], "-t"))
{
/* Set transparent index (or none). */
int index;
if (i == (argc - 2))
{
fprintf (stderr,
"Error: -t specified without a color table index.\n");
no = 1;
goto usage;
}
if (!strcmp (argv[i + 1], "none"))
{
/* -1 means not transparent. */
gdImageColorTransparent (im, -1);
}
else
{
/* OK, get an integer and set the index. */
index = atoi (argv[i + 1]);
gdImageColorTransparent (im, index);
}
i++;
write = 1;
no = 0;
}
else if (!strcmp (argv[i], "-l"))
{
/* List the colors in the color table. */
int j;
if (!im->trueColor)
{
/* Tabs used below. */
printf ("Index Red Green Blue Alpha\n");
for (j = 0; (j < gdImageColorsTotal (im)); j++)
{
/* Use access macros to learn colors. */
printf ("%d %d %d %d %d\n",
j,
gdImageRed (im, j),
gdImageGreen (im, j),
gdImageBlue (im, j),
gdImageAlpha (im, j));
}
}
else
{
printf ("Truecolor image, no palette entries to list.\n");
}
no = 0;
}
else if (!strcmp (argv[i], "-d"))
{
/* Output dimensions, etc. */
int t;
printf ("Width: %d Height: %d Colors: %d\n",
gdImageSX (im), gdImageSY (im),
gdImageColorsTotal (im));
t = gdImageGetTransparent (im);
if (t != (-1))
{
printf ("First 100%% transparent index: %d\n", t);
}
else
{
/* -1 means the image is not transparent. */
printf ("First 100%% transparent index: none\n");
}
if (gdImageGetInterlaced (im))
{
printf ("Interlaced: yes\n");
}
else
{
printf ("Interlaced: no\n");
}
no = 0;
}
else if (!strcmp(argv[i], "-a"))
{
int maxx, maxy, x, y, alpha, pix, nalpha = 0;
maxx = gdImageSX(im);
maxy = gdImageSY(im);
printf("alpha channel information:\n");
if (im->trueColor) {
for (y = 0; y < maxy; y++) {
for (x = 0; x < maxx; x++) {
pix = gdImageGetPixel(im, x, y);
alpha = gdTrueColorGetAlpha(pix);
if (alpha > gdAlphaOpaque) {
/* Use access macros to learn colors. */
printf ("%d %d %d %d\n",
gdTrueColorGetRed(pix),
gdTrueColorGetGreen(pix),
gdTrueColorGetBlue(pix),
alpha);
nalpha++;
}
}
}
}
else
printf("NOT a true color image\n");
no = 0;
printf("%d alpha channels\n", nalpha);
}
else
{
fprintf (stderr, "Unknown argument: %s\n", argv[i]);
break;
}
}
usage:
if (no)
{
/* If the command failed, output an explanation. */
fprintf (stderr,
"Usage: webpng [-i y|n ] [-l] [-t index|none ] [-d] pngname.png\n"
" -i [y|n] Turns on/off interlace\n"
" -l Prints the table of color indexes\n"
" -t [index] Set the transparent color to the specified index (0-255 or \"none\")\n"
" -d Reports the dimensions and other characteristics of the image.\n"
" -a Prints all alpha channels that are not 100%% opaque.\n"
"\n"
"If you specify '-' as the input file, stdin/stdout will be used input/output.\n"
);
}
if (write)
{
if (useStdinStdout)
{
out = stdout;
}
else
{
/* Open a temporary file. */
/* "temp.tmp" is not good temporary filename. */
snprintf (outFn, sizeof(outFn), "webpng.tmp%d", getpid ());
out = fopen (outFn, "wb");
if (!out)
{
fprintf (stderr,
"Unable to write to %s -- exiting\n", outFn);
exit (1);
}
}
/* Write the new PNG. */
gdImagePng (im, out);
if (!useStdinStdout)
{
fclose (out);
/* Erase the old PNG. */
unlink (argv[argc - 1]);
/* Rename the new to the old. */
if (rename (outFn, argv[argc - 1]) != 0)
{
perror ("rename");
exit (1);
}
}
}
/* Delete the image from memory. */
if (im)
{
gdImageDestroy (im);
}
/* All's well that ends well. */
return 0;
}
| C | 5 | guomoumou123/php5.5.10 | ext/gd/libgd/webpng.c | [
"PHP-3.01"
] |
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.pantalaimon-headless;
iniFmt = pkgs.formats.ini { };
mkConfigFile = name: instanceConfig: iniFmt.generate "pantalaimon.conf" {
Default = {
LogLevel = instanceConfig.logLevel;
Notifications = false;
};
${name} = (recursiveUpdate
{
Homeserver = instanceConfig.homeserver;
ListenAddress = instanceConfig.listenAddress;
ListenPort = instanceConfig.listenPort;
SSL = instanceConfig.ssl;
# Set some settings to prevent user interaction for headless operation
IgnoreVerification = true;
UseKeyring = false;
}
instanceConfig.extraSettings
);
};
mkPantalaimonService = name: instanceConfig:
nameValuePair "pantalaimon-${name}" {
description = "pantalaimon instance ${name} - E2EE aware proxy daemon for matrix clients";
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = ''${pkgs.pantalaimon-headless}/bin/pantalaimon --config ${mkConfigFile name instanceConfig} --data-path ${instanceConfig.dataPath}'';
Restart = "on-failure";
DynamicUser = true;
NoNewPrivileges = true;
PrivateDevices = true;
PrivateTmp = true;
ProtectHome = true;
ProtectSystem = "strict";
StateDirectory = "pantalaimon-${name}";
};
};
in
{
options.services.pantalaimon-headless.instances = mkOption {
default = { };
type = types.attrsOf (types.submodule (import ./pantalaimon-options.nix));
description = ''
Declarative instance config.
Note: to use pantalaimon interactively, e.g. for a Matrix client which does not
support End-to-end encryption (like <literal>fractal</literal>), refer to the home-manager module.
'';
};
config = mkIf (config.services.pantalaimon-headless.instances != { })
{
systemd.services = mapAttrs' mkPantalaimonService config.services.pantalaimon-headless.instances;
};
meta = {
maintainers = with maintainers; [ jojosch ];
};
}
| Nix | 5 | siddhantk232/nixpkgs | nixos/modules/services/matrix/pantalaimon.nix | [
"MIT"
] |
#***************************************************************************
# _ _ ____ _
# Project ___| | | | _ \| |
# / __| | | | |_) | |
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
# Copyright (C) 1998 - 2021, Daniel Stenberg, <[email protected]>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at https://curl.se/docs/copyright.html.
#
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
# copies of the Software, and permit persons to whom the Software is
# furnished to do so, under the terms of the COPYING file.
#
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
# KIND, either express or implied.
#
#***************************************************************************
AC_DEFUN([CURL_WITH_NSS], [
if test "x$OPT_NSS" != xno; then
ssl_msg=
if test X"$OPT_NSS" != Xno; then
addld=""
addlib=""
addcflags=""
nssprefix=""
version=""
if test "x$OPT_NSS" = "xyes"; then
CURL_CHECK_PKGCONFIG(nss)
if test "$PKGCONFIG" != "no" ; then
addlib=`$PKGCONFIG --libs nss`
addcflags=`$PKGCONFIG --cflags nss`
version=`$PKGCONFIG --modversion nss`
nssprefix=`$PKGCONFIG --variable=prefix nss`
else
dnl Without pkg-config, we check for nss-config
check=`nss-config --version 2>/dev/null`
if test -n "$check"; then
addlib=`nss-config --libs`
addcflags=`nss-config --cflags`
version=`nss-config --version`
nssprefix=`nss-config --prefix`
else
addlib="-lnss3"
addcflags=""
version="unknown"
fi
fi
else
NSS_PCDIR="$OPT_NSS/lib/pkgconfig"
if test -f "$NSS_PCDIR/nss.pc"; then
CURL_CHECK_PKGCONFIG(nss, [$NSS_PCDIR])
if test "$PKGCONFIG" != "no" ; then
addld=`CURL_EXPORT_PCDIR([$NSS_PCDIR]) $PKGCONFIG --libs-only-L nss`
addlib=`CURL_EXPORT_PCDIR([$NSS_PCDIR]) $PKGCONFIG --libs-only-l nss`
addcflags=`CURL_EXPORT_PCDIR([$NSS_PCDIR]) $PKGCONFIG --cflags nss`
version=`CURL_EXPORT_PCDIR([$NSS_PCDIR]) $PKGCONFIG --modversion nss`
nssprefix=`CURL_EXPORT_PCDIR([$NSS_PCDIR]) $PKGCONFIG --variable=prefix nss`
fi
fi
fi
if test -z "$addlib"; then
# Without pkg-config, we'll kludge in some defaults
AC_MSG_WARN([Using hard-wired libraries and compilation flags for NSS.])
addld="-L$OPT_NSS/lib"
addlib="-lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4"
addcflags="-I$OPT_NSS/include"
version="unknown"
nssprefix=$OPT_NSS
fi
CLEANLDFLAGS="$LDFLAGS"
CLEANLIBS="$LIBS"
CLEANCPPFLAGS="$CPPFLAGS"
LDFLAGS="$addld $LDFLAGS"
LIBS="$addlib $LIBS"
if test "$addcflags" != "-I/usr/include"; then
CPPFLAGS="$CPPFLAGS $addcflags"
fi
dnl The function SSL_VersionRangeSet() is needed to enable TLS > 1.0
AC_CHECK_LIB(nss3, SSL_VersionRangeSet,
[
AC_DEFINE(USE_NSS, 1, [if NSS is enabled])
AC_SUBST(USE_NSS, [1])
USE_NSS="yes"
NSS_ENABLED=1
ssl_msg="NSS"
test nss != "$DEFAULT_SSL_BACKEND" || VALID_DEFAULT_SSL_BACKEND=yes
],
[
LDFLAGS="$CLEANLDFLAGS"
LIBS="$CLEANLIBS"
CPPFLAGS="$CLEANCPPFLAGS"
])
if test "x$USE_NSS" = "xyes"; then
AC_MSG_NOTICE([detected NSS version $version])
dnl PK11_CreateManagedGenericObject() was introduced in NSS 3.34 because
dnl PK11_DestroyGenericObject() does not release resources allocated by
dnl PK11_CreateGenericObject() early enough.
AC_CHECK_FUNC(PK11_CreateManagedGenericObject,
[
AC_DEFINE(HAVE_PK11_CREATEMANAGEDGENERICOBJECT, 1,
[if you have the PK11_CreateManagedGenericObject function])
])
dnl needed when linking the curl tool without USE_EXPLICIT_LIB_DEPS
NSS_LIBS=$addlib
AC_SUBST([NSS_LIBS])
dnl when shared libs were found in a path that the run-time
dnl linker doesn't search through, we need to add it to
dnl CURL_LIBRARY_PATH to prevent further configure tests to fail
dnl due to this
if test "x$cross_compiling" != "xyes"; then
CURL_LIBRARY_PATH="$CURL_LIBRARY_PATH:$nssprefix/lib$libsuff"
export CURL_LIBRARY_PATH
AC_MSG_NOTICE([Added $nssprefix/lib$libsuff to CURL_LIBRARY_PATH])
fi
fi dnl NSS found
fi dnl NSS not disabled
test -z "$ssl_msg" || ssl_backends="${ssl_backends:+$ssl_backends, }$ssl_msg"
fi
])
| M4 | 4 | Greg-Muchka/curl | m4/curl-nss.m4 | [
"curl"
] |
1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -24.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -71.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -41.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -5.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -95.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -87.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -17.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -12.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -37.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 -31.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 0.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 0.00 -32.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 1.00 0.00 -39.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 0.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 0.00 -57.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 0.00 -36.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 1.00 0.00 -39.00
1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -24.00
0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -41.00
0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -27.00
0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -67.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -21.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -71.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -15.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -1.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 -77.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 -1.00 -91.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 -1.00 -69.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 -1.00 -57.00
-1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 102.00
0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 168.00
0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 78.00
0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 86.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 156.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 161.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 146.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 136.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 142.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 141.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 137.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 -1.00 0.00 0.00
0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 134.00
| Matlab | 1 | yinrun/LOPDC-Benchmarks | strippacking/matlab/sp-12-17-sqrt.matlab | [
"MIT"
] |
create table pre_rebase (pk varchar(6) primary key) auto_increment=70000;
| SQL | 4 | imtbkcat/tidb-lightning | tests/tidb_rowid/data/rowid.pre_rebase-schema.sql | [
"Apache-2.0"
] |
/**********************************************************************
* Copyright (c) 2018 Pieter Wuille, Greg Maxwell, Gleb Naumenko *
* Distributed under the MIT software license, see the accompanying *
* file LICENSE or http://www.opensource.org/licenses/mit-license.php.*
**********************************************************************/
#ifndef _MINISKETCH_FIELDS_CLMUL_COMMON_IMPL_H_
#define _MINISKETCH_FIELDS_CLMUL_COMMON_IMPL_H_ 1
#include <stdint.h>
#include <immintrin.h>
#include "../int_utils.h"
#include "../lintrans.h"
namespace {
// The memory sanitizer in clang < 11 cannot reason through _mm_clmulepi64_si128 calls.
// Disable memory sanitization in the functions using them for those compilers.
#if defined(__clang__) && (__clang_major__ < 11)
# if defined(__has_feature)
# if __has_feature(memory_sanitizer)
# define NO_SANITIZE_MEMORY __attribute__((no_sanitize("memory")))
# endif
# endif
#endif
#ifndef NO_SANITIZE_MEMORY
# define NO_SANITIZE_MEMORY
#endif
template<typename I, int BITS, I MOD> NO_SANITIZE_MEMORY I MulWithClMulReduce(I a, I b)
{
static constexpr I MASK = Mask<BITS, I>();
const __m128i MOD128 = _mm_cvtsi64_si128(MOD);
__m128i product = _mm_clmulepi64_si128(_mm_cvtsi64_si128((uint64_t)a), _mm_cvtsi64_si128((uint64_t)b), 0x00);
if (BITS <= 32) {
__m128i high1 = _mm_srli_epi64(product, BITS);
__m128i red1 = _mm_clmulepi64_si128(high1, MOD128, 0x00);
__m128i high2 = _mm_srli_epi64(red1, BITS);
__m128i red2 = _mm_clmulepi64_si128(high2, MOD128, 0x00);
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
} else if (BITS == 64) {
__m128i red1 = _mm_clmulepi64_si128(product, MOD128, 0x01);
__m128i red2 = _mm_clmulepi64_si128(red1, MOD128, 0x01);
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2));
} else if ((BITS % 8) == 0) {
__m128i high1 = _mm_srli_si128(product, BITS / 8);
__m128i red1 = _mm_clmulepi64_si128(high1, MOD128, 0x00);
__m128i high2 = _mm_srli_si128(red1, BITS / 8);
__m128i red2 = _mm_clmulepi64_si128(high2, MOD128, 0x00);
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
} else {
__m128i high1 = _mm_or_si128(_mm_srli_epi64(product, BITS), _mm_srli_si128(_mm_slli_epi64(product, 64 - BITS), 8));
__m128i red1 = _mm_clmulepi64_si128(high1, MOD128, 0x00);
if ((uint64_t(MOD) >> (66 - BITS)) == 0) {
__m128i high2 = _mm_srli_epi64(red1, BITS);
__m128i red2 = _mm_clmulepi64_si128(high2, MOD128, 0x00);
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
} else {
__m128i high2 = _mm_or_si128(_mm_srli_epi64(red1, BITS), _mm_srli_si128(_mm_slli_epi64(red1, 64 - BITS), 8));
__m128i red2 = _mm_clmulepi64_si128(high2, MOD128, 0x00);
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
}
}
}
template<typename I, int BITS, int POS> NO_SANITIZE_MEMORY I MulTrinomial(I a, I b)
{
static constexpr I MASK = Mask<BITS, I>();
__m128i product = _mm_clmulepi64_si128(_mm_cvtsi64_si128((uint64_t)a), _mm_cvtsi64_si128((uint64_t)b), 0x00);
if (BITS <= 32) {
__m128i high1 = _mm_srli_epi64(product, BITS);
__m128i red1 = _mm_xor_si128(high1, _mm_slli_epi64(high1, POS));
if (POS == 1) {
return _mm_cvtsi128_si64(_mm_xor_si128(product, red1)) & MASK;
} else {
__m128i high2 = _mm_srli_epi64(red1, BITS);
__m128i red2 = _mm_xor_si128(high2, _mm_slli_epi64(high2, POS));
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
}
} else {
__m128i high1 = _mm_or_si128(_mm_srli_epi64(product, BITS), _mm_srli_si128(_mm_slli_epi64(product, 64 - BITS), 8));
if (BITS + POS <= 66) {
__m128i red1 = _mm_xor_si128(high1, _mm_slli_epi64(high1, POS));
if (POS == 1) {
return _mm_cvtsi128_si64(_mm_xor_si128(product, red1)) & MASK;
} else if (BITS + POS <= 66) {
__m128i high2 = _mm_srli_epi64(red1, BITS);
__m128i red2 = _mm_xor_si128(high2, _mm_slli_epi64(high2, POS));
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
}
} else {
const __m128i MOD128 = _mm_cvtsi64_si128(1 + (((uint64_t)1) << POS));
__m128i red1 = _mm_clmulepi64_si128(high1, MOD128, 0x00);
__m128i high2 = _mm_or_si128(_mm_srli_epi64(red1, BITS), _mm_srli_si128(_mm_slli_epi64(red1, 64 - BITS), 8));
__m128i red2 = _mm_xor_si128(high2, _mm_slli_epi64(high2, POS));
return _mm_cvtsi128_si64(_mm_xor_si128(_mm_xor_si128(product, red1), red2)) & MASK;
}
}
}
/** Implementation of fields that use the SSE clmul intrinsic for multiplication. */
template<typename I, int B, I MOD, I (*MUL)(I, I), typename F, const F* SQR, const F* SQR2, const F* SQR4, const F* SQR8, const F* SQR16, const F* QRT, typename T, const T* LOAD, const T* SAVE> struct GenField
{
typedef BitsInt<I, B> O;
typedef LFSR<O, MOD> L;
static inline constexpr I Sqr1(I a) { return SQR->template Map<O>(a); }
static inline constexpr I Sqr2(I a) { return SQR2->template Map<O>(a); }
static inline constexpr I Sqr4(I a) { return SQR4->template Map<O>(a); }
static inline constexpr I Sqr8(I a) { return SQR8->template Map<O>(a); }
static inline constexpr I Sqr16(I a) { return SQR16->template Map<O>(a); }
public:
typedef I Elem;
inline constexpr int Bits() const { return B; }
inline constexpr Elem Mul2(Elem val) const { return L::Call(val); }
inline Elem Mul(Elem a, Elem b) const { return MUL(a, b); }
class Multiplier
{
Elem m_val;
public:
inline constexpr explicit Multiplier(const GenField&, Elem a) : m_val(a) {}
constexpr Elem operator()(Elem a) const { return MUL(m_val, a); }
};
/** Compute the square of a. */
inline constexpr Elem Sqr(Elem val) const { return SQR->template Map<O>(val); }
/** Compute x such that x^2 + x = a (undefined result if no solution exists). */
inline constexpr Elem Qrt(Elem val) const { return QRT->template Map<O>(val); }
/** Compute the inverse of x1. */
inline Elem Inv(Elem val) const { return InvLadder<I, O, B, MUL, Sqr1, Sqr2, Sqr4, Sqr8, Sqr16>(val); }
/** Generate a random field element. */
Elem FromSeed(uint64_t seed) const {
uint64_t k0 = 0x434c4d554c466c64ull; // "CLMULFld"
uint64_t k1 = seed;
uint64_t count = ((uint64_t)B) << 32;
I ret;
do {
ret = O::Mask(I(SipHash(k0, k1, count++)));
} while(ret == 0);
return LOAD->template Map<O>(ret);
}
Elem Deserialize(BitReader& in) const { return LOAD->template Map<O>(in.Read<B, I>()); }
void Serialize(BitWriter& out, Elem val) const { out.Write<B, I>(SAVE->template Map<O>(val)); }
constexpr Elem FromUint64(uint64_t x) const { return LOAD->template Map<O>(O::Mask(I(x))); }
constexpr uint64_t ToUint64(Elem val) const { return uint64_t(SAVE->template Map<O>(val)); }
};
template<typename I, int B, I MOD, typename F, const F* SQR, const F* SQR2, const F* SQR4, const F* SQR8, const F* SQR16, const F* QRT, typename T, const T* LOAD, const T* SAVE>
using Field = GenField<I, B, MOD, MulWithClMulReduce<I, B, MOD>, F, SQR, SQR2, SQR4, SQR8, SQR16, QRT, T, LOAD, SAVE>;
template<typename I, int B, int POS, typename F, const F* SQR, const F* SQR2, const F* SQR4, const F* SQR8, const F* SQR16, const F* QRT, typename T, const T* LOAD, const T* SAVE>
using FieldTri = GenField<I, B, I(1) + (I(1) << POS), MulTrinomial<I, B, POS>, F, SQR, SQR2, SQR4, SQR8, SQR16, QRT, T, LOAD, SAVE>;
}
#endif
| C | 4 | apokalyzr/bitcoin | src/minisketch/src/fields/clmul_common_impl.h | [
"MIT"
] |
Call Template with parameter:
* No param: <<template-1-param.creole>>
* One param: <<template-1-param.creole This~ is~ first~ parameter>>
* Two params: <<template-1-param.creole First This~ is~ second~ parameter>>
En<<this template does not exist.creole Parm1 Param2 Param3>>d
| Creole | 2 | jquorning/ada-wiki | regtests/files/wiki/template-3.creole | [
"Apache-2.0"
] |
--TEST--
Bug #79145 (openssl memory leak)
--EXTENSIONS--
openssl
--FILE--
<?php
$b = '-----BEGIN PUBLIC KEY-----
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDaFhc31WeskqxwI+Si5R/fZrLK
pJOlABiI3RZfKCHJVrXl3IvcHDFM/BHKUJoSi/ee8GS9iw0G4Z1eCzJdthXxHARh
j85Q5OliVxOdB1LoTOsOmfFf/fdvpU3DsOWsDKlVrL41MHxXorwrwOiys/r/gv2d
C9C4JmhTOjBVAK8SewIDAQAC
-----END PUBLIC KEY-----';
$a = openssl_get_publickey($b);
@openssl_free_key($a);
$start = memory_get_usage(true);
$a = openssl_get_publickey($b);
@openssl_free_key($a);
$end = memory_get_usage(true);
var_dump($end == $start);
?>
--EXPECT--
bool(true)
| PHP | 4 | NathanFreeman/php-src | ext/openssl/tests/bug79145.phpt | [
"PHP-3.01"
] |
FUNCTION = 1
| Logos | 0 | medismailben/llvm-project | llvm/test/MC/AsmParser/Inputs/function.x | [
"Apache-2.0"
] |
{"fnlwgt": [189778.36651208502, 105549.97769702224], "education-num": [10.0806793403151, 2.5727203320673877], "capital-loss": [87.303829734959, 402.9602186489998], "age": [38.58164675532078, 13.640432553581341], "capital-gain": [1077.6488437087312, 7385.292084840338], "hours-per-week": [40.437455852092995, 12.347428681731843]} | JSON | 1 | deepneuralmachine/google-research | group_agnostic_fairness/data/toy_data/mean_std.json | [
"Apache-2.0"
] |
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:math="http://exslt.org/math" exclude-result-prefixes="math">
<xsl:output indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="/">
<out>
<test1>
<xsl:value-of select="math:constant('PI', 10)"/>
</test1>
<test2>
<xsl:value-of select="math:constant('E', 100)"/>
</test2>
<test3>
<xsl:value-of select="math:constant('SQRRT2', 10)"/>
</test3>
<test4>
<xsl:value-of select="math:constant('LN2', 3)"/>
</test4>
<test5>
<xsl:value-of select="math:constant('LN10', 3)"/>
</test5>
<test6>
<xsl:value-of select="math:constant('LOG2E', 4)"/>
</test6>
<test7>
<xsl:value-of select="math:constant('SQRT1_2', 5)"/>
</test7>
<test8>
<xsl:value-of select="math:constant('PI', -1)"/>
</test8>
<test9>
<xsl:value-of select="math:constant('PI', 22 div 0)"/>
</test9>
<test10>
<xsl:value-of select="math:constant('PI', -22 div 0)"/>
</test10>
</out>
</xsl:template>
</xsl:stylesheet>
| XSLT | 3 | pyracanda/runtime | src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltScenarios/EXslt/math-constant.xsl | [
"MIT"
] |
Import mojo
Import brl.socket
Class TcpEchoServer Implements IOnAcceptComplete
Method New( port:Int )
_socket=New Socket( "server" )
If Not _socket.Bind( "",port ) Error "Bind failed"
_socket.AcceptAsync( Self )
End
Private
Field _socket:Socket
Method OnAcceptComplete:Void( socket:Socket,source:Socket )
If Not socket Error "Accept error"
Print "TcpEchoServer: Accepted client connection"
Local client:=New TcpEchoServerClient( socket )
_socket.AcceptAsync( Self )
End
End
Class TcpEchoServerClient Implements IOnSendComplete,IOnReceiveComplete
Method New( socket:Socket )
_socket=socket
_socket.ReceiveAsync _data,0,_data.Length,Self
End
Private
Field _socket:Socket
Field _data:=New DataBuffer( 1024 )
Method OnReceiveComplete:Void( data:DataBuffer,offset:Int,count:Int,source:Socket )
If Not count
Print "TcpEchoServer: Closing client connection"
_socket.Close()
Return
Endif
_socket.SendAsync data,offset,count,Self
End
Method OnSendComplete:Void( data:DataBuffer,offset:Int,count:Int,source:Socket )
_socket.ReceiveAsync _data,0,_data.Length,Self
End
End
Class MyApp Extends App Implements IOnConnectComplete,IOnSendComplete,IOnReceiveComplete
Field _server:TcpEchoServer
Field _socket:Socket
Field _data:=New DataBuffer( 1024 )
Field _strs:=New StringList
Method OnCreate()
_strs.AddLast "Hello"
_strs.AddLast "World!"
_strs.AddLast "This is a test"
_strs.AddLast "Of a"
_strs.AddLast "TCP EchoServer"
_server=New TcpEchoServer( 12345 )
_socket=New Socket( "stream" )
_socket.ConnectAsync "localhost",12345,Self
SetUpdateRate 60
End
Method OnUpdate()
UpdateAsyncEvents
End
Method OnRender()
Cls
DrawText "Hello World",0,0
End
Method SendMore:Void()
If _strs.IsEmpty()
Print "All done!"
_socket.Close()
Return
Endif
Local n:=_data.PokeString( 0,_strs.RemoveFirst() )
_socket.SendAsync _data,0,n,Self
End
Method OnConnectComplete:Void( connected:Bool,source:Socket )
If Not connected Error "Error connecting"
SendMore
End
Method OnSendComplete:Void( data:DataBuffer,offset:Int,count:Int,source:Socket )
_socket.ReceiveAsync _data,0,_data.Length,Self
End
Method OnReceiveComplete:Void( data:DataBuffer,offset:Int,count:Int,source:Socket )
Print "Received response:"+data.PeekString( offset,count )
SendMore
End
End
Function Main()
New MyApp
End | Monkey | 5 | blitz-research/monkey | bananas/mak/echoserver_tcp/echoserver_tcp.monkey | [
"Zlib"
] |
Read( "merge_sort.gi" );
list := List( [ 1 .. 100 ], i -> Random( [ 1 .. 50 ] ) );
list := merge_sort( list );
IsSortedList( list );
| GAP | 3 | Mynogs/Algorithm-Implementations | Merge_Sort/GAP/sebasguts/merge_sort_example.gi | [
"MIT"
] |
macro_rules! add1 {
($e:expr) => ({
let a = 1 + $e;
let b = $e + 1;
a + b - 1
})
}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/imports/import-crate-with-invalid-spans/auxiliary/crate_with_invalid_spans_macros.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
grammar t057autoAST44;
options {language=JavaScript;output=AST;}
a returns [result] : ID b {
/* @todo */
/* $result = $b.i.toString() + '\n'; */
} ;
b returns [i] : INT {$i=parseInt($INT.text);} ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;
| G-code | 3 | DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials | java/java2py/antlr-3.1.3/runtime/JavaScript/tests/functional/t057autoAST44.g | [
"Apache-2.0"
] |
# bad: re-used BNode label after GRAPH
# $Id: syn-bad-GRAPH-breaks-BGP.rq,v 1.1 2007/02/15 15:14:31 eric Exp $
PREFIX : <http://example.org/>
SELECT *
WHERE
{
_:a ?p ?v . GRAPH ?g { ?s ?p ?v } _:a ?q 1
}
| SPARQL | 2 | yanaspaula/rdf4j | testsuites/sparql/src/main/resources/testcases-sparql-1.0-w3c/data-r2/syntax-sparql4/syn-bad-GRAPH-breaks-BGP.rq | [
"BSD-3-Clause"
] |
/*--------------------------------------------------*/
/* SAS Programming for R Users - code for exercises */
/* Copyright 2016 SAS Institute Inc. */
/*--------------------------------------------------*/
/*SP4R06d02*/
/*Part A*/
proc print data=sp4r.paper;
run;
/*Part B*/
proc sgplot data=sp4r.paper;
reg x=amount y=strength / legendlabel="Linear";
reg x=amount y=strength / degree=2 legendlabel="Quadratic";
reg x=amount y=strength / degree=3 legendlabel="Cubic";
title 'Polynomial Plot';
run;
title;
/*Part C*/
data sp4r.paper;
set sp4r.paper;
amount_sq = amount*amount;
amount_cub = amount*amount*amount;
run;
proc reg data=sp4r.paper;
model strength = amount amount_sq amount_cub;
run;quit;
| SAS | 4 | snowdj/sas-prog-for-r-users | code/SP4R06d02.sas | [
"CC-BY-4.0"
] |
if($psculture -eq 'en-US')
{
ConvertFrom-StringData @'
string1=string1 for en-US in if
string2=string2 for en-US in if
'@
} | PowerShell | 3 | Jellyfrog/PowerShell | test/powershell/Language/Scripting/en-US/if.psd1 | [
"MIT"
] |
/*--------------------------------------------------*/
/* SAS Programming for R Users - code for exercises */
/* Copyright 2016 SAS Institute Inc. */
/*--------------------------------------------------*/
/*SP4R07s07*/
/*Part A*/
proc iml;
start mySample(n,min,max);
x = randfun(n,"Uniform",min,max);
return(x);
finish;
/*Part B*/
n = 30;
min = 5;
max = 10;
call randseed(802);
reps = 1000;
vec = j(reps,1,.);
/*Part C*/
do i=1 to reps;
vec[i] = mean(mySample(n,min,max));
end;
/*Part D*/
create sp4r.simulation var {vec};
append;
close sp4r.simulation;
/*Part E*/
submit;
ods select basicmeasures histogram;
proc univariate data=sp4r.simulation;
var vec;
histogram vec;
run;
endsubmit;
quit;
| SAS | 4 | snowdj/sas-prog-for-r-users | code/SP4R07s07.sas | [
"CC-BY-4.0"
] |
<!DOCTYPE html>
<html lang="en">
<!-- all v2 users who haven't used the app in a while will be taken here once they click update, since this is where the old login page used to be. -->
<head><script>window.location.replace("/login");</script></head>
</body></html> | Kit | 2 | pws1453/web-client | source/signin.kit | [
"MIT"
] |
msgid "item"
msgid_plural "items"
msgstr[0] "Produkt"
msgstr[1] "Produkte"
| Gettext Catalog | 2 | donsbot/hhvm | hphp/test/zend/good/ext/gettext/tests/locale/en/LC_MESSAGES/dngettextTest.po | [
"PHP-3.01",
"Zend-2.0"
] |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon"));
var _jsxRuntime = require("react/jsx-runtime");
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M21.9 21.9 2.1 2.1.69 3.51l1.55 1.55c-.15.28-.23.6-.23.94L2 18c0 1.11.89 2 2 2h13.17l3.31 3.31 1.42-1.41zM4 12V8h1.17l4 4H4zm2.83-8H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L14.83 12H20V8h-9.17l-4-4z"
}), 'CreditCardOff');
exports.default = _default; | JavaScript | 3 | good-gym/material-ui | packages/material-ui-icons/lib/CreditCardOff.js | [
"MIT"
] |
// (c) Copyright 1995-2015 Xilinx, Inc. All rights reserved.
//
// This file contains confidential and proprietary information
// of Xilinx, Inc. and is protected under U.S. and
// international copyright and other intellectual property
// laws.
//
// DISCLAIMER
// This disclaimer is not a license and does not grant any
// rights to the materials distributed herewith. Except as
// otherwise provided in a valid license issued to you by
// Xilinx, and to the maximum extent permitted by applicable
// law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
// WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
// AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
// BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
// INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
// (2) Xilinx shall not be liable (whether in contract or tort,
// including negligence, or under any other theory of
// liability) for any loss or damage of any kind or nature
// related to, arising under or in connection with these
// materials, including for any direct, or any indirect,
// special, incidental, or consequential loss or damage
// (including loss of data, profits, goodwill, or any type of
// loss or damage suffered as a result of any action brought
// by a third party) even if such damage or loss was
// reasonably foreseeable or Xilinx had been advised of the
// possibility of the same.
//
// CRITICAL APPLICATIONS
// Xilinx products are not designed or intended to be fail-
// safe, or for use in any application requiring fail-safe
// performance, such as life-support or safety devices or
// systems, Class III medical devices, nuclear facilities,
// applications related to the deployment of airbags, or any
// other applications that could lead to death, personal
// injury, or severe property or environmental damage
// (individually and collectively, "Critical
// Applications"). Customer assumes the sole risk and
// liability of any use of Xilinx products in Critical
// Applications, subject only to applicable laws and
// regulations governing limitations on product liability.
//
// THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
// PART OF THIS FILE AT ALL TIMES.
//
// DO NOT MODIFY THIS FILE.
// IP VLNV: xilinx.com:ip:processing_system7:5.5
// IP Revision: 1
// The following must be inserted into your Verilog file for this
// core to be instantiated. Change the instance name and port connections
// (in parentheses) to your own signal names.
//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
design_1_processing_system7_0_0 your_instance_name (
.ENET0_PTP_DELAY_REQ_RX(ENET0_PTP_DELAY_REQ_RX), // output wire ENET0_PTP_DELAY_REQ_RX
.ENET0_PTP_DELAY_REQ_TX(ENET0_PTP_DELAY_REQ_TX), // output wire ENET0_PTP_DELAY_REQ_TX
.ENET0_PTP_PDELAY_REQ_RX(ENET0_PTP_PDELAY_REQ_RX), // output wire ENET0_PTP_PDELAY_REQ_RX
.ENET0_PTP_PDELAY_REQ_TX(ENET0_PTP_PDELAY_REQ_TX), // output wire ENET0_PTP_PDELAY_REQ_TX
.ENET0_PTP_PDELAY_RESP_RX(ENET0_PTP_PDELAY_RESP_RX), // output wire ENET0_PTP_PDELAY_RESP_RX
.ENET0_PTP_PDELAY_RESP_TX(ENET0_PTP_PDELAY_RESP_TX), // output wire ENET0_PTP_PDELAY_RESP_TX
.ENET0_PTP_SYNC_FRAME_RX(ENET0_PTP_SYNC_FRAME_RX), // output wire ENET0_PTP_SYNC_FRAME_RX
.ENET0_PTP_SYNC_FRAME_TX(ENET0_PTP_SYNC_FRAME_TX), // output wire ENET0_PTP_SYNC_FRAME_TX
.ENET0_SOF_RX(ENET0_SOF_RX), // output wire ENET0_SOF_RX
.ENET0_SOF_TX(ENET0_SOF_TX), // output wire ENET0_SOF_TX
.TTC0_WAVE0_OUT(TTC0_WAVE0_OUT), // output wire TTC0_WAVE0_OUT
.TTC0_WAVE1_OUT(TTC0_WAVE1_OUT), // output wire TTC0_WAVE1_OUT
.TTC0_WAVE2_OUT(TTC0_WAVE2_OUT), // output wire TTC0_WAVE2_OUT
.USB0_PORT_INDCTL(USB0_PORT_INDCTL), // output wire [1 : 0] USB0_PORT_INDCTL
.USB0_VBUS_PWRSELECT(USB0_VBUS_PWRSELECT), // output wire USB0_VBUS_PWRSELECT
.USB0_VBUS_PWRFAULT(USB0_VBUS_PWRFAULT), // input wire USB0_VBUS_PWRFAULT
.M_AXI_GP0_ARVALID(M_AXI_GP0_ARVALID), // output wire M_AXI_GP0_ARVALID
.M_AXI_GP0_AWVALID(M_AXI_GP0_AWVALID), // output wire M_AXI_GP0_AWVALID
.M_AXI_GP0_BREADY(M_AXI_GP0_BREADY), // output wire M_AXI_GP0_BREADY
.M_AXI_GP0_RREADY(M_AXI_GP0_RREADY), // output wire M_AXI_GP0_RREADY
.M_AXI_GP0_WLAST(M_AXI_GP0_WLAST), // output wire M_AXI_GP0_WLAST
.M_AXI_GP0_WVALID(M_AXI_GP0_WVALID), // output wire M_AXI_GP0_WVALID
.M_AXI_GP0_ARID(M_AXI_GP0_ARID), // output wire [11 : 0] M_AXI_GP0_ARID
.M_AXI_GP0_AWID(M_AXI_GP0_AWID), // output wire [11 : 0] M_AXI_GP0_AWID
.M_AXI_GP0_WID(M_AXI_GP0_WID), // output wire [11 : 0] M_AXI_GP0_WID
.M_AXI_GP0_ARBURST(M_AXI_GP0_ARBURST), // output wire [1 : 0] M_AXI_GP0_ARBURST
.M_AXI_GP0_ARLOCK(M_AXI_GP0_ARLOCK), // output wire [1 : 0] M_AXI_GP0_ARLOCK
.M_AXI_GP0_ARSIZE(M_AXI_GP0_ARSIZE), // output wire [2 : 0] M_AXI_GP0_ARSIZE
.M_AXI_GP0_AWBURST(M_AXI_GP0_AWBURST), // output wire [1 : 0] M_AXI_GP0_AWBURST
.M_AXI_GP0_AWLOCK(M_AXI_GP0_AWLOCK), // output wire [1 : 0] M_AXI_GP0_AWLOCK
.M_AXI_GP0_AWSIZE(M_AXI_GP0_AWSIZE), // output wire [2 : 0] M_AXI_GP0_AWSIZE
.M_AXI_GP0_ARPROT(M_AXI_GP0_ARPROT), // output wire [2 : 0] M_AXI_GP0_ARPROT
.M_AXI_GP0_AWPROT(M_AXI_GP0_AWPROT), // output wire [2 : 0] M_AXI_GP0_AWPROT
.M_AXI_GP0_ARADDR(M_AXI_GP0_ARADDR), // output wire [31 : 0] M_AXI_GP0_ARADDR
.M_AXI_GP0_AWADDR(M_AXI_GP0_AWADDR), // output wire [31 : 0] M_AXI_GP0_AWADDR
.M_AXI_GP0_WDATA(M_AXI_GP0_WDATA), // output wire [31 : 0] M_AXI_GP0_WDATA
.M_AXI_GP0_ARCACHE(M_AXI_GP0_ARCACHE), // output wire [3 : 0] M_AXI_GP0_ARCACHE
.M_AXI_GP0_ARLEN(M_AXI_GP0_ARLEN), // output wire [3 : 0] M_AXI_GP0_ARLEN
.M_AXI_GP0_ARQOS(M_AXI_GP0_ARQOS), // output wire [3 : 0] M_AXI_GP0_ARQOS
.M_AXI_GP0_AWCACHE(M_AXI_GP0_AWCACHE), // output wire [3 : 0] M_AXI_GP0_AWCACHE
.M_AXI_GP0_AWLEN(M_AXI_GP0_AWLEN), // output wire [3 : 0] M_AXI_GP0_AWLEN
.M_AXI_GP0_AWQOS(M_AXI_GP0_AWQOS), // output wire [3 : 0] M_AXI_GP0_AWQOS
.M_AXI_GP0_WSTRB(M_AXI_GP0_WSTRB), // output wire [3 : 0] M_AXI_GP0_WSTRB
.M_AXI_GP0_ACLK(M_AXI_GP0_ACLK), // input wire M_AXI_GP0_ACLK
.M_AXI_GP0_ARREADY(M_AXI_GP0_ARREADY), // input wire M_AXI_GP0_ARREADY
.M_AXI_GP0_AWREADY(M_AXI_GP0_AWREADY), // input wire M_AXI_GP0_AWREADY
.M_AXI_GP0_BVALID(M_AXI_GP0_BVALID), // input wire M_AXI_GP0_BVALID
.M_AXI_GP0_RLAST(M_AXI_GP0_RLAST), // input wire M_AXI_GP0_RLAST
.M_AXI_GP0_RVALID(M_AXI_GP0_RVALID), // input wire M_AXI_GP0_RVALID
.M_AXI_GP0_WREADY(M_AXI_GP0_WREADY), // input wire M_AXI_GP0_WREADY
.M_AXI_GP0_BID(M_AXI_GP0_BID), // input wire [11 : 0] M_AXI_GP0_BID
.M_AXI_GP0_RID(M_AXI_GP0_RID), // input wire [11 : 0] M_AXI_GP0_RID
.M_AXI_GP0_BRESP(M_AXI_GP0_BRESP), // input wire [1 : 0] M_AXI_GP0_BRESP
.M_AXI_GP0_RRESP(M_AXI_GP0_RRESP), // input wire [1 : 0] M_AXI_GP0_RRESP
.M_AXI_GP0_RDATA(M_AXI_GP0_RDATA), // input wire [31 : 0] M_AXI_GP0_RDATA
.M_AXI_GP1_ARVALID(M_AXI_GP1_ARVALID), // output wire M_AXI_GP1_ARVALID
.M_AXI_GP1_AWVALID(M_AXI_GP1_AWVALID), // output wire M_AXI_GP1_AWVALID
.M_AXI_GP1_BREADY(M_AXI_GP1_BREADY), // output wire M_AXI_GP1_BREADY
.M_AXI_GP1_RREADY(M_AXI_GP1_RREADY), // output wire M_AXI_GP1_RREADY
.M_AXI_GP1_WLAST(M_AXI_GP1_WLAST), // output wire M_AXI_GP1_WLAST
.M_AXI_GP1_WVALID(M_AXI_GP1_WVALID), // output wire M_AXI_GP1_WVALID
.M_AXI_GP1_ARID(M_AXI_GP1_ARID), // output wire [11 : 0] M_AXI_GP1_ARID
.M_AXI_GP1_AWID(M_AXI_GP1_AWID), // output wire [11 : 0] M_AXI_GP1_AWID
.M_AXI_GP1_WID(M_AXI_GP1_WID), // output wire [11 : 0] M_AXI_GP1_WID
.M_AXI_GP1_ARBURST(M_AXI_GP1_ARBURST), // output wire [1 : 0] M_AXI_GP1_ARBURST
.M_AXI_GP1_ARLOCK(M_AXI_GP1_ARLOCK), // output wire [1 : 0] M_AXI_GP1_ARLOCK
.M_AXI_GP1_ARSIZE(M_AXI_GP1_ARSIZE), // output wire [2 : 0] M_AXI_GP1_ARSIZE
.M_AXI_GP1_AWBURST(M_AXI_GP1_AWBURST), // output wire [1 : 0] M_AXI_GP1_AWBURST
.M_AXI_GP1_AWLOCK(M_AXI_GP1_AWLOCK), // output wire [1 : 0] M_AXI_GP1_AWLOCK
.M_AXI_GP1_AWSIZE(M_AXI_GP1_AWSIZE), // output wire [2 : 0] M_AXI_GP1_AWSIZE
.M_AXI_GP1_ARPROT(M_AXI_GP1_ARPROT), // output wire [2 : 0] M_AXI_GP1_ARPROT
.M_AXI_GP1_AWPROT(M_AXI_GP1_AWPROT), // output wire [2 : 0] M_AXI_GP1_AWPROT
.M_AXI_GP1_ARADDR(M_AXI_GP1_ARADDR), // output wire [31 : 0] M_AXI_GP1_ARADDR
.M_AXI_GP1_AWADDR(M_AXI_GP1_AWADDR), // output wire [31 : 0] M_AXI_GP1_AWADDR
.M_AXI_GP1_WDATA(M_AXI_GP1_WDATA), // output wire [31 : 0] M_AXI_GP1_WDATA
.M_AXI_GP1_ARCACHE(M_AXI_GP1_ARCACHE), // output wire [3 : 0] M_AXI_GP1_ARCACHE
.M_AXI_GP1_ARLEN(M_AXI_GP1_ARLEN), // output wire [3 : 0] M_AXI_GP1_ARLEN
.M_AXI_GP1_ARQOS(M_AXI_GP1_ARQOS), // output wire [3 : 0] M_AXI_GP1_ARQOS
.M_AXI_GP1_AWCACHE(M_AXI_GP1_AWCACHE), // output wire [3 : 0] M_AXI_GP1_AWCACHE
.M_AXI_GP1_AWLEN(M_AXI_GP1_AWLEN), // output wire [3 : 0] M_AXI_GP1_AWLEN
.M_AXI_GP1_AWQOS(M_AXI_GP1_AWQOS), // output wire [3 : 0] M_AXI_GP1_AWQOS
.M_AXI_GP1_WSTRB(M_AXI_GP1_WSTRB), // output wire [3 : 0] M_AXI_GP1_WSTRB
.M_AXI_GP1_ACLK(M_AXI_GP1_ACLK), // input wire M_AXI_GP1_ACLK
.M_AXI_GP1_ARREADY(M_AXI_GP1_ARREADY), // input wire M_AXI_GP1_ARREADY
.M_AXI_GP1_AWREADY(M_AXI_GP1_AWREADY), // input wire M_AXI_GP1_AWREADY
.M_AXI_GP1_BVALID(M_AXI_GP1_BVALID), // input wire M_AXI_GP1_BVALID
.M_AXI_GP1_RLAST(M_AXI_GP1_RLAST), // input wire M_AXI_GP1_RLAST
.M_AXI_GP1_RVALID(M_AXI_GP1_RVALID), // input wire M_AXI_GP1_RVALID
.M_AXI_GP1_WREADY(M_AXI_GP1_WREADY), // input wire M_AXI_GP1_WREADY
.M_AXI_GP1_BID(M_AXI_GP1_BID), // input wire [11 : 0] M_AXI_GP1_BID
.M_AXI_GP1_RID(M_AXI_GP1_RID), // input wire [11 : 0] M_AXI_GP1_RID
.M_AXI_GP1_BRESP(M_AXI_GP1_BRESP), // input wire [1 : 0] M_AXI_GP1_BRESP
.M_AXI_GP1_RRESP(M_AXI_GP1_RRESP), // input wire [1 : 0] M_AXI_GP1_RRESP
.M_AXI_GP1_RDATA(M_AXI_GP1_RDATA), // input wire [31 : 0] M_AXI_GP1_RDATA
.FCLK_CLK0(FCLK_CLK0), // output wire FCLK_CLK0
.FCLK_RESET0_N(FCLK_RESET0_N), // output wire FCLK_RESET0_N
.MIO(MIO), // inout wire [53 : 0] MIO
.DDR_CAS_n(DDR_CAS_n), // inout wire DDR_CAS_n
.DDR_CKE(DDR_CKE), // inout wire DDR_CKE
.DDR_Clk_n(DDR_Clk_n), // inout wire DDR_Clk_n
.DDR_Clk(DDR_Clk), // inout wire DDR_Clk
.DDR_CS_n(DDR_CS_n), // inout wire DDR_CS_n
.DDR_DRSTB(DDR_DRSTB), // inout wire DDR_DRSTB
.DDR_ODT(DDR_ODT), // inout wire DDR_ODT
.DDR_RAS_n(DDR_RAS_n), // inout wire DDR_RAS_n
.DDR_WEB(DDR_WEB), // inout wire DDR_WEB
.DDR_BankAddr(DDR_BankAddr), // inout wire [2 : 0] DDR_BankAddr
.DDR_Addr(DDR_Addr), // inout wire [14 : 0] DDR_Addr
.DDR_VRN(DDR_VRN), // inout wire DDR_VRN
.DDR_VRP(DDR_VRP), // inout wire DDR_VRP
.DDR_DM(DDR_DM), // inout wire [3 : 0] DDR_DM
.DDR_DQ(DDR_DQ), // inout wire [31 : 0] DDR_DQ
.DDR_DQS_n(DDR_DQS_n), // inout wire [3 : 0] DDR_DQS_n
.DDR_DQS(DDR_DQS), // inout wire [3 : 0] DDR_DQS
.PS_SRSTB(PS_SRSTB), // inout wire PS_SRSTB
.PS_CLK(PS_CLK), // inout wire PS_CLK
.PS_PORB(PS_PORB) // inout wire PS_PORB
);
// INST_TAG_END ------ End INSTANTIATION Template ---------
// You must compile the wrapper file design_1_processing_system7_0_0.v when simulating
// the core, design_1_processing_system7_0_0. When compiling the wrapper file, be sure to
// reference the Verilog simulation library.
| Verilog | 4 | williambong/Vivado | Zynq/ZynqAXIMGP/ZynqAXIMGP.srcs/sources_1/bd/design_1/ip/design_1_processing_system7_0_0/design_1_processing_system7_0_0.veo | [
"MIT"
] |
# Copyright 1999-2020 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils git-r3
DESCRIPTION="A binding generator for the rust language"
HOMEPAGE="https://github.com/servo/rust-bindgen"
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE=""
EGIT_REPO_URI="https://github.com/servo/rust-bindgen.git"
DEPEND=">=virtual/rust-999
>=sys-devel/clang-3.4.2-r100:*
"
RDEPEND="${DEPEND}"
src_configure() {
true
}
src_compile() {
cargo build --release
}
src_install() {
install -D -m 755 "${FILESDIR}/rust-bindgen" "${D}/usr/bin/rust-bindgen"
install -D -m 755 target/release/bindgen "${D}/usr/bin/rust-bindgen-9999"
install -D -t "${D}/usr/lib" target/release/libbindgen*
}
| Gentoo Ebuild | 4 | gentoo/gentoo-rust | dev-rust/rust-bindgen/rust-bindgen-9999.ebuild | [
"BSD-3-Clause"
] |
import "std/collections"
import "std/string"
use collections.join
use collections.map
use string.contains
use string.replace
interface Writer {
write(data)
}
class fileWriter {
let cfile
let delimiter = ','
let quote = '"'
fn init(f) {
if ! f implements Writer {
throw "f must be a Writer"
}
this.cfile = f
}
fn writeRecord(record) {
this.cfile.write(join(",", map(record, this.csvQuote)))
this.cfile.write("\n")
}
fn csvQuote(item) {
item = toString(item)
if contains(item, this.quote) {
item = replace(item, this.quote, this.quote+this.quote, -1)
return this.quote + item + this.quote
}
if contains(item, this.delimiter) {
return this.quote + item + this.quote
}
item
}
}
return {
"fileWriter": fileWriter,
"Writer": Writer,
}
| Inform 7 | 4 | lfkeitel/nitrogen | nitrogen/std/encoding/csv/encode.ni | [
"BSD-3-Clause"
] |
/*
* Copyright (c) 2021, Andreas Kling <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Noncopyable.h>
#include <AK/NonnullRefPtr.h>
#include <LibWeb/Forward.h>
namespace Web::DOM {
class DocumentLoadEventDelayer {
AK_MAKE_NONMOVABLE(DocumentLoadEventDelayer);
AK_MAKE_NONCOPYABLE(DocumentLoadEventDelayer);
public:
explicit DocumentLoadEventDelayer(Document&);
~DocumentLoadEventDelayer();
private:
NonnullRefPtr<Document> m_document;
};
}
| C | 4 | r00ster91/serenity | Userland/Libraries/LibWeb/DOM/DocumentLoadEventDelayer.h | [
"BSD-2-Clause"
] |
init python:
# a change in stats or todo should always automatically trigger the showing of the stats screen
CHANGE_DIRECTION_INC = 'inc'
CHANGE_DIRECTION_DEC = 'dec'
class PlayerStats():
def __init__(self, all_skills):
# all_skills is defined in variables.rpy
# map string names to stats
# DO NOT TRANSLATE THESE TWO
self.player_stats_map = {
'Sanity': 100,
'CS Knowledge': 0,
}
# these are translated as defined in variables.rpy
self.subcategory_stats_map = {
stats_name: 0 for stats_name in all_skills
}
def set_stats(self, stats_name, val):
# keep between 0 and 100
clamped_val = min(100, max(0, val))
self.player_stats_map[stats_name] = clamped_val
clamped_val_str = str(clamped_val)
renpy.notify(stats_name + _(' is set to ') + clamped_val_str)
def change_stats(self, stats_name, val):
# keep between 0 and 100
if stats_name in self.player_stats_map:
map_pointer = self.player_stats_map
elif stats_name in self.subcategory_stats_map:
map_pointer = self.subcategory_stats_map
new_val = map_pointer[stats_name] + val
clamped_val = min(100, max(0, new_val))
map_pointer[stats_name] = clamped_val
change_direction = None
if val > 0:
change_direction = CHANGE_DIRECTION_INC
val_str = str(val)
renpy.sound.play('audio/sfx/stats_change_boop.wav')
if stats_name in self.subcategory_stats_map: # skill name + the word `knowledge`
renpy.notify(stats_name + _(' knowledge increased by ') + val_str)
else: # just plain string `Sanity` or `CS Knowledge`
renpy.notify(stats_name + _(' increased by ') + val_str)
elif val < 0:
change_direction = CHANGE_DIRECTION_DEC
val_str = str(-val)
renpy.sound.play('audio/sfx/stats_change_buzz.wav')
if stats_name in self.subcategory_stats_map:
renpy.notify(stats_name + _(' knowledge decreased by ') + val_str)
else:
renpy.notify(stats_name + _(' decreased by ') + val_str)
renpy.show_screen('player_stats_todo_screen',
_layer='transient', changed_stats=stats_name, change_direction=change_direction)
if stats_name in self.subcategory_stats_map:
# check if max out
if self.subcategory_stats_map[stats_name] == 100 and \
not plot_stats_full in persistent.achievements:
persistent.achievements.add(plot_stats_full)
renpy.call_screen('confirm_and_share_screen',
title=plot_stats_full, tweet_content_url=all_tweet_map[plot_stats_full])
self.compute_cs_knowledge()
def change_stats_random(self, stats_name, min_val, max_val):
# renpy.random.randint([min], [max]) both ends inclusive
val = renpy.random.randint(min_val, max_val)
self.change_stats(stats_name, val)
def is_sanity_low(self):
return self.player_stats_map['Sanity'] < 50
def compute_cs_knowledge(self):
# total
val = sum(self.subcategory_stats_map.values())
# check if max out
if val == 100 * len(self.subcategory_stats_map) and \
not plot_stats_all in persistent.achievements:
persistent.achievements.add(plot_stats_all)
renpy.call_screen('confirm_and_share_screen',
title=plot_stats_all, tweet_content_url=all_tweet_map[plot_stats_all])
# take average
val /= float(len(self.subcategory_stats_map))
# round to int
val = int(round(val))
clamped_val = min(100, max(0, val))
self.player_stats_map['CS Knowledge'] = clamped_val
class ToDoList():
def __init__(self):
self.incomplete = []
self.completed = []
def add_todo(self, todo):
self.incomplete.append(todo)
if not renpy.get_screen('player_stats_todo_screen', layer='transient'):
renpy.show_screen('player_stats_todo_screen', _layer='transient', show_todo=True)
if not renpy.sound.is_playing():
renpy.sound.play('audio/sfx/smartphone_typing.wav')
def complete_todo(self, todo):
if todo in self.incomplete:
self.incomplete.remove(todo)
self.completed.append(todo)
if not renpy.get_screen('player_stats_todo_screen', layer='transient'):
renpy.show_screen('player_stats_todo_screen', _layer='transient', show_todo=True)
if not renpy.sound.is_playing():
renpy.sound.play('audio/sfx/todo_complete.wav')
def get_stats_change_direction_icon(stats, changed_stats, change_direction):
if stats == changed_stats:
if change_direction == CHANGE_DIRECTION_INC:
return '{icon=icon-chevrons-up}'
elif change_direction == CHANGE_DIRECTION_DEC:
return '{icon=icon-chevrons-down}'
return ''
transform alpha_dissolve:
alpha 0.0
linear 0.5 alpha 1.0
screen player_stats_todo_screen(show_todo=False, changed_stats=None, change_direction=None):
## Ensure this appears on top of other screens.
# zorder 100
on "show" action With(dissolve)
on "hide" action With(dissolve)
default show_todo_local = show_todo
frame:
# center of screen
xalign 0.5
yalign 0.25
xpadding 30
ypadding 30
background white80
has vbox
spacing 10
hbox:
spacing 30
xalign 0.5
style_prefix "radio"
textbutton _("Show Stats"):
action ToggleScreenVariable(name='show_todo_local', true_value=False, false_value=True)
textbutton _("Show To-Do"):
action [
SensitiveIf(todo_unlocked),
ToggleScreenVariable(name='show_todo_local', true_value=True, false_value=False)
]
viewport:
xsize 620
ymaximum 550
child_size (None, 4000)
scrollbars 'vertical'
spacing 5
draggable True
mousewheel True
arrowkeys True
vscrollbar_xsize 5
vscrollbar_unscrollable "hide"
if show_todo_local:
use todo_screen()
else: # show stats by default
use player_stats_screen(changed_stats, change_direction)
screen player_stats_screen(changed_stats, change_direction):
python:
num_rows = 1 # Sanity
if stats_knowledge_unlocked:
num_rows += 1
if stats_subcategory_unlocked:
num_rows += len(all_skills)
grid 3 num_rows:
xspacing 10
yspacing 5
# Sanity
$ sanity = player_stats.player_stats_map['Sanity']
text _('{icon=icon-zap} Sanity') color gui.accent_color
bar value sanity range 100 xalign 0.5 yalign 0.9 xmaximum 200 at alpha_dissolve
text str(sanity) + ' ' + get_stats_change_direction_icon('Sanity',changed_stats, change_direction)
# CS Knowledge
if stats_knowledge_unlocked:
$ cs_knolwedge = player_stats.player_stats_map['CS Knowledge']
text _('{icon=icon-terminal} CS Knowledge') color gui.accent_color
bar value cs_knolwedge range 100 xalign 0.5 yalign 0.9 xmaximum 200 at alpha_dissolve
text str(cs_knolwedge) + ' ' + get_stats_change_direction_icon('CS Knowledge',changed_stats, change_direction)
# Subcategory CS Stats
if stats_subcategory_unlocked:
for skill in all_skills:
$ val = player_stats.subcategory_stats_map[skill]
text " {icon=icon-code} [skill!t]" color gui.accent_color
bar value val range 100 xalign 0.5 yalign 0.9 xmaximum 200 at alpha_dissolve
text str(val) + ' ' + get_stats_change_direction_icon(skill, changed_stats, change_direction)
screen todo_screen():
vbox:
spacing 5
for todo in todo_list.incomplete:
text ' {icon=icon-square} ' + todo
for todo in todo_list.completed:
text ' {icon=icon-check-square} ' + todo color gui.insensitive_color | Ren'Py | 5 | googlebleh/LearnToCodeRPG | game/scripts/player_stats.rpy | [
"BSD-3-Clause"
] |
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 12:24:56 01/31/2014
-- Design Name:
-- Module Name: pdm_ser - Behavioral
-- Project Name:
-- Target Devices:
-- Tool versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--use IEEE.NUMERIC_STD.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity pdm_ser is
generic(
C_NR_OF_BITS : integer := 16;
C_SYS_CLK_FREQ_MHZ : integer := 100;
C_PDM_FREQ_MHZ : integer range 1 to 3 := 3
);
port(
clk_i : in std_logic;
rst_i : in std_logic;
en_i : in std_logic;
done_o : out std_logic;
data_i : in std_logic_vector(15 downto 0);
-- PWM
pwm_audio_o : out std_logic;
pwm_audio_t : out std_logic;
pwm_audio_i : in std_logic
--pwm_sdaudio_o : out std_logic
);
end pdm_ser;
architecture Behavioral of pdm_ser is
------------------------------------------------------------------------
-- Signal Declarations
------------------------------------------------------------------------
signal cnt_clk : integer range 0 to 127 := 0;
signal clk_int, clk_intt : std_logic := '0';
signal pdm_clk_rising, pdm_clk_falling : std_logic;
signal pdm_s_tmp : std_logic_vector((C_NR_OF_BITS-1) downto 0);
signal cnt_bits : integer range 0 to 31 := 0;
signal pwm_int : std_logic;
signal done_int : std_logic;
------------------------------------------------------------------------
-- Module Implementation
------------------------------------------------------------------------
begin
-- enable audio
--pwm_sdaudio_o <= '1';
-- counter for the number of sampled bits
CNT: process(clk_i) begin
if rising_edge(clk_i) then
if pdm_clk_rising = '1' then
if cnt_bits = (C_NR_OF_BITS-1) then
cnt_bits <= 0;
else
cnt_bits <= cnt_bits + 1;
end if;
end if;
end if;
end process CNT;
-- done gen
process(clk_i)
begin
if rising_edge(clk_i) then
if pdm_clk_rising = '1' then
if cnt_bits = (C_NR_OF_BITS-1) then
done_o <= '1';
end if;
else
done_o <= '0';
end if;
end if;
end process;
------------------------------------------------------------------------
-- Serializer
------------------------------------------------------------------------
SHFT_OUT: process(clk_i)
begin
if rising_edge(clk_i) then
if pdm_clk_rising = '1' then
if cnt_bits = (C_NR_OF_BITS-2) then -- end of deserialization
pdm_s_tmp <= data_i;
else
pdm_s_tmp <= pdm_s_tmp(C_NR_OF_BITS-2 downto 0) & '0';
end if;
end if;
end if;
end process SHFT_OUT;
-- output the serial pdm data
pwm_audio_o <= '0';
pwm_audio_t <= --clk_int when en_i = '0' else
'0' when pdm_s_tmp(C_NR_OF_BITS-1) = '0' and en_i = '1' else '1';
------------------------------------------------------------------------
-- slave clock generator
------------------------------------------------------------------------
CLK_CNT: process(clk_i)
begin
if rising_edge(clk_i) then
if rst_i = '1' or cnt_clk = ((C_SYS_CLK_FREQ_MHZ/(C_PDM_FREQ_MHZ*2))-1) then
cnt_clk <= 0;
clk_int <= not clk_int;
else
cnt_clk <= cnt_clk + 1;
end if;
clk_intt <= clk_int;
end if;
end process CLK_CNT;
pdm_clk_rising <= '1' when clk_int = '1' and clk_intt = '0' else '0';
--pdm_clk_falling <= '1' when cnt_clk = ((clk_div/2)-1) else '0';
end Behavioral;
| VHDL | 4 | michalkouril/PYNQ | boards/ip/audio_direct_1.1/src/pdm_ser.vhd | [
"BSD-3-Clause"
] |
<%@ extends gw.internal.gosu.template.SuperClass %><%= f() %> | Gosu | 0 | tcmoore32/sheer-madness | gosu-test/src/test/gosu/gw/internal/gosu/template/ExtendsNoArgFunctionAccess.gst | [
"Apache-2.0"
] |
Rebol [
Title: "Make Feed"
Author: "Christopher Ross-Gill"
Date: 12-Jun-2013
File: %make-feed.r3
Version: 1.0.0
Purpose: "Create an Atom Feed."
Needs: [
%form-date.r3
%rsp.r3
]
Usage: [
make-feed reduce [
make object! [
Title: "Feed Name"
ID: Home: http://www.example.com/
Link: http://www.example.com/our.feed
Subtitle: "Describes this Feed"
Updated: none
]
make object! [
Title: "Journal Éntry title...."
ID: Link: http://www.example.com/some/page/or/other
Author: "Somebody"
Published: Modified: 30-Dec-2004/12:00-9:00
Description: {Entry HTML goes here...}
]
]
]
]
make-feed: use [feed.rsp entry.rsp][
feed.rsp: trim/auto {
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns='http://www.w3.org/2005/Atom'
xml:base='<%== header/home %>'
xml:lang='en-us'>
<title><%== header/title %></title>
<id><%== header/id %></id>
<link href='<%== header/home %>' />
<link rel='self' href='<%== form header/link %>' />
<updated><%= form-date/gmt any [header/updated now] "%c" %></updated>
<subtitle><%== header/subtitle %></subtitle>
<%= render-each entry feed entry.rsp %>
</feed>
}
entry.rsp: trim/auto {
<entry>
<title><%== entry/title %></title>
<link href='<%= entry/link %>' />
<id><%== entry/id %></id>
<author><name><%== entry/author %></name></author>
<published><%= form-date/gmt entry/published "%c" %></published>
<updated><%= form-date/gmt entry/modified "%c" %></updated>
<content type='html'><%== entry/description %></content>
</entry>
}
make-feed: func [feed [block!] /local header][
header: take feed: copy feed
render/with feed.rsp [header feed entry.rsp]
]
]
| Rebol | 4 | hostilefork/rgchris-scripts | r3-alpha/make-feed.r3 | [
"Apache-2.0"
] |
fizzbuzz
for i=1:1:100 do write !
. write:(i#3)&(i#5) i write:'(i#3) "Fizz" write:'(i#5) "Buzz"
| M | 3 | LaudateCorpus1/RosettaCodeData | Task/FizzBuzz/MUMPS/fizzbuzz-2.mumps | [
"Info-ZIP"
] |
<div class="chips"><input></div>
<div class="chips chips-initial"><input></div>
<div class="chips chips-placeholder"><input></div>
<div class="chips chips-autocomplete"><input></div> | HTML | 1 | afzalsayed96/materialize | tests/spec/chips/chipsFixture.html | [
"MIT"
] |
#*****************************************************************************
# *
# Make file for VMS *
# Author : J.Jansen ([email protected]) *
# Date : 10 November 1999 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
.else
.ifdef __WXGTK__
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
.else
CXX_DEFINE =
.endif
.endif
.suffixes : .cpp
.cpp.obj :
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
all :
.ifdef __WXMOTIF__
$(MMS)$(MMSQUALIFIERS) controls.exe
.else
.ifdef __WXGTK__
$(MMS)$(MMSQUALIFIERS) controls_gtk.exe
.endif
.endif
.ifdef __WXMOTIF__
controls.exe : controls.obj
cxxlink controls,[--.lib]vms/opt
.else
.ifdef __WXGTK__
controls_gtk.exe : controls.obj
cxxlink/exec=controls_gtk.exe controls,[--.lib]vms_gtk/opt
.endif
.endif
controls.obj : controls.cpp
| Module Management System | 3 | madanagopaltcomcast/pxCore | examples/pxScene2d/external/WinSparkle/3rdparty/wxWidgets/samples/controls/descrip.mms | [
"Apache-2.0"
] |
[[https://github.com/tinkerpop/gremlin/raw/master/doc/images/gremlin-gremopoly.png|width=125px|align=left|float]]
In Gremlin, the same path expression can be written in numerous ways. Gremlin is an "imperative language":http://en.wikipedia.org/wiki/Imperative_programming in that the developer explicitly instructs Gremlin which path to take through the graph (as defined by an abstract path description). However, Gremlin doesn't always do as he is told. There are various optimizations that Gremlin will automatically take advantage of. This section describes such optimizations.
==<br/>==
h2. Query Optimization
[[https://raw.github.com/tinkerpop/blueprints/master/doc/images/blueprints-character-2.png|width=100px|align=right|float]]
In "Blueprints":http://blueprints.tinkerpop.com there are two types of graph indices that are respected: graph and vertex indices. A graph index is global to the entire graph whereby vertices/edges can be efficiently looked-up by their key/value properties. A vertex index is local to a vertex whereby incident edges can be efficiently looked-up by their direction, label, and key/value properties.
h3. Graph Query Optimization
Blueprints provides a method called @Graph.query()@. This method returns a @GraphQuery@ object that can be configured to filter the vertices and edges of a graph according to their properties. While the implementation depends on the backend graph engine, typically global indicies are utilized (i.e. @log(n)@-structures, where @n@ is the number of vertices/edges in the graph). In Gremlin, whenever an expression starts with @g.V@ (or @g.E@) the next series of statements provides predicates to the @GraphQuery@.
```text
gremlin> g.V.has('name','marko').interval('age',20,40).toString()
==>[GremlinStartPipe, GraphQueryPipe(has,interval,vertex), IdentityPipe, IdentityPipe]
```
h3. Vertex Query Optimization
Blueprints provides a method called @Vertex.query()@. This method returns a @VertexQuery@ object that can be configured to filter the edges (and thus vertices) associated with that @Vertex@ according to edge labels, edge properties, edge property intervals, etc. While the implementation depends on the backend graph engine, typically vertex-centric indicies are utilized (i.e. @log(m)@-structures, where @m@ is the number of incident edges to the vertex). Whenever a pattern such as @outE....inV@ is seen by Gremlin, Gremlin will automatically compile that statement into a @VertexQuery@ object.
```text
gremlin> g.v(1).outE('knows','created').interval('weight',0.5,1.0).has('date',2012).inV.name.toString()
==>[GremlinStartPipe, VertexQueryPipe(out,[knows, created],has,interval,edge), IdentityPipe, IdentityPipe, InVertexPipe, PropertyPipe(name)]
```
Also, a range filter on a vertex-to-vertex traversal will compile to a @VertexQueryPipe@.
```text
gremlin> g.v(1).out('knows')[0..10].toString()
==>[GremlinStartPipe, VertexQueryPipe(out,[knows],range:[0,10],vertex), IdentityPipe]
```
Note that Gremlin ensures that the pipeline length stays the same by introducing @IdentityPipe@ steps. This ensures that numbered step constructs (e.g. @loop(2)@, @back(1)@) remain faithful. Though it is always a good idea to @toString()@ an expression when using numbered steps to ensure proper indexing.
If the query optimization is not desired, there is the method @GremlinPipeline.optimize(boolean)@. This method makes it possible to turn off query optimizations.
```text
gremlin> g.v(1).optimize(false).outE('knows','created').interval('weight',0.5,1.0).has('date',2012).inV.name.toString()
==>[GremlinStartPipe, OutEdgesPipe(knows,created), IntervalFilterPipe, PropertyFilterPipe(date,EQUAL,2012), InVertexPipe, PropertyPipe(name)]
```
h2. Automatic Path Enabling
[[https://raw.github.com/tinkerpop/pipes/master/doc/images/pipes-character-2.png|width=100px|align=left|float]]
"Pipes":http://pipes.tinkerpop.com natively supports the recording of the history of a particular traversal. By default, Gremlin does not assume that path information will be required of the traversal unless a path-specific step is called -- e.g. @path@, @simplePath@. If the path information is required internal to a closure, Gremlin doesn't know that as it can not interpret what is in a closure. As such, be sure to @GremlinPipeline.enablePath()@ if path information will be required by the expression.
```text
gremlin> g.v(1).as('x').out.loop('x'){it.loops < 3}{it.path.contains(g.v(4))}
Cannot invoke method contains() on null object
Display stack trace? [yN]
gremlin> g.v(1).as('x').out.loop('x'){it.loops < 3}{it.path.contains(g.v(4))}.enablePath()
==>v[5]
==>v[3]
``` | Textile | 3 | echinopsii/net.echinopsii.3rdparty.gremlin | doc/Traversal-Optimization.textile | [
"BSD-3-Clause"
] |
--TEST--
abstract final methods errmsg
--FILE--
<?php
class test {
final abstract function foo();
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
| PHP | 1 | thiagooak/php-src | Zend/tests/access_modifiers_007.phpt | [
"PHP-3.01"
] |
\documentclass[]{article}
% Comment sec 1
%
%
%
\begin{document}
% Comment sec 2
%
%
\end{document}
| TeX | 1 | tiagoboldt/vimtex | test/tests/test-motions/test-comment-motions.tex | [
"MIT"
] |
@import Foundation;
@interface ClassWithHandlerMethods
+ (void)firstBoolFlagSuccess:(NSString *_Nonnull)str
completion:(void (^_Nonnull)(NSString *_Nullable, BOOL, BOOL,
NSError *_Nullable))handler
__attribute__((swift_async_error(zero_argument, 2)));
+ (void)secondBoolFlagFailure:(NSString *_Nonnull)str
completion:(void (^_Nonnull)(NSString *_Nullable, BOOL, BOOL,
NSError *_Nullable))handler
__attribute__((swift_async_error(nonzero_argument, 3)));
@end
| C | 3 | gandhi56/swift | test/refactoring/ConvertAsync/Inputs/convert_bool_objc.h | [
"Apache-2.0"
] |
import spock.lang.Specification
class FirstSpecification extends Specification {
def "one plus one should equal two"() {
expect:
1 + 1 == 2
}
def "two plus two should equal four"() {
given:
int left = 2
int right = 2
when:
int result = left + right
then:
result == 4
}
def "Should be able to remove from list"() {
given:
def list = [1, 2, 3, 4]
when:
list.remove(0)
then:
list == [2, 3, 4]
}
def "Should get an index out of bounds when removing a non-existent item"() {
given:
def list = [1, 2, 3, 4]
when:
list.remove(20)
then:
thrown(IndexOutOfBoundsException)
list.size() == 4
}
def "numbers to the power of two"(int a, int b, int c) {
expect:
Math.pow(a, b) == c
where:
a | b | c
1 | 2 | 1
2 | 2 | 4
3 | 2 | 9
}
def "Should return default value for mock"() {
given:
def paymentGateway = Mock(PaymentGateway)
when:
def result = paymentGateway.makePayment(12.99)
then:
!result
}
def "Should return true value for mock"() {
given:
def paymentGateway = Mock(PaymentGateway)
paymentGateway.makePayment(20) >> true
when:
def result = paymentGateway.makePayment(20)
then:
result
}
def "Should verify notify was called"() {
given:
def notifier = Mock(Notifier)
when:
notifier.notify('foo')
then:
1 * notifier.notify('foo')
}
}
| Groovy | 5 | zeesh49/tutorials | testing-modules/groovy-spock/src/test/groovy/FirstSpecification.groovy | [
"MIT"
] |
#tag BuildAutomation
Begin BuildStepList Linux
Begin BuildProjectStep Build
End
Begin ExternalIDEScriptStep PrepareKajuLinux
AppliesTo = 2
FolderItem = Li4AQnVpbGQgU2NyaXB0cwBQcmVwYXJlIEthanUueG9qb19zY3JpcHQ=
End
End
Begin BuildStepList Mac OS X
Begin BuildProjectStep Build
End
Begin ExternalIDEScriptStep PrepareKajuMac
AppliesTo = 2
FolderItem = Li4AQnVpbGQgU2NyaXB0cwBQcmVwYXJlIEthanUueG9qb19zY3JpcHQ=
End
End
Begin BuildStepList Windows
Begin BuildProjectStep Build
End
Begin ExternalIDEScriptStep PrepareKajuWin
AppliesTo = 2
FolderItem = Li4AQnVpbGQgU2NyaXB0cwBQcmVwYXJlIEthanUueG9qb19zY3JpcHQ=
End
End
#tag EndBuildAutomation
| Xojo | 3 | joneisen/Kaju | Update Test App/Build Automation.xojo_code | [
"MIT"
] |
type Query {
info: String!
posts: [Post!]!
authors: [Author!]!
}
type Mutation {
createPost(slug: String!, description: String!): Post!
updatePost(id: ID!, description: String!): Post
deletePost(id: ID!): Post
}
type Post {
id: ID!
slug: String!
description: String!
imgUrl: String!
imgAlt: String!
author: Author!
status: String
}
type Author {
id: ID!
name: String!
}
type Subscription {
posts: [Post!]!
}
| GraphQL | 4 | nicholascapo/gatsby | examples/creating-source-plugins/api/src/schema.graphql | [
"MIT"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon( /*#__PURE__*/_jsx("path", {
d: "M7.02 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zM13 14v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1zM6.13 3.57l-3.3 5.94c-.37.67.11 1.49.87 1.49h6.6c.76 0 1.24-.82.87-1.49l-3.3-5.94c-.38-.68-1.36-.68-1.74 0zM19.25 2.5c-1.06 0-1.81.56-2.25 1.17-.44-.61-1.19-1.17-2.25-1.17C13.19 2.5 12 3.78 12 5.25c0 1.83 2.03 3.17 4.35 5.18.37.32.92.32 1.3 0C19.97 8.42 22 7.08 22 5.25c0-1.47-1.19-2.75-2.75-2.75z"
}), 'InterestsRounded'); | JavaScript | 3 | dany-freeman/material-ui | packages/mui-icons-material/lib/esm/InterestsRounded.js | [
"MIT"
] |
package test;
import java.util.List;
public interface B1 {
A<List<String>>.Inner<Integer, Double> produceA();
List<A<String>> produceListOfAs();
}
| Java | 2 | qussarah/declare | compiler/testData/compileKotlinAgainstCustomBinaries/missingDependencyJavaConflictingLibraries/library1/test/B1.java | [
"Apache-2.0"
] |
// @removeComments: false
class test {
/**
* p1 comment appears in output
*/
public static p1: string = "";
/**
* p2 comment does not appear in output
*/
public static p2: string;
/**
* p3 comment appears in output
*/
private static p3: string = "";
/**
* p4 comment does not appear in output
*/
private static p4: string;
} | TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/compiler/commentsOnStaticMembers.ts | [
"Apache-2.0"
] |
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/execution/protectors.h"
#include "src/execution/isolate-inl.h"
#include "src/execution/protectors-inl.h"
#include "src/handles/handles-inl.h"
#include "src/objects/contexts.h"
#include "src/objects/property-cell.h"
#include "src/objects/smi.h"
#include "src/tracing/trace-event.h"
#include "src/utils/utils.h"
namespace v8 {
namespace internal {
namespace {
void TraceProtectorInvalidation(const char* protector_name) {
DCHECK(FLAG_trace_protector_invalidation);
static constexpr char kInvalidateProtectorTracingCategory[] =
"V8.InvalidateProtector";
static constexpr char kInvalidateProtectorTracingArg[] = "protector-name";
DCHECK(FLAG_trace_protector_invalidation);
// TODO(jgruber): Remove the PrintF once tracing can output to stdout.
i::PrintF("Invalidating protector cell %s\n", protector_name);
TRACE_EVENT_INSTANT1("v8", kInvalidateProtectorTracingCategory,
TRACE_EVENT_SCOPE_THREAD, kInvalidateProtectorTracingArg,
protector_name);
}
// Static asserts to ensure we have a use counter for every protector. If this
// fails, add the use counter in V8 and chromium. Note: IsDefined is not
// strictly needed but clarifies the intent of the static assert.
constexpr bool IsDefined(v8::Isolate::UseCounterFeature) { return true; }
#define V(Name, ...) \
STATIC_ASSERT(IsDefined(v8::Isolate::kInvalidated##Name##Protector));
DECLARED_PROTECTORS_ON_ISOLATE(V)
#undef V
} // namespace
#define INVALIDATE_PROTECTOR_ON_ISOLATE_DEFINITION(name, unused_index, cell) \
void Protectors::Invalidate##name(Isolate* isolate) { \
DCHECK(isolate->factory()->cell()->value().IsSmi()); \
DCHECK(Is##name##Intact(isolate)); \
if (FLAG_trace_protector_invalidation) { \
TraceProtectorInvalidation(#name); \
} \
isolate->CountUsage(v8::Isolate::kInvalidated##name##Protector); \
isolate->factory()->cell()->InvalidateProtector(); \
DCHECK(!Is##name##Intact(isolate)); \
}
DECLARED_PROTECTORS_ON_ISOLATE(INVALIDATE_PROTECTOR_ON_ISOLATE_DEFINITION)
#undef INVALIDATE_PROTECTOR_ON_ISOLATE_DEFINITION
} // namespace internal
} // namespace v8
| C++ | 3 | LancerWang001/v8 | src/execution/protectors.cc | [
"BSD-3-Clause"
] |
(kicad_pcb (version 20171130) (host pcbnew "(5.0.2)-1")
(general
(thickness 1.6)
(drawings 164)
(tracks 1745)
(zones 0)
(modules 90)
(nets 194)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user hide)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 5.5 5.5)
(pad_drill 3.8)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(grid_origin 100.203 -1.3335)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerbers/REV E/"))
)
(net 0 "")
(net 1 /RC1M1A)
(net 2 /RC1M1B)
(net 3 /RC1EN1A)
(net 4 /RC1EN1B)
(net 5 /RC1EN2B)
(net 6 /RC1EN2A)
(net 7 /RC1M2B)
(net 8 /RC1M2A)
(net 9 /RC2M2B)
(net 10 /RC2M2A)
(net 11 /RC2M1B)
(net 12 /RC2M1A)
(net 13 /RC2EN1A)
(net 14 /RC2EN2A)
(net 15 /RC2EN2B)
(net 16 /RC2EN1B)
(net 17 /RC4EN1A_RAW)
(net 18 GND)
(net 19 /RC5EN1A_RAW)
(net 20 /RC4EN2A_RAW)
(net 21 /RC5EN2A_RAW)
(net 22 /RXD)
(net 23 +5V)
(net 24 /TXD)
(net 25 /5REG_EN)
(net 26 +BATT)
(net 27 /RC4EN1A)
(net 28 /RC4EN2A)
(net 29 /RC3EN1B)
(net 30 /RC3EN2B)
(net 31 /RC3EN2A)
(net 32 /RC3EN1A)
(net 33 /RC5EN2A)
(net 34 /RC5EN1A)
(net 35 /RC4M2A)
(net 36 /RC4M2B)
(net 37 /RC5M1A)
(net 38 /RC5M2A)
(net 39 /RC5M2B)
(net 40 /RC4M1B)
(net 41 /RC4M1A)
(net 42 /RC3M2A)
(net 43 /RC3M2B)
(net 44 /RC3M1B)
(net 45 /RC3M1A)
(net 46 /RC5M1B)
(net 47 "Net-(RC5-Pad3)")
(net 48 "Net-(RC5-Pad4)")
(net 49 "Net-(RC5-Pad5)")
(net 50 "Net-(RC5-Pad6)")
(net 51 "Net-(RC5-Pad11)")
(net 52 "Net-(RC5-Pad12)")
(net 53 "Net-(RC5-Pad13)")
(net 54 "Net-(RC5-Pad14)")
(net 55 "Net-(RC5-Pad15)")
(net 56 "Net-(RC5-Pad16)")
(net 57 "Net-(RC5-Pad17)")
(net 58 "Net-(RC5-Pad18)")
(net 59 "Net-(RC5-Pad19)")
(net 60 "Net-(RC5-Pad20)")
(net 61 "Net-(RC5-Pad24)")
(net 62 "Net-(RC5-Pad25)")
(net 63 "Net-(RC1-Pad25)")
(net 64 "Net-(RC1-Pad24)")
(net 65 "Net-(RC1-Pad20)")
(net 66 "Net-(RC1-Pad19)")
(net 67 "Net-(RC1-Pad18)")
(net 68 "Net-(RC1-Pad17)")
(net 69 "Net-(RC1-Pad16)")
(net 70 "Net-(RC1-Pad15)")
(net 71 "Net-(RC1-Pad14)")
(net 72 "Net-(RC1-Pad13)")
(net 73 "Net-(RC1-Pad12)")
(net 74 "Net-(RC1-Pad11)")
(net 75 "Net-(RC1-Pad6)")
(net 76 "Net-(RC1-Pad5)")
(net 77 "Net-(RC1-Pad4)")
(net 78 "Net-(RC1-Pad3)")
(net 79 "Net-(RC2-Pad3)")
(net 80 "Net-(RC2-Pad4)")
(net 81 "Net-(RC2-Pad5)")
(net 82 "Net-(RC2-Pad6)")
(net 83 "Net-(RC2-Pad11)")
(net 84 "Net-(RC2-Pad12)")
(net 85 "Net-(RC2-Pad13)")
(net 86 "Net-(RC2-Pad14)")
(net 87 "Net-(RC2-Pad15)")
(net 88 "Net-(RC2-Pad16)")
(net 89 "Net-(RC2-Pad17)")
(net 90 "Net-(RC2-Pad18)")
(net 91 "Net-(RC2-Pad19)")
(net 92 "Net-(RC2-Pad20)")
(net 93 "Net-(RC2-Pad24)")
(net 94 "Net-(RC2-Pad25)")
(net 95 "Net-(RC3-Pad25)")
(net 96 "Net-(RC3-Pad24)")
(net 97 "Net-(RC3-Pad20)")
(net 98 "Net-(RC3-Pad19)")
(net 99 "Net-(RC3-Pad18)")
(net 100 "Net-(RC3-Pad17)")
(net 101 "Net-(RC3-Pad16)")
(net 102 "Net-(RC3-Pad15)")
(net 103 "Net-(RC3-Pad14)")
(net 104 "Net-(RC3-Pad13)")
(net 105 "Net-(RC3-Pad12)")
(net 106 "Net-(RC3-Pad11)")
(net 107 "Net-(RC3-Pad6)")
(net 108 "Net-(RC3-Pad5)")
(net 109 "Net-(RC3-Pad4)")
(net 110 "Net-(RC3-Pad3)")
(net 111 "Net-(RC4-Pad3)")
(net 112 "Net-(RC4-Pad4)")
(net 113 "Net-(RC4-Pad5)")
(net 114 "Net-(RC4-Pad6)")
(net 115 "Net-(RC4-Pad11)")
(net 116 "Net-(RC4-Pad12)")
(net 117 "Net-(RC4-Pad13)")
(net 118 "Net-(RC4-Pad14)")
(net 119 "Net-(RC4-Pad15)")
(net 120 "Net-(RC4-Pad16)")
(net 121 "Net-(RC4-Pad17)")
(net 122 "Net-(RC4-Pad18)")
(net 123 "Net-(RC4-Pad19)")
(net 124 "Net-(RC4-Pad20)")
(net 125 "Net-(RC4-Pad24)")
(net 126 "Net-(RC4-Pad25)")
(net 127 /3.3V)
(net 128 /PI_5V)
(net 129 /SDA1)
(net 130 /SCL1)
(net 131 /GPIO_CLK)
(net 132 /GPIO_GEN0)
(net 133 /GPIO_GEN1)
(net 134 /GPIO_GEN2)
(net 135 /GPIO_GEN3)
(net 136 /GPIO_GEN5)
(net 137 /SPI_MOSI)
(net 138 /SPI_MISO)
(net 139 /GPIO_GEN6)
(net 140 /SPI_CLK)
(net 141 /SPI_CEO_N)
(net 142 /GPI_CE1_N)
(net 143 /I2C_ID1)
(net 144 /I2C_ID2)
(net 145 /GPIO05)
(net 146 /GPIO06)
(net 147 /GPIO12)
(net 148 /GPIO13)
(net 149 /GPIO19)
(net 150 /GPIO16)
(net 151 /GPIO26)
(net 152 /GPIO20)
(net 153 /GPIO21)
(net 154 "Net-(D1-Pad2)")
(net 155 "Net-(D1-Pad1)")
(net 156 "Net-(C15-Pad2)")
(net 157 "Net-(C14-Pad2)")
(net 158 "Net-(C13-Pad2)")
(net 159 "Net-(C12-Pad2)")
(net 160 /E_STOP)
(net 161 "Net-(RC5-Pad10)")
(net 162 "Net-(RC5-Pad8)")
(net 163 "Net-(RC4-Pad10)")
(net 164 "Net-(RC4-Pad8)")
(net 165 +12V)
(net 166 /PG)
(net 167 /12REG_EN)
(net 168 /CTS#)
(net 169 /TTL_RXD)
(net 170 /TTL_TXD)
(net 171 /RTS#)
(net 172 "Net-(J6-Pad6)")
(net 173 "Net-(J6-Pad9)")
(net 174 "Net-(J6-Pad14)")
(net 175 "Net-(J6-Pad20)")
(net 176 "Net-(J6-Pad25)")
(net 177 "Net-(J6-Pad30)")
(net 178 "Net-(J6-Pad34)")
(net 179 "Net-(J6-Pad39)")
(net 180 "Net-(J7-Pad16)")
(net 181 "Net-(J12-Pad2)")
(net 182 "Net-(J12-Pad3)")
(net 183 "Net-(J23-Pad6)")
(net 184 "Net-(J26-Pad6)")
(net 185 "Net-(J24-Pad6)")
(net 186 "Net-(J25-Pad6)")
(net 187 "Net-(J8-Pad3)")
(net 188 "Net-(J10-Pad6)")
(net 189 "Net-(J14-Pad2)")
(net 190 "Net-(J14-Pad3)")
(net 191 "Net-(T19-Pad1)")
(net 192 "Net-(T3-Pad1)")
(net 193 "Net-(T14-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +12V)
(add_net +5V)
(add_net +BATT)
(add_net /12REG_EN)
(add_net /3.3V)
(add_net /5REG_EN)
(add_net /CTS#)
(add_net /E_STOP)
(add_net /GPIO05)
(add_net /GPIO06)
(add_net /GPIO12)
(add_net /GPIO13)
(add_net /GPIO16)
(add_net /GPIO19)
(add_net /GPIO20)
(add_net /GPIO21)
(add_net /GPIO26)
(add_net /GPIO_CLK)
(add_net /GPIO_GEN0)
(add_net /GPIO_GEN1)
(add_net /GPIO_GEN2)
(add_net /GPIO_GEN3)
(add_net /GPIO_GEN5)
(add_net /GPIO_GEN6)
(add_net /GPI_CE1_N)
(add_net /I2C_ID1)
(add_net /I2C_ID2)
(add_net /PG)
(add_net /PI_5V)
(add_net /RC1EN1A)
(add_net /RC1EN1B)
(add_net /RC1EN2A)
(add_net /RC1EN2B)
(add_net /RC1M1A)
(add_net /RC1M1B)
(add_net /RC1M2A)
(add_net /RC1M2B)
(add_net /RC2EN1A)
(add_net /RC2EN1B)
(add_net /RC2EN2A)
(add_net /RC2EN2B)
(add_net /RC2M1A)
(add_net /RC2M1B)
(add_net /RC2M2A)
(add_net /RC2M2B)
(add_net /RC3EN1A)
(add_net /RC3EN1B)
(add_net /RC3EN2A)
(add_net /RC3EN2B)
(add_net /RC3M1A)
(add_net /RC3M1B)
(add_net /RC3M2A)
(add_net /RC3M2B)
(add_net /RC4EN1A)
(add_net /RC4EN1A_RAW)
(add_net /RC4EN2A)
(add_net /RC4EN2A_RAW)
(add_net /RC4M1A)
(add_net /RC4M1B)
(add_net /RC4M2A)
(add_net /RC4M2B)
(add_net /RC5EN1A)
(add_net /RC5EN1A_RAW)
(add_net /RC5EN2A)
(add_net /RC5EN2A_RAW)
(add_net /RC5M1A)
(add_net /RC5M1B)
(add_net /RC5M2A)
(add_net /RC5M2B)
(add_net /RTS#)
(add_net /RXD)
(add_net /SCL1)
(add_net /SDA1)
(add_net /SPI_CEO_N)
(add_net /SPI_CLK)
(add_net /SPI_MISO)
(add_net /SPI_MOSI)
(add_net /TTL_RXD)
(add_net /TTL_TXD)
(add_net /TXD)
(add_net GND)
(add_net "Net-(C12-Pad2)")
(add_net "Net-(C13-Pad2)")
(add_net "Net-(C14-Pad2)")
(add_net "Net-(C15-Pad2)")
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(J10-Pad6)")
(add_net "Net-(J12-Pad2)")
(add_net "Net-(J12-Pad3)")
(add_net "Net-(J14-Pad2)")
(add_net "Net-(J14-Pad3)")
(add_net "Net-(J23-Pad6)")
(add_net "Net-(J24-Pad6)")
(add_net "Net-(J25-Pad6)")
(add_net "Net-(J26-Pad6)")
(add_net "Net-(J6-Pad14)")
(add_net "Net-(J6-Pad20)")
(add_net "Net-(J6-Pad25)")
(add_net "Net-(J6-Pad30)")
(add_net "Net-(J6-Pad34)")
(add_net "Net-(J6-Pad39)")
(add_net "Net-(J6-Pad6)")
(add_net "Net-(J6-Pad9)")
(add_net "Net-(J7-Pad16)")
(add_net "Net-(J8-Pad3)")
(add_net "Net-(RC1-Pad11)")
(add_net "Net-(RC1-Pad12)")
(add_net "Net-(RC1-Pad13)")
(add_net "Net-(RC1-Pad14)")
(add_net "Net-(RC1-Pad15)")
(add_net "Net-(RC1-Pad16)")
(add_net "Net-(RC1-Pad17)")
(add_net "Net-(RC1-Pad18)")
(add_net "Net-(RC1-Pad19)")
(add_net "Net-(RC1-Pad20)")
(add_net "Net-(RC1-Pad24)")
(add_net "Net-(RC1-Pad25)")
(add_net "Net-(RC1-Pad3)")
(add_net "Net-(RC1-Pad4)")
(add_net "Net-(RC1-Pad5)")
(add_net "Net-(RC1-Pad6)")
(add_net "Net-(RC2-Pad11)")
(add_net "Net-(RC2-Pad12)")
(add_net "Net-(RC2-Pad13)")
(add_net "Net-(RC2-Pad14)")
(add_net "Net-(RC2-Pad15)")
(add_net "Net-(RC2-Pad16)")
(add_net "Net-(RC2-Pad17)")
(add_net "Net-(RC2-Pad18)")
(add_net "Net-(RC2-Pad19)")
(add_net "Net-(RC2-Pad20)")
(add_net "Net-(RC2-Pad24)")
(add_net "Net-(RC2-Pad25)")
(add_net "Net-(RC2-Pad3)")
(add_net "Net-(RC2-Pad4)")
(add_net "Net-(RC2-Pad5)")
(add_net "Net-(RC2-Pad6)")
(add_net "Net-(RC3-Pad11)")
(add_net "Net-(RC3-Pad12)")
(add_net "Net-(RC3-Pad13)")
(add_net "Net-(RC3-Pad14)")
(add_net "Net-(RC3-Pad15)")
(add_net "Net-(RC3-Pad16)")
(add_net "Net-(RC3-Pad17)")
(add_net "Net-(RC3-Pad18)")
(add_net "Net-(RC3-Pad19)")
(add_net "Net-(RC3-Pad20)")
(add_net "Net-(RC3-Pad24)")
(add_net "Net-(RC3-Pad25)")
(add_net "Net-(RC3-Pad3)")
(add_net "Net-(RC3-Pad4)")
(add_net "Net-(RC3-Pad5)")
(add_net "Net-(RC3-Pad6)")
(add_net "Net-(RC4-Pad10)")
(add_net "Net-(RC4-Pad11)")
(add_net "Net-(RC4-Pad12)")
(add_net "Net-(RC4-Pad13)")
(add_net "Net-(RC4-Pad14)")
(add_net "Net-(RC4-Pad15)")
(add_net "Net-(RC4-Pad16)")
(add_net "Net-(RC4-Pad17)")
(add_net "Net-(RC4-Pad18)")
(add_net "Net-(RC4-Pad19)")
(add_net "Net-(RC4-Pad20)")
(add_net "Net-(RC4-Pad24)")
(add_net "Net-(RC4-Pad25)")
(add_net "Net-(RC4-Pad3)")
(add_net "Net-(RC4-Pad4)")
(add_net "Net-(RC4-Pad5)")
(add_net "Net-(RC4-Pad6)")
(add_net "Net-(RC4-Pad8)")
(add_net "Net-(RC5-Pad10)")
(add_net "Net-(RC5-Pad11)")
(add_net "Net-(RC5-Pad12)")
(add_net "Net-(RC5-Pad13)")
(add_net "Net-(RC5-Pad14)")
(add_net "Net-(RC5-Pad15)")
(add_net "Net-(RC5-Pad16)")
(add_net "Net-(RC5-Pad17)")
(add_net "Net-(RC5-Pad18)")
(add_net "Net-(RC5-Pad19)")
(add_net "Net-(RC5-Pad20)")
(add_net "Net-(RC5-Pad24)")
(add_net "Net-(RC5-Pad25)")
(add_net "Net-(RC5-Pad3)")
(add_net "Net-(RC5-Pad4)")
(add_net "Net-(RC5-Pad5)")
(add_net "Net-(RC5-Pad6)")
(add_net "Net-(RC5-Pad8)")
(add_net "Net-(T14-Pad1)")
(add_net "Net-(T19-Pad1)")
(add_net "Net-(T3-Pad1)")
)
(module "JPL Robotics:rover_image" (layer F.Cu) (tedit 0) (tstamp 5D47164D)
(at 64.1858 -135.7503)
(path /5D3E48F3)
(fp_text reference y1 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_text value rover_silkscreen (at 0.75 0) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_poly (pts (xy -1.9431 -3.1877) (xy -2.33045 -3.180689) (xy -2.7178 -3.173677) (xy -2.7178 -1.8288)
(xy -1.089483 -1.8288) (xy -0.76161 -1.828858) (xy -0.480943 -1.829098) (xy -0.243885 -1.829619)
(xy -0.046844 -1.830521) (xy 0.113776 -1.831903) (xy 0.24157 -1.833865) (xy 0.340132 -1.836505)
(xy 0.413057 -1.839923) (xy 0.46394 -1.844219) (xy 0.496376 -1.849492) (xy 0.513959 -1.855841)
(xy 0.520283 -1.863366) (xy 0.518944 -1.872166) (xy 0.518468 -1.87325) (xy 0.505987 -1.921701)
(xy 0.494597 -2.001494) (xy 0.488303 -2.073752) (xy 0.488783 -2.106747) (xy 0.682173 -2.106747)
(xy 0.699633 -1.995115) (xy 0.731557 -1.915331) (xy 0.768977 -1.867693) (xy 0.829163 -1.834928)
(xy 0.877514 -1.817234) (xy 0.997652 -1.798548) (xy 1.10638 -1.82929) (xy 1.20015 -1.904923)
(xy 1.249946 -1.97627) (xy 1.268801 -2.057355) (xy 1.27 -2.094706) (xy 1.25642 -2.22283)
(xy 1.212882 -2.311366) (xy 1.135189 -2.364514) (xy 1.019143 -2.386469) (xy 0.977105 -2.3876)
(xy 0.8606 -2.365307) (xy 0.768141 -2.304746) (xy 0.706431 -2.2154) (xy 0.682173 -2.106747)
(xy 0.488783 -2.106747) (xy 0.490128 -2.199166) (xy 0.517832 -2.302414) (xy 0.578053 -2.399332)
(xy 0.663803 -2.492537) (xy 0.764052 -2.5908) (xy 0.98062 -2.5908) (xy 1.090215 -2.589239)
(xy 1.164009 -2.582342) (xy 1.216963 -2.566789) (xy 1.264035 -2.53926) (xy 1.286067 -2.52301)
(xy 1.388716 -2.420119) (xy 1.448772 -2.297423) (xy 1.469041 -2.148128) (xy 1.467032 -2.085003)
(xy 1.458272 -1.991559) (xy 1.44679 -1.914168) (xy 1.436383 -1.873511) (xy 1.434274 -1.863061)
(xy 1.440679 -1.854348) (xy 1.459845 -1.847181) (xy 1.496019 -1.841368) (xy 1.553449 -1.836721)
(xy 1.636382 -1.833049) (xy 1.749066 -1.83016) (xy 1.895746 -1.827865) (xy 2.080672 -1.825973)
(xy 2.30809 -1.824293) (xy 2.569132 -1.822711) (xy 3.7211 -1.8161) (xy 3.727833 -1.056747)
(xy 3.734567 -0.297394) (xy 4.464433 -0.307447) (xy 5.1943 -0.3175) (xy 5.200866 1.07315)
(xy 5.202387 1.375189) (xy 5.203954 1.63034) (xy 5.205705 1.842515) (xy 5.207778 2.015627)
(xy 5.21031 2.153586) (xy 5.213438 2.260305) (xy 5.217301 2.339695) (xy 5.222036 2.395669)
(xy 5.227781 2.432139) (xy 5.234672 2.453017) (xy 5.242848 2.462213) (xy 5.249772 2.4638)
(xy 5.309279 2.477918) (xy 5.397476 2.515814) (xy 5.502404 2.570802) (xy 5.6121 2.636195)
(xy 5.714606 2.705306) (xy 5.794394 2.768281) (xy 5.930107 2.907366) (xy 6.056819 3.072771)
(xy 6.162184 3.246721) (xy 6.226783 3.3909) (xy 6.272855 3.571314) (xy 6.294426 3.776277)
(xy 6.290586 3.985344) (xy 6.261637 4.173075) (xy 6.176939 4.42246) (xy 6.051105 4.64626)
(xy 5.888812 4.840839) (xy 5.694735 5.002567) (xy 5.473552 5.127809) (xy 5.229937 5.212933)
(xy 4.968567 5.254305) (xy 4.865464 5.2578) (xy 4.594574 5.235795) (xy 4.347211 5.169127)
(xy 4.120974 5.056819) (xy 3.91346 4.897891) (xy 3.862831 4.849367) (xy 3.691594 4.645982)
(xy 3.567266 4.424344) (xy 3.488952 4.182253) (xy 3.455755 3.917512) (xy 3.4544 3.8481)
(xy 3.655609 3.8481) (xy 3.67797 4.102559) (xy 3.745077 4.332975) (xy 3.856967 4.539424)
(xy 4.013679 4.721983) (xy 4.134761 4.824254) (xy 4.325963 4.938257) (xy 4.541672 5.016061)
(xy 4.770109 5.055886) (xy 4.999495 5.055954) (xy 5.21805 5.014485) (xy 5.272969 4.996196)
(xy 5.442594 4.923498) (xy 5.583516 4.836525) (xy 5.717834 4.721226) (xy 5.7404 4.699)
(xy 5.897652 4.508449) (xy 6.009892 4.300162) (xy 6.077162 4.079864) (xy 6.099509 3.853282)
(xy 6.076975 3.626141) (xy 6.009605 3.404166) (xy 5.897443 3.193085) (xy 5.740534 2.998623)
(xy 5.727147 2.985052) (xy 5.534142 2.824833) (xy 5.324094 2.709359) (xy 5.10273 2.638674)
(xy 4.875775 2.612821) (xy 4.648955 2.631845) (xy 4.427996 2.69579) (xy 4.218624 2.804701)
(xy 4.026565 2.958621) (xy 4.013199 2.971799) (xy 3.855961 3.15821) (xy 3.745582 3.358431)
(xy 3.679656 3.578359) (xy 3.655778 3.82389) (xy 3.655609 3.8481) (xy 3.4544 3.8481)
(xy 3.476345 3.577808) (xy 3.543095 3.330361) (xy 3.656016 3.10249) (xy 3.816476 2.890925)
(xy 3.884854 2.8194) (xy 4.080951 2.653969) (xy 4.292249 2.533687) (xy 4.528204 2.453225)
(xy 4.54025 2.450288) (xy 4.7244 2.406131) (xy 4.7244 0.254) (xy 3.734629 0.254)
(xy 3.727864 0.93345) (xy 3.7211 1.6129) (xy 1.067146 1.6256) (xy 0.637941 1.627718)
(xy 0.256757 1.629764) (xy -0.079183 1.631789) (xy -0.372659 1.633847) (xy -0.626448 1.63599)
(xy -0.84333 1.638272) (xy -1.026082 1.640746) (xy -1.177483 1.643465) (xy -1.300311 1.646482)
(xy -1.397345 1.64985) (xy -1.471362 1.653621) (xy -1.525143 1.65785) (xy -1.561464 1.662589)
(xy -1.583104 1.66789) (xy -1.592842 1.673808) (xy -1.594034 1.6764) (xy -1.578918 1.70521)
(xy -1.532361 1.763667) (xy -1.45943 1.846091) (xy -1.365192 1.946805) (xy -1.254716 2.060132)
(xy -1.224558 2.090362) (xy -0.847856 2.466225) (xy -0.735078 2.440233) (xy -0.59916 2.420696)
(xy -0.437675 2.41504) (xy -0.273713 2.422883) (xy -0.130362 2.443841) (xy -0.101793 2.450726)
(xy 0.141162 2.540934) (xy 0.364034 2.674022) (xy 0.560931 2.844094) (xy 0.725959 3.045253)
(xy 0.853226 3.271601) (xy 0.927726 3.480951) (xy 0.952273 3.620252) (xy 0.962949 3.787532)
(xy 0.959792 3.96191) (xy 0.942841 4.122506) (xy 0.926378 4.202371) (xy 0.837999 4.447786)
(xy 0.711152 4.665213) (xy 0.551147 4.852433) (xy 0.363296 5.007229) (xy 0.152908 5.127382)
(xy -0.074705 5.210673) (xy -0.314233 5.254884) (xy -0.560366 5.257796) (xy -0.807792 5.21719)
(xy -1.051201 5.130849) (xy -1.161446 5.074549) (xy -1.292023 4.984847) (xy -1.42786 4.864752)
(xy -1.553132 4.730092) (xy -1.652013 4.59669) (xy -1.67095 4.565045) (xy -1.779318 4.323214)
(xy -1.840977 4.069767) (xy -1.854401 3.8481) (xy -1.652991 3.8481) (xy -1.63063 4.102559)
(xy -1.563523 4.332975) (xy -1.451633 4.539424) (xy -1.294921 4.721983) (xy -1.173839 4.824254)
(xy -0.981005 4.939155) (xy -0.763755 5.017079) (xy -0.533704 5.056289) (xy -0.302467 5.05505)
(xy -0.081658 5.011626) (xy -0.031991 4.994912) (xy 0.188279 4.887594) (xy 0.381696 4.738294)
(xy 0.544105 4.550477) (xy 0.595824 4.471389) (xy 0.689609 4.281474) (xy 0.743663 4.082423)
(xy 0.761952 3.859318) (xy 0.762 3.846165) (xy 0.739701 3.602394) (xy 0.676154 3.380371)
(xy 0.576386 3.182233) (xy 0.445423 3.010115) (xy 0.288289 2.866154) (xy 0.11001 2.752485)
(xy -0.084388 2.671244) (xy -0.289879 2.624567) (xy -0.501437 2.614589) (xy -0.714037 2.643447)
(xy -0.922653 2.713276) (xy -1.12226 2.826213) (xy -1.295401 2.971799) (xy -1.452639 3.15821)
(xy -1.563018 3.358431) (xy -1.628944 3.578359) (xy -1.652822 3.82389) (xy -1.652991 3.8481)
(xy -1.854401 3.8481) (xy -1.856628 3.811337) (xy -1.826972 3.554561) (xy -1.752707 3.306073)
(xy -1.634534 3.072508) (xy -1.493523 2.88316) (xy -1.389111 2.764541) (xy -1.703825 2.44907)
(xy -2.018538 2.1336) (xy -2.209419 2.133042) (xy -2.368152 2.122831) (xy -2.486965 2.092486)
(xy -2.5019 2.086076) (xy -2.598683 2.024991) (xy -2.69663 1.935683) (xy -2.781028 1.83397)
(xy -2.837163 1.735671) (xy -2.84329 1.719077) (xy -2.8739 1.626328) (xy -4.4323 1.6129)
(xy -4.433597 1.48263) (xy -2.670629 1.48263) (xy -2.648826 1.637099) (xy -2.587284 1.764394)
(xy -2.491803 1.859852) (xy -2.368182 1.918812) (xy -2.222221 1.936612) (xy -2.1209 1.924489)
(xy -2.037939 1.89905) (xy -1.96604 1.864038) (xy -1.95737 1.85814) (xy -1.866987 1.775022)
(xy -1.81225 1.677438) (xy -1.785771 1.550838) (xy -1.782787 1.51431) (xy -1.787237 1.362505)
(xy -1.82516 1.243087) (xy -1.873883 1.1811) (xy -1.624869 1.1811) (xy -1.596793 1.2827)
(xy -1.576897 1.354614) (xy -1.562147 1.407785) (xy -1.559809 1.416172) (xy -1.549069 1.421544)
(xy -1.518372 1.426259) (xy -1.465213 1.430343) (xy -1.387091 1.433821) (xy -1.281502 1.436717)
(xy -1.145942 1.439055) (xy -0.977909 1.440862) (xy -0.774899 1.442162) (xy -0.53441 1.44298)
(xy -0.253938 1.44334) (xy 0.069021 1.443268) (xy 0.436968 1.442788) (xy 0.852408 1.441926)
(xy 0.996199 1.441572) (xy 3.5433 1.4351) (xy 3.556936 0.254) (xy 1.630427 0.254)
(xy 1.565772 0.364325) (xy 1.461295 0.496464) (xy 1.322243 0.603675) (xy 1.232705 0.649)
(xy 1.128549 0.675412) (xy 0.99799 0.68487) (xy 0.862358 0.6778) (xy 0.742985 0.654633)
(xy 0.6985 0.638276) (xy 0.621017 0.590405) (xy 0.535652 0.518863) (xy 0.455844 0.43712)
(xy 0.395033 0.358649) (xy 0.369473 0.308497) (xy 0.362085 0.290259) (xy 0.348658 0.276624)
(xy 0.32253 0.266921) (xy 0.277038 0.260483) (xy 0.205521 0.256641) (xy 0.101315 0.254726)
(xy -0.04224 0.254069) (xy -0.17342 0.254) (xy -0.699015 0.254) (xy -1.624869 1.1811)
(xy -1.873883 1.1811) (xy -1.900739 1.146934) (xy -1.977993 1.088774) (xy -2.113582 1.028953)
(xy -2.249853 1.014829) (xy -2.379067 1.042002) (xy -2.493486 1.10607) (xy -2.585371 1.202633)
(xy -2.646984 1.327291) (xy -2.670585 1.475644) (xy -2.670629 1.48263) (xy -4.433597 1.48263)
(xy -4.44583 0.254) (xy -4.2672 0.254) (xy -4.2672 0.833966) (xy -4.266472 1.000748)
(xy -4.264429 1.150292) (xy -4.261287 1.275195) (xy -4.257261 1.368055) (xy -4.252566 1.421468)
(xy -4.249861 1.431272) (xy -4.220811 1.435644) (xy -4.147791 1.439108) (xy -4.037626 1.44156)
(xy -3.89714 1.442897) (xy -3.733156 1.443012) (xy -3.557711 1.441856) (xy -2.8829 1.4351)
(xy -2.874473 1.361206) (xy -2.875028 1.336548) (xy -2.884704 1.307928) (xy -2.907258 1.270973)
(xy -2.946449 1.221314) (xy -3.006034 1.154579) (xy -3.089771 1.066398) (xy -3.201419 0.952401)
(xy -3.344735 0.808215) (xy -3.382241 0.770656) (xy -3.898436 0.254) (xy -4.2672 0.254)
(xy -4.44583 0.254) (xy -5.6642 0.254) (xy -5.6642 2.402836) (xy -5.50545 2.435)
(xy -5.26441 2.508992) (xy -5.039505 2.626981) (xy -4.83683 2.783166) (xy -4.662482 2.971746)
(xy -4.522558 3.186921) (xy -4.423154 3.422888) (xy -4.406274 3.480951) (xy -4.381727 3.620252)
(xy -4.371051 3.787532) (xy -4.374208 3.96191) (xy -4.391159 4.122506) (xy -4.407622 4.202371)
(xy -4.497361 4.448972) (xy -4.629777 4.672507) (xy -4.800076 4.867998) (xy -5.003463 5.030468)
(xy -5.235146 5.154939) (xy -5.373972 5.20573) (xy -5.541781 5.241243) (xy -5.735613 5.256351)
(xy -5.934948 5.251011) (xy -6.119269 5.225177) (xy -6.189681 5.207498) (xy -6.433358 5.109732)
(xy -6.65423 4.969601) (xy -6.847012 4.792425) (xy -7.006421 4.583521) (xy -7.127172 4.348208)
(xy -7.172645 4.218139) (xy -7.198738 4.086683) (xy -7.211547 3.926095) (xy -7.21121 3.808058)
(xy -7.010262 3.808058) (xy -7.00647 3.975883) (xy -6.986867 4.126215) (xy -6.973137 4.18158)
(xy -6.879821 4.406449) (xy -6.744107 4.607066) (xy -6.57045 4.778811) (xy -6.363307 4.917062)
(xy -6.18737 4.996466) (xy -6.022546 5.038379) (xy -5.832332 5.05645) (xy -5.636175 5.050715)
(xy -5.453523 5.021211) (xy -5.365991 4.994912) (xy -5.145721 4.887594) (xy -4.952304 4.738294)
(xy -4.789895 4.550477) (xy -4.738176 4.471389) (xy -4.644391 4.281474) (xy -4.590337 4.082423)
(xy -4.572048 3.859318) (xy -4.572001 3.846165) (xy -4.594952 3.599518) (xy -4.660559 3.373731)
(xy -4.763948 3.171724) (xy -4.900246 2.996419) (xy -5.064582 2.850738) (xy -5.252081 2.737602)
(xy -5.457871 2.659933) (xy -5.67708 2.620652) (xy -5.904835 2.62268) (xy -6.136263 2.668941)
(xy -6.366491 2.762354) (xy -6.373537 2.766025) (xy -6.535111 2.874701) (xy -6.687384 3.021435)
(xy -6.82007 3.193493) (xy -6.922881 3.378142) (xy -6.970717 3.5052) (xy -6.998319 3.644057)
(xy -7.010262 3.808058) (xy -7.21121 3.808058) (xy -7.211062 3.75628) (xy -7.197271 3.597142)
(xy -7.173053 3.47806) (xy -7.075264 3.230626) (xy -6.936063 3.004488) (xy -6.76119 2.806602)
(xy -6.556386 2.643923) (xy -6.419824 2.565257) (xy -6.32518 2.519766) (xy -6.245338 2.484827)
(xy -6.192816 2.465777) (xy -6.181959 2.4638) (xy -6.174213 2.457188) (xy -6.167655 2.43491)
(xy -6.162192 2.393297) (xy -6.157732 2.328682) (xy -6.154182 2.237397) (xy -6.15145 2.115776)
(xy -6.149444 1.960149) (xy -6.148071 1.766851) (xy -6.147238 1.532213) (xy -6.146854 1.252569)
(xy -6.1468 1.068528) (xy -6.1468 -0.300639) (xy -4.268052 -0.300639) (xy -3.949853 -0.30907)
(xy -3.631654 -0.3175) (xy -3.054732 0.259902) (xy -2.477809 0.837304) (xy -2.337455 0.822333)
(xy -2.1971 0.807361) (xy -1.637675 0.249795) (xy -1.453352 0.066084) (xy 0.53004 0.066084)
(xy 0.556433 0.202008) (xy 0.618939 0.317359) (xy 0.71082 0.407366) (xy 0.82534 0.467258)
(xy 0.955761 0.492266) (xy 1.095347 0.47762) (xy 1.23736 0.418549) (xy 1.24884 0.411628)
(xy 1.351972 0.320137) (xy 1.418568 0.202046) (xy 1.44641 0.068206) (xy 1.433284 -0.070529)
(xy 1.376975 -0.203307) (xy 1.375025 -0.206408) (xy 1.282393 -0.31471) (xy 1.166529 -0.380206)
(xy 1.021866 -0.405805) (xy 0.992295 -0.4064) (xy 0.83221 -0.386867) (xy 0.704516 -0.32873)
(xy 0.610184 -0.23269) (xy 0.550182 -0.099442) (xy 0.546498 -0.085645) (xy 0.53004 0.066084)
(xy -1.453352 0.066084) (xy -1.078249 -0.307771) (xy -0.341752 -0.305597) (xy 0.394745 -0.303424)
(xy 0.493076 -0.404123) (xy 0.562874 -0.467504) (xy 0.632323 -0.517955) (xy 0.664003 -0.534893)
(xy 0.7366 -0.564964) (xy 0.7366 -0.585756) (xy 1.218174 -0.585756) (xy 1.319155 -0.534239)
(xy 1.402511 -0.47876) (xy 1.479178 -0.407681) (xy 1.491118 -0.393554) (xy 1.5621 -0.304386)
(xy 3.5433 -0.3175) (xy 3.5433 -1.6383) (xy 1.2319 -1.6383) (xy 1.218174 -0.585756)
(xy 0.7366 -0.585756) (xy 0.7366 -1.651249) (xy -1.75895 -1.644775) (xy -4.2545 -1.6383)
(xy -4.261276 -0.96947) (xy -4.268052 -0.300639) (xy -6.1468 -0.300639) (xy -6.1468 -0.326744)
(xy -4.4577 -0.3175) (xy -4.4323 -1.8161) (xy -3.2131 -1.8415) (xy -3.2131 -3.1623)
(xy -3.9243 -3.1877) (xy -3.9243 -4.048849) (xy -3.754719 -4.048849) (xy -3.754315 -3.849399)
(xy -3.753473 -3.679278) (xy -3.752212 -3.54328) (xy -3.750551 -3.446204) (xy -3.748511 -3.392845)
(xy -3.747412 -3.384193) (xy -3.733344 -3.374972) (xy -3.696112 -3.36781) (xy -3.631351 -3.362572)
(xy -3.534692 -3.359124) (xy -3.401771 -3.357328) (xy -3.228219 -3.357051) (xy -3.009671 -3.358157)
(xy -2.92801 -3.358793) (xy -2.1209 -3.3655) (xy -2.1209 -6.1341) (xy -3.7465 -6.1341)
(xy -3.753102 -4.7752) (xy -3.754132 -4.516546) (xy -3.754664 -4.27283) (xy -3.754719 -4.048849)
(xy -3.9243 -4.048849) (xy -3.9243 -6.3119) (xy -1.9431 -6.3119) (xy -1.9431 -3.1877)) (layer F.SilkS) (width 0.01))
)
(module "JPL Robotics:455-1708-ND" (layer F.Cu) (tedit 5CA2AE19) (tstamp 5CAF7EFE)
(at 22.7838 -8.5471)
(path /5CD65A72)
(fp_text reference J10 (at -4.1148 1.3208) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 6posheader (at -3.81 -3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2 2) (end -2 -2) (layer F.SilkS) (width 0.15))
(fp_line (start -2 -2) (end 12 -2) (layer F.SilkS) (width 0.15))
(fp_line (start 12 -2) (end 12 2) (layer F.SilkS) (width 0.15))
(fp_line (start 12 2) (end -2 2) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 165 +12V))
(pad 2 thru_hole circle (at 2 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 4 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 18 GND))
(pad 4 thru_hole circle (at 6 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 170 /TTL_TXD))
(pad 5 thru_hole circle (at 8 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 169 /TTL_RXD))
(pad 6 thru_hole circle (at 10 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 188 "Net-(J10-Pad6)"))
)
(module "JPL Robotics:AE9986-ND" (layer F.Cu) (tedit 5C353962) (tstamp 5CA30712)
(at 91.4654 -36.1315 180)
(path /5C5E7B82)
(fp_text reference U2 (at 2.54 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM358-N (at 5.08 -10.16 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -9.525) (end -1.27 -6.985) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 -9.525) (end 8.89 -6.985) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 1.905) (end -1.27 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 -9.525) (end 8.89 -9.525) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 -6.985) (end -1.27 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 1.905) (end 8.89 -6.985) (layer F.SilkS) (width 0.15))
(pad 8 thru_hole circle (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 7 thru_hole circle (at 2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 /RC5EN2A))
(pad 6 thru_hole circle (at 5.08 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 /RC5EN2A))
(pad 5 thru_hole circle (at 7.62 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 156 "Net-(C15-Pad2)"))
(pad 4 thru_hole circle (at 7.62 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 5.08 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 158 "Net-(C13-Pad2)"))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 /RC5EN1A))
(pad 1 thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 /RC5EN1A))
)
(module "JPL Robotics:AE9986-ND" (layer F.Cu) (tedit 5C353962) (tstamp 5CA30700)
(at 91.4654 -50.4571 180)
(path /5C42F3B4)
(fp_text reference U1 (at 2.54 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM358-N (at 5.08 -10.16 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.89 1.905) (end 8.89 -6.985) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 -6.985) (end -1.27 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 -9.525) (end 8.89 -9.525) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 1.905) (end -1.27 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 -9.525) (end 8.89 -6.985) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 -9.525) (end -1.27 -6.985) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 /RC4EN1A))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 /RC4EN1A))
(pad 3 thru_hole circle (at 5.08 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 159 "Net-(C12-Pad2)"))
(pad 4 thru_hole circle (at 7.62 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 GND))
(pad 5 thru_hole circle (at 7.62 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 157 "Net-(C14-Pad2)"))
(pad 6 thru_hole circle (at 5.08 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 /RC4EN2A))
(pad 7 thru_hole circle (at 2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 /RC4EN2A))
(pad 8 thru_hole circle (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module "JPL Robotics:ED1501-ND" (layer F.Cu) (tedit 5C6F2F0A) (tstamp 5C6F2F41)
(at 79.0194 -4.8895 180)
(path /5D149987)
(fp_text reference J13 (at 7.62 -3.3528 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED1501-ND (at -3.81 -3.81 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.905 -3.81) (end -1.905 1.905) (layer F.SilkS) (width 0.15))
(fp_line (start 5.715 -3.81) (end -1.905 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 5.715 1.905) (end 5.715 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.905 1.905) (end 5.715 1.905) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 3.5 0 180) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 165 +12V))
)
(module "JPL Robotics:ED2989-ND USB Conn" (layer F.Cu) (tedit 5C58DF53) (tstamp 5C8969DE)
(at 110.9726 -11.7475)
(path /5CF080B1)
(fp_text reference J14 (at -7.7724 -2.5908) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2989-ND-USB (at -2.54 -5.715) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 9 12.5) (end 9 -1.5) (layer F.SilkS) (width 0.15))
(fp_line (start -9 12.5) (end 9 12.5) (layer F.SilkS) (width 0.15))
(fp_line (start -9 -1.5) (end -9 12.5) (layer F.SilkS) (width 0.15))
(fp_line (start 9 -1.5) (end -9 -1.5) (layer F.SilkS) (width 0.15))
(pad "" np_thru_hole circle (at 6.57 2.71) (size 2.85 2.85) (drill 2.3) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -6.57 2.71) (size 2.85 2.85) (drill 2.3) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 3.5 0 90) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 1 0) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 190 "Net-(J14-Pad3)"))
(pad 2 thru_hole circle (at -1 0) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 189 "Net-(J14-Pad2)"))
(pad 1 thru_hole circle (at -3.5 0) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module "JPL Robotics:D24V22F12 Regulator" (layer F.Cu) (tedit 5C6F47DC) (tstamp 5C7CEDAE)
(at 84.963 -6.858)
(path /5C66C569)
(fp_text reference J11 (at 15.24 -17.5387) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value S7038-ND (at 7.62 -17.78) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.53 1.27) (end -1.27 1.27) (layer B.SilkS) (width 0.15))
(fp_line (start -1.27 -16.53) (end -1.27 1.27) (layer B.SilkS) (width 0.15))
(fp_line (start 16.53 -16.53) (end -1.27 -16.53) (layer B.SilkS) (width 0.15))
(fp_line (start 16.53 1.27) (end 16.53 -16.53) (layer B.SilkS) (width 0.15))
(pad 5 thru_hole circle (at 10.16 0) (size 1.56 1.56) (drill 1.02) (layers *.Cu *.Mask)
(net 165 +12V))
(pad 4 thru_hole circle (at 7.62 0) (size 1.56 1.56) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 5.08 0) (size 1.56 1.56) (drill 1.02) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 2 thru_hole circle (at 2.54 0) (size 1.56 1.56) (drill 1.02) (layers *.Cu *.Mask)
(net 167 /12REG_EN))
(pad 1 thru_hole circle (at 0 0) (size 1.56 1.56) (drill 1.02) (layers *.Cu *.Mask)
(net 166 /PG))
(pad "" np_thru_hole circle (at 1.03 -14.23) (size 3.4 3.4) (drill 2.18) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 14.23 -1.03) (size 3.4 3.4) (drill 2.18) (layers *.Cu *.Mask))
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6F6326)
(at 79.0575 -53.213 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C7F57B1)
(fp_text reference C17 (at 3.81 -2.37 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "JPL Robotics:6x1 Header Pin 0.1 Pitch" (layer F.Cu) (tedit 5C5B4A9D) (tstamp 5C6F2F97)
(at 21.209 -14.6685)
(path /5CBB3432)
(fp_text reference J8 (at -2.794 -0.0254) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 6posheader (at -0.635 -3.175) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 14.224 -1.524) (end -1.524 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 14.224 1.524) (end 14.224 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -1.524 1.524) (end 14.224 1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -1.524 -1.524) (end -1.524 1.524) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 12.7 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 171 /RTS#))
(pad 5 thru_hole circle (at 10.16 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 169 /TTL_RXD))
(pad 4 thru_hole circle (at 7.62 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 170 /TTL_TXD))
(pad 3 thru_hole circle (at 5.08 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 187 "Net-(J8-Pad3)"))
(pad 2 thru_hole circle (at 2.54 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 168 /CTS#))
(pad 1 thru_hole circle (at 0 0) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 18 GND))
)
(module "JPL Robotics:ED2580-ND" (layer F.Cu) (tedit 5C1D55F0) (tstamp 5C6F2F37)
(at 83.7565 -164.973)
(path /5C5FB40D)
(fp_text reference J15 (at -5.4483 -4.2545) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2580-ND (at 0 -6.35) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.81 -5.08) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 -5.08) (end -3.81 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 5.08) (end 8.89 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 5.08) (end 8.89 5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 0) (end -3.81 5.08) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 5.08 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole rect (at 0 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 155 "Net-(D1-Pad1)"))
)
(module "JPL Robotics:ED2627-ND" (layer F.Cu) (tedit 5C1E90D3) (tstamp 5C6F2F20)
(at 15.4305 -57.277)
(path /5C1DE8CB)
(fp_text reference J5 (at -3.9243 -3.6449) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value ED2627-ND (at 1.905 -5.715) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 20.32 4.445) (end -2.54 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start 20.32 -4.445) (end 20.32 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 -4.445) (end 20.32 -4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 4.445) (end -2.54 -4.445) (layer B.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 39 /RC5M2B))
(pad 5 thru_hole circle (at 14 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 38 /RC5M2A))
(pad 4 thru_hole circle (at 10.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 7 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 2 thru_hole circle (at 3.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 46 /RC5M1B))
(pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 37 /RC5M1A))
)
(module "JPL Robotics:ED2627-ND" (layer F.Cu) (tedit 5C1E90D3) (tstamp 5C6F337B)
(at 136.3345 -68.072 180)
(path /5C1D38D8)
(fp_text reference J1 (at -3.6957 3.8227 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value ED2627-ND (at 1.905 -5.715 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 20.32 4.445) (end -2.54 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start 20.32 -4.445) (end 20.32 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 -4.445) (end 20.32 -4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 4.445) (end -2.54 -4.445) (layer B.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 7 /RC1M2B))
(pad 5 thru_hole circle (at 14 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 8 /RC1M2A))
(pad 4 thru_hole circle (at 10.5 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 7 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 2 thru_hole circle (at 3.5 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 2 /RC1M1B))
(pad 1 thru_hole rect (at 0 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 1 /RC1M1A))
)
(module "JPL Robotics:ED2627-ND" (layer F.Cu) (tedit 5C1E90D3) (tstamp 5C6F2EEC)
(at 103.6955 -117.856 180)
(path /5C1DE3E6)
(fp_text reference J4 (at -4.2799 -3.3401 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value ED2627-ND (at 1.905 -5.715 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 20.32 4.445) (end -2.54 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start 20.32 -4.445) (end 20.32 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 -4.445) (end 20.32 -4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 4.445) (end -2.54 -4.445) (layer B.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 36 /RC4M2B))
(pad 5 thru_hole circle (at 14 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 35 /RC4M2A))
(pad 4 thru_hole circle (at 10.5 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 7 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 2 thru_hole circle (at 3.5 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 40 /RC4M1B))
(pad 1 thru_hole rect (at 0 0 180) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 41 /RC4M1A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2EDF)
(at 144.272 -31.623 90)
(path /5C1C977C)
(fp_text reference J17 (at -0.5207 -4.4958 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 4 /RC1EN1B))
(pad 5 thru_hole circle (at 14 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 3 /RC1EN1A))
(pad 4 thru_hole circle (at 10.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 2 /RC1M1B))
(pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 1 /RC1M1A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2EDE)
(at 6.9215 -132.588 270)
(path /5C20319E)
(fp_text reference J25 (at -0.3175 -4.6355 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 186 "Net-(J25-Pad6)"))
(pad 5 thru_hole circle (at 14 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 19 /RC5EN1A_RAW))
(pad 4 thru_hole circle (at 10.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 46 /RC5M1B))
(pad 1 thru_hole rect (at 0 0 270) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 37 /RC5M1A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2ED0)
(at 7.8105 -95.504 270)
(path /5C1FDF7A)
(fp_text reference J21 (at -0.2667 -4.5085 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 29 /RC3EN1B))
(pad 5 thru_hole circle (at 14 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 32 /RC3EN1A))
(pad 4 thru_hole circle (at 10.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 44 /RC3M1B))
(pad 1 thru_hole rect (at 0 0 270) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 45 /RC3M1A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2EC2)
(at 6.9215 -155.575 270)
(path /5C1FC5FB)
(fp_text reference J20 (at -0.4953 -4.5847 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 15 /RC2EN2B))
(pad 5 thru_hole circle (at 14 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 14 /RC2EN2A))
(pad 4 thru_hole circle (at 10.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 9 /RC2M2B))
(pad 1 thru_hole rect (at 0 0 270) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 10 /RC2M2A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2EB4)
(at 144.653 -113.0935 90)
(path /5C1FC5EE)
(fp_text reference J19 (at 0.8128 -4.318 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 16 /RC2EN1B))
(pad 5 thru_hole circle (at 14 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 13 /RC2EN1A))
(pad 4 thru_hole circle (at 10.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 11 /RC2M1B))
(pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 12 /RC2M1A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2EA6)
(at 144.5895 -136.0805 90)
(path /5C2002E3)
(fp_text reference J24 (at 0.1778 -4.3561 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 185 "Net-(J24-Pad6)"))
(pad 5 thru_hole circle (at 14 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 20 /RC4EN2A_RAW))
(pad 4 thru_hole circle (at 10.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 36 /RC4M2B))
(pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 35 /RC4M2A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2E8B)
(at 7.9375 -36.83 270)
(path /5C1FDF87)
(fp_text reference J22 (at -0.2159 -4.4831 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 30 /RC3EN2B))
(pad 5 thru_hole circle (at 14 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 31 /RC3EN2A))
(pad 4 thru_hole circle (at 10.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 43 /RC3M2B))
(pad 1 thru_hole rect (at 0 0 270) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 42 /RC3M2A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2E71)
(at 144.7165 -90.1065 90)
(path /5C1D910F)
(fp_text reference J18 (at 0.4826 -4.3815 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 5 /RC1EN2B))
(pad 5 thru_hole circle (at 14 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 6 /RC1EN2A))
(pad 4 thru_hole circle (at 10.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 7 /RC1M2B))
(pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 8 /RC1M2A))
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C6F2E70)
(at 144.78 -67.183 90)
(path /5C2002D6)
(fp_text reference J23 (at -1.1303 -4.4958 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 183 "Net-(J23-Pad6)"))
(pad 5 thru_hole circle (at 14 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 17 /RC4EN1A_RAW))
(pad 4 thru_hole circle (at 10.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 90) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 40 /RC4M1B))
(pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 41 /RC4M1A))
)
(module "JPL Robotics:ED2989-ND USB Conn" (layer F.Cu) (tedit 5C58DF53) (tstamp 5C6F2E56)
(at 24.765 -161.036 180)
(path /5C5F8A30)
(fp_text reference J12 (at 10.668 11.4935 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2989-ND-USB (at -2.54 -5.715 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 9 12.5) (end 9 -1.5) (layer F.SilkS) (width 0.15))
(fp_line (start -9 12.5) (end 9 12.5) (layer F.SilkS) (width 0.15))
(fp_line (start -9 -1.5) (end -9 12.5) (layer F.SilkS) (width 0.15))
(fp_line (start 9 -1.5) (end -9 -1.5) (layer F.SilkS) (width 0.15))
(pad "" np_thru_hole circle (at 6.57 2.71 180) (size 2.85 2.85) (drill 2.3) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -6.57 2.71 180) (size 2.85 2.85) (drill 2.3) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 3.5 0 270) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 1 0 180) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 182 "Net-(J12-Pad3)"))
(pad 2 thru_hole circle (at -1 0 180) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 181 "Net-(J12-Pad2)"))
(pad 1 thru_hole circle (at -3.5 0 180) (size 1.75 1.75) (drill 0.92) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module "JPL Robotics:Raspberry pi footprint" (layer F.Cu) (tedit 5C5B4CFE) (tstamp 5C6F2E55)
(at 15.367 -129.4765 270)
(path /5C8D5DB2)
(fp_text reference M1 (at -1.2954 -0.8636) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Mounting_Holes (at -8.89 -3.175 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 85.09 -56.515) (end 85.09 -49.53) (layer F.SilkS) (width 0.5))
(fp_line (start 0 -56.515) (end 0 -49.53) (layer F.SilkS) (width 0.5))
(fp_line (start 85.09 0) (end 0 0) (layer F.SilkS) (width 0.5))
(fp_line (start 85.09 -49.53) (end 85.09 0) (layer F.SilkS) (width 0.5))
(fp_line (start 0 -56.515) (end 85.09 -56.515) (layer F.SilkS) (width 0.5))
(fp_line (start 0 0) (end 0 -49.53) (layer F.SilkS) (width 0.5))
(pad "" np_thru_hole circle (at 61.5 -3.5 270) (size 4.6 4.6) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 61.5 -52.5 270) (size 4.6 4.6) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 3.5 -52.5 270) (size 4.6 4.6) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 3.5 -3.5 270) (size 4.6 4.6) (drill 2.9) (layers *.Cu *.Mask))
)
(module "JPL Robotics:S7038-ND" (layer F.Cu) (tedit 5C35384E) (tstamp 5C6F3B95)
(at 116.7765 -160.655 270)
(path /5C216499)
(fp_text reference J9 (at -1.0541 -0.7493) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value S7038-ND (at 2.54 -2.54 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 17.78 0) (end 17.78 -20.32) (layer B.SilkS) (width 0.15))
(fp_line (start 0 -20.32) (end 17.8 -20.32) (layer B.SilkS) (width 0.15))
(fp_line (start 0 0) (end 0 -20.3) (layer B.SilkS) (width 0.15))
(fp_line (start 0 0) (end 17.8 0) (layer B.SilkS) (width 0.15))
(pad "" np_thru_hole circle (at 15.7 -18.1 270) (size 3.2 3.2) (drill 2.4) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 2.2 -2.1 270) (size 3.2 3.2) (drill 2.4) (layers *.Cu *.Mask))
(pad 5 thru_hole circle (at 15.89 -1.27 270) (size 1.65 1.65) (drill 1.02) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 4 thru_hole circle (at 13.35 -1.27 270) (size 1.65 1.65) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 10.81 -1.27 270) (size 1.65 1.65) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 8.27 -1.27 270) (size 1.65 1.65) (drill 1.02) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 1 thru_hole circle (at 5.73 -1.27 270) (size 1.65 1.65) (drill 1.02) (layers *.Cu *.Mask)
(net 25 /5REG_EN))
)
(module "JPL Robotics:S9175-ND" (layer F.Cu) (tedit 5C1D4575) (tstamp 5C6F2D25)
(at 128.27 -130.683 270)
(path /5CC617F0)
(fp_text reference J7 (at -3.8989 1.905 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value S9175-ND (at 2.54 -6.985 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -5.08) (end -2.54 2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 50.8 -5.08) (end -2.54 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start 50.8 2.54) (end 50.8 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 2.54) (end 50.8 2.54) (layer F.SilkS) (width 0.15))
(pad 40 thru_hole circle (at 48.26 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 153 /GPIO21))
(pad 39 thru_hole circle (at 48.26 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 38 thru_hole circle (at 45.72 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 152 /GPIO20))
(pad 37 thru_hole circle (at 45.72 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 151 /GPIO26))
(pad 36 thru_hole circle (at 43.18 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 150 /GPIO16))
(pad 35 thru_hole circle (at 43.18 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 149 /GPIO19))
(pad 34 thru_hole circle (at 40.64 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 33 thru_hole circle (at 40.64 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 148 /GPIO13))
(pad 32 thru_hole circle (at 38.1 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 147 /GPIO12))
(pad 31 thru_hole circle (at 38.1 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 146 /GPIO06))
(pad 30 thru_hole circle (at 35.56 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 29 thru_hole circle (at 35.56 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 145 /GPIO05))
(pad 28 thru_hole circle (at 33.02 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 144 /I2C_ID2))
(pad 27 thru_hole circle (at 33.02 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 143 /I2C_ID1))
(pad 26 thru_hole circle (at 30.48 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 142 /GPI_CE1_N))
(pad 25 thru_hole circle (at 30.48 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 24 thru_hole circle (at 27.94 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 141 /SPI_CEO_N))
(pad 23 thru_hole circle (at 27.94 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 140 /SPI_CLK))
(pad 22 thru_hole circle (at 25.4 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 139 /GPIO_GEN6))
(pad 21 thru_hole circle (at 25.4 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 138 /SPI_MISO))
(pad 20 thru_hole circle (at 22.86 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 19 thru_hole circle (at 22.86 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 137 /SPI_MOSI))
(pad 18 thru_hole circle (at 20.32 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 136 /GPIO_GEN5))
(pad 17 thru_hole circle (at 20.32 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 127 /3.3V))
(pad 16 thru_hole circle (at 17.78 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 180 "Net-(J7-Pad16)"))
(pad 15 thru_hole circle (at 17.78 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 135 /GPIO_GEN3))
(pad 14 thru_hole circle (at 15.24 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 13 thru_hole circle (at 15.24 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 134 /GPIO_GEN2))
(pad 12 thru_hole circle (at 12.7 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 133 /GPIO_GEN1))
(pad 11 thru_hole circle (at 12.7 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 132 /GPIO_GEN0))
(pad 10 thru_hole circle (at 10.16 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 9 thru_hole circle (at 10.16 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 8 thru_hole circle (at 7.62 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 7 thru_hole circle (at 7.62 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 131 /GPIO_CLK))
(pad 6 thru_hole circle (at 5.08 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 18 GND))
(pad 5 thru_hole circle (at 5.08 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 130 /SCL1))
(pad 4 thru_hole circle (at 2.54 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 128 /PI_5V))
(pad 3 thru_hole circle (at 2.54 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 129 /SDA1))
(pad 2 thru_hole circle (at 0 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 128 /PI_5V))
(pad 1 thru_hole circle (at 0 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 127 /3.3V))
)
(module "JPL Robotics:S9175-ND" (layer F.Cu) (tedit 5C1D4575) (tstamp 5C6F2CF6)
(at 116.9035 -130.8005 270)
(path /5C20DA5C)
(fp_text reference J6 (at -3.8322 1.8161 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value S9175-ND (at 2.54 -6.985 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -5.08) (end -2.54 2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 50.8 -5.08) (end -2.54 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start 50.8 2.54) (end 50.8 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 2.54) (end 50.8 2.54) (layer F.SilkS) (width 0.15))
(pad 40 thru_hole circle (at 48.26 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 153 /GPIO21))
(pad 39 thru_hole circle (at 48.26 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 179 "Net-(J6-Pad39)"))
(pad 38 thru_hole circle (at 45.72 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 152 /GPIO20))
(pad 37 thru_hole circle (at 45.72 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 151 /GPIO26))
(pad 36 thru_hole circle (at 43.18 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 150 /GPIO16))
(pad 35 thru_hole circle (at 43.18 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 149 /GPIO19))
(pad 34 thru_hole circle (at 40.64 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 178 "Net-(J6-Pad34)"))
(pad 33 thru_hole circle (at 40.64 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 148 /GPIO13))
(pad 32 thru_hole circle (at 38.1 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 147 /GPIO12))
(pad 31 thru_hole circle (at 38.1 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 146 /GPIO06))
(pad 30 thru_hole circle (at 35.56 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 177 "Net-(J6-Pad30)"))
(pad 29 thru_hole circle (at 35.56 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 145 /GPIO05))
(pad 28 thru_hole circle (at 33.02 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 144 /I2C_ID2))
(pad 27 thru_hole circle (at 33.02 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 143 /I2C_ID1))
(pad 26 thru_hole circle (at 30.48 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 142 /GPI_CE1_N))
(pad 25 thru_hole circle (at 30.48 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 176 "Net-(J6-Pad25)"))
(pad 24 thru_hole circle (at 27.94 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 141 /SPI_CEO_N))
(pad 23 thru_hole circle (at 27.94 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 140 /SPI_CLK))
(pad 22 thru_hole circle (at 25.4 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 139 /GPIO_GEN6))
(pad 21 thru_hole circle (at 25.4 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 138 /SPI_MISO))
(pad 20 thru_hole circle (at 22.86 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 175 "Net-(J6-Pad20)"))
(pad 19 thru_hole circle (at 22.86 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 137 /SPI_MOSI))
(pad 18 thru_hole circle (at 20.32 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 136 /GPIO_GEN5))
(pad 17 thru_hole circle (at 20.32 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 127 /3.3V))
(pad 16 thru_hole circle (at 17.78 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 160 /E_STOP))
(pad 15 thru_hole circle (at 17.78 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 135 /GPIO_GEN3))
(pad 14 thru_hole circle (at 15.24 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 174 "Net-(J6-Pad14)"))
(pad 13 thru_hole circle (at 15.24 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 134 /GPIO_GEN2))
(pad 12 thru_hole circle (at 12.7 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 133 /GPIO_GEN1))
(pad 11 thru_hole circle (at 12.7 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 132 /GPIO_GEN0))
(pad 10 thru_hole circle (at 10.16 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 9 thru_hole circle (at 10.16 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 173 "Net-(J6-Pad9)"))
(pad 8 thru_hole circle (at 7.62 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 7 thru_hole circle (at 7.62 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 131 /GPIO_CLK))
(pad 6 thru_hole circle (at 5.08 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 172 "Net-(J6-Pad6)"))
(pad 5 thru_hole circle (at 5.08 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 130 /SCL1))
(pad 4 thru_hole circle (at 2.54 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 128 /PI_5V))
(pad 3 thru_hole circle (at 2.54 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 129 /SDA1))
(pad 2 thru_hole circle (at 0 -2.54 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 128 /PI_5V))
(pad 1 thru_hole circle (at 0 0 270) (size 1.524 1.524) (drill 0.9) (layers *.Cu *.Mask)
(net 127 /3.3V))
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6F2CF5)
(at 135.509 -108.2675 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C97F3E4)
(fp_text reference C3 (at 1.3716 -2.3876 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6F2BEC)
(at 14.732 -149.479 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C9CEA0F)
(fp_text reference C5 (at 1.2827 -2.5654 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6F2BD5)
(at 135.382 -127.635 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C9A6AC1)
(fp_text reference C4 (at 1.3335 -2.4638 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6F3E94)
(at 129.7305 -49.911 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C799779)
(fp_text reference C2 (at 1.4351 2.1971 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6F2A9F)
(at 20.7645 -156.6545)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C660555)
(fp_text reference C1 (at 1.6637 2.667) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 0.1mF (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "JPL Robotics:ED2744-ND" (layer F.Cu) (tedit 5C1D3777) (tstamp 5C5AA321)
(at 8.001 -59.817 270)
(path /5C2031AB)
(fp_text reference J26 (at -0.0889 -4.7244 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2744-ND (at -2.5 -5 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -2.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 -3.5) (end -2.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 20 3.5) (end 20 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -2.5 3.5) (end 20 3.5) (layer F.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 184 "Net-(J26-Pad6)"))
(pad 5 thru_hole circle (at 14 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 21 /RC5EN2A_RAW))
(pad 4 thru_hole circle (at 10.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 3 thru_hole circle (at 7 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 2 thru_hole circle (at 3.5 0 270) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 39 /RC5M2B))
(pad 1 thru_hole rect (at 0 0 270) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 38 /RC5M2A))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C681373)
(at 121.3485 -35.7505)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CA3C9A1)
(attr virtual)
(fp_text reference T21 (at -2.4765 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 21 /RC5EN2A_RAW))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C75174D)
(at 74.2315 -31.3055)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C9EE3A4)
(attr virtual)
(fp_text reference T12 (at 2.667 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 34 /RC5EN1A))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F2BB)
(at 74.2315 -35.941 180)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C482D39)
(attr virtual)
(fp_text reference T11 (at -2.7305 -0.0635 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0 180) (size 1 1) (layers F.Cu F.Mask)
(net 27 /RC4EN1A))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F2A1)
(at 105.791 -23.4315)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CAB2CDC)
(attr virtual)
(fp_text reference T19 (at -2.413 -0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 191 "Net-(T19-Pad1)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F294)
(at 104.4575 -57.3405)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C7C77B3)
(attr virtual)
(fp_text reference T18 (at -2.3495 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 157 "Net-(C14-Pad2)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F287)
(at 74.295 -29.083)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CB511FD)
(attr virtual)
(fp_text reference T17 (at 2.54 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 33 /RC5EN2A))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F27A)
(at 74.168 -33.5915)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C863510)
(attr virtual)
(fp_text reference T16 (at 2.667 -0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 28 /RC4EN2A))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F26D)
(at 74.295 -38.1635)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CBA1043)
(attr virtual)
(fp_text reference T15 (at 2.7305 -0.127) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 18 GND))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F260)
(at 121.3485 -37.973)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C83C337)
(attr virtual)
(fp_text reference T14 (at -2.4765 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 193 "Net-(T14-Pad1)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C7517E5)
(at 74.295 -40.513)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CA156A5)
(attr virtual)
(fp_text reference T13 (at 2.6035 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 23 +5V))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F246)
(at 121.3485 -39.751 180)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C45D826)
(attr virtual)
(fp_text reference T9 (at 2.2225 0.0635 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0 180) (size 1 1) (layers F.Cu F.Mask)
(net 17 /RC4EN1A_RAW))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C70112C)
(at 105.791 -21.717)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CADA3D0)
(attr virtual)
(fp_text reference T8 (at -1.9685 -0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 158 "Net-(C13-Pad2)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C7515ED)
(at 104.4575 -59.055)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C7A0C73)
(attr virtual)
(fp_text reference T7 (at -2.0955 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 159 "Net-(C12-Pad2)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F21F)
(at 89.3826 -11.3284)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5CADEB30)
(attr virtual)
(fp_text reference T6 (at -2.159 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 18 GND))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F212)
(at 89.408 -9.2075)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C8D22CC)
(attr virtual)
(fp_text reference T5 (at -2.0955 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 165 +12V))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F205)
(at 85.09 -145.415)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C3ED8ED)
(attr virtual)
(fp_text reference T4 (at -1.8415 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 23 +5V))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C700C0C)
(at 85.0646 -148.5519)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C331E50)
(attr virtual)
(fp_text reference T3 (at -1.8415 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 192 "Net-(T3-Pad1)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F1EB)
(at 85.1281 -151.3078)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C412E03)
(attr virtual)
(fp_text reference T2 (at -1.7145 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 18 GND))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F1DE)
(at 121.412 -33.8455 180)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C950487)
(attr virtual)
(fp_text reference T10 (at 2.667 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0 180) (size 1 1) (layers F.Cu F.Mask)
(net 19 /RC5EN1A_RAW))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F1D1)
(at 85.1154 -154.1399)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C438314)
(attr virtual)
(fp_text reference T1 (at -1.7145 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 155 "Net-(D1-Pad1)"))
)
(module TestPoint:TestPoint_Pad_1.0x1.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 5C67F1C4)
(at 121.3485 -42.4815)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(path /5C72CE72)
(attr virtual)
(fp_text reference T20 (at -2.413 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value test_point (at 0 1.55) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end -1 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -1) (end 1 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at 0 0) (size 1 1) (layers F.Cu F.Mask)
(net 20 /RC4EN2A_RAW))
)
(module "JPL Robotics:Roboclaw Mount" (layer F.Cu) (tedit 5C5B4C78) (tstamp 5C98FB92)
(at 74.168 -65.913)
(path /5CA715BC)
(fp_text reference RC4 (at 21.59 -24.13) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value RoboClaw (at -8.89 -47.625) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.49 -45.39) (end -2.49 2.87) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 -45.39) (end -2.49 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 2.87) (end 39.166 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start -2.49 2.87) (end 39.166 2.87) (layer B.SilkS) (width 0.5))
(pad "" np_thru_hole circle (at 36.449 -42.545) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -42.545) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 36.449 0) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad 25 thru_hole circle (at 29.62 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 126 "Net-(RC4-Pad25)"))
(pad 24 thru_hole circle (at 27.08 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 125 "Net-(RC4-Pad24)"))
(pad 23 thru_hole circle (at 24.54 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 160 /E_STOP))
(pad 22 thru_hole circle (at 22 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 21 thru_hole circle (at 19.46 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 20 thru_hole circle (at 29.62 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 124 "Net-(RC4-Pad20)"))
(pad 19 thru_hole circle (at 29.62 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 123 "Net-(RC4-Pad19)"))
(pad 18 thru_hole circle (at 27.08 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 122 "Net-(RC4-Pad18)"))
(pad 17 thru_hole circle (at 27.08 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 121 "Net-(RC4-Pad17)"))
(pad 16 thru_hole circle (at 24.54 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 120 "Net-(RC4-Pad16)"))
(pad 15 thru_hole circle (at 24.54 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 119 "Net-(RC4-Pad15)"))
(pad 14 thru_hole circle (at 22 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 118 "Net-(RC4-Pad14)"))
(pad 13 thru_hole circle (at 22 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 117 "Net-(RC4-Pad13)"))
(pad 12 thru_hole circle (at 19.46 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 116 "Net-(RC4-Pad12)"))
(pad 11 thru_hole circle (at 19.46 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 115 "Net-(RC4-Pad11)"))
(pad 10 thru_hole circle (at 16.92 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 163 "Net-(RC4-Pad10)"))
(pad 9 thru_hole circle (at 16.92 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 28 /RC4EN2A))
(pad 8 thru_hole circle (at 14.38 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 164 "Net-(RC4-Pad8)"))
(pad 7 thru_hole circle (at 14.38 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 27 /RC4EN1A))
(pad 6 thru_hole circle (at 11.84 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 114 "Net-(RC4-Pad6)"))
(pad 5 thru_hole circle (at 11.84 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 113 "Net-(RC4-Pad5)"))
(pad 4 thru_hole circle (at 9.3 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 112 "Net-(RC4-Pad4)"))
(pad 3 thru_hole circle (at 9.3 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 111 "Net-(RC4-Pad3)"))
(pad 2 thru_hole circle (at 6.76 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 6.76 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728CB2)
(at 103.9495 -43.18 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C58A0B6)
(fp_text reference R8 (at 5.7785 -2.2733 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 157 "Net-(C14-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "JPL Robotics:Roboclaw Mount" (layer F.Cu) (tedit 5C5B4C78) (tstamp 5C739008)
(at 75.565 -158.75 180)
(path /5CA6278B)
(fp_text reference RC2 (at 20.32 -25.4 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value RoboClaw (at -8.89 -47.625 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.49 -45.39) (end -2.49 2.87) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 -45.39) (end -2.49 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 2.87) (end 39.166 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start -2.49 2.87) (end 39.166 2.87) (layer B.SilkS) (width 0.5))
(pad "" np_thru_hole circle (at 36.449 -42.545 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -42.545 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 36.449 0 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad 25 thru_hole circle (at 29.62 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 94 "Net-(RC2-Pad25)"))
(pad 24 thru_hole circle (at 27.08 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 93 "Net-(RC2-Pad24)"))
(pad 23 thru_hole circle (at 24.54 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 160 /E_STOP))
(pad 22 thru_hole circle (at 22 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 21 thru_hole circle (at 19.46 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 20 thru_hole circle (at 29.62 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 92 "Net-(RC2-Pad20)"))
(pad 19 thru_hole circle (at 29.62 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 91 "Net-(RC2-Pad19)"))
(pad 18 thru_hole circle (at 27.08 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 90 "Net-(RC2-Pad18)"))
(pad 17 thru_hole circle (at 27.08 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 89 "Net-(RC2-Pad17)"))
(pad 16 thru_hole circle (at 24.54 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 88 "Net-(RC2-Pad16)"))
(pad 15 thru_hole circle (at 24.54 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 87 "Net-(RC2-Pad15)"))
(pad 14 thru_hole circle (at 22 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 86 "Net-(RC2-Pad14)"))
(pad 13 thru_hole circle (at 22 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 85 "Net-(RC2-Pad13)"))
(pad 12 thru_hole circle (at 19.46 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 84 "Net-(RC2-Pad12)"))
(pad 11 thru_hole circle (at 19.46 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 83 "Net-(RC2-Pad11)"))
(pad 10 thru_hole circle (at 16.92 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 15 /RC2EN2B))
(pad 9 thru_hole circle (at 16.92 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 14 /RC2EN2A))
(pad 8 thru_hole circle (at 14.38 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 16 /RC2EN1B))
(pad 7 thru_hole circle (at 14.38 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 13 /RC2EN1A))
(pad 6 thru_hole circle (at 11.84 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 82 "Net-(RC2-Pad6)"))
(pad 5 thru_hole circle (at 11.84 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 81 "Net-(RC2-Pad5)"))
(pad 4 thru_hole circle (at 9.3 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 80 "Net-(RC2-Pad4)"))
(pad 3 thru_hole circle (at 9.3 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 79 "Net-(RC2-Pad3)"))
(pad 2 thru_hole circle (at 6.76 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 6.76 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module "JPL Robotics:Roboclaw Mount" (layer F.Cu) (tedit 5C5B4C78) (tstamp 5C738068)
(at 109.982 -16.256)
(path /5C98E834)
(fp_text reference RC1 (at 20.32 -25.4) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value RoboClaw (at -8.89 -47.625) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.49 -45.39) (end -2.49 2.87) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 -45.39) (end -2.49 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 2.87) (end 39.166 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start -2.49 2.87) (end 39.166 2.87) (layer B.SilkS) (width 0.5))
(pad "" np_thru_hole circle (at 36.449 -42.545) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -42.545) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 36.449 0) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad 25 thru_hole circle (at 29.62 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 63 "Net-(RC1-Pad25)"))
(pad 24 thru_hole circle (at 27.08 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 64 "Net-(RC1-Pad24)"))
(pad 23 thru_hole circle (at 24.54 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 160 /E_STOP))
(pad 22 thru_hole circle (at 22 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 21 thru_hole circle (at 19.46 -0.73) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 20 thru_hole circle (at 29.62 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 65 "Net-(RC1-Pad20)"))
(pad 19 thru_hole circle (at 29.62 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 66 "Net-(RC1-Pad19)"))
(pad 18 thru_hole circle (at 27.08 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 67 "Net-(RC1-Pad18)"))
(pad 17 thru_hole circle (at 27.08 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 68 "Net-(RC1-Pad17)"))
(pad 16 thru_hole circle (at 24.54 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 69 "Net-(RC1-Pad16)"))
(pad 15 thru_hole circle (at 24.54 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 70 "Net-(RC1-Pad15)"))
(pad 14 thru_hole circle (at 22 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 71 "Net-(RC1-Pad14)"))
(pad 13 thru_hole circle (at 22 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 72 "Net-(RC1-Pad13)"))
(pad 12 thru_hole circle (at 19.46 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 73 "Net-(RC1-Pad12)"))
(pad 11 thru_hole circle (at 19.46 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 74 "Net-(RC1-Pad11)"))
(pad 10 thru_hole circle (at 16.92 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 5 /RC1EN2B))
(pad 9 thru_hole circle (at 16.92 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 6 /RC1EN2A))
(pad 8 thru_hole circle (at 14.38 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 4 /RC1EN1B))
(pad 7 thru_hole circle (at 14.38 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 3 /RC1EN1A))
(pad 6 thru_hole circle (at 11.84 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 75 "Net-(RC1-Pad6)"))
(pad 5 thru_hole circle (at 11.84 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 76 "Net-(RC1-Pad5)"))
(pad 4 thru_hole circle (at 9.3 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 77 "Net-(RC1-Pad4)"))
(pad 3 thru_hole circle (at 9.3 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 78 "Net-(RC1-Pad3)"))
(pad 2 thru_hole circle (at 6.76 -5.81) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 6.76 -3.27) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657C93)
(at 32.004 -124.3965 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5CD470CF)
(fp_text reference C10 (at 5.7658 -2.667 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657C7C)
(at 127.4445 -149.2885)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5CB308E5)
(fp_text reference C9 (at 3.8481 -2.4638) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657C65)
(at 138.0998 -76.0603 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5CB308DC)
(fp_text reference C8 (at 1.5494 -2.2352 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657C4E)
(at 16.256 -18.7325 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5CB308D3)
(fp_text reference C7 (at 6.1722 2.5146 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C71E95D)
(at 22.2885 -98.7425 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5CB308BE)
(fp_text reference C6 (at 6.223 -2.8321 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657BDB)
(at 107.823 -53.721)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5D66DCD2)
(fp_text reference C12 (at 5.7404 -2.37) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 159 "Net-(C12-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657BC4)
(at 107.5055 -26.0985)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5D72C180)
(fp_text reference C13 (at 6.1087 2.5146) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 158 "Net-(C13-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657BAD)
(at 96.3295 -53.848)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5D6CD271)
(fp_text reference C14 (at 1.7399 -2.2479) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 157 "Net-(C14-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657B96)
(at 96.393 -25.9715)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5D6FC9F8)
(fp_text reference C15 (at 0.508 2.4384) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 156 "Net-(C15-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C657B7F)
(at 24.0665 -42.037 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5CD470DD)
(fp_text reference C11 (at 5.8547 -2.8067 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6579AC)
(at 75.7555 -53.213 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C4A3FF5)
(fp_text reference C16 (at 3.81 -2.37 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C4AE55C)
(at 104.013 -29.464 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C5E7BB2)
(fp_text reference R10 (at 5.7912 2.0955 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 156 "Net-(C15-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "JPL Robotics:Roboclaw Mount" (layer F.Cu) (tedit 5C5B4C78) (tstamp 5C737F24)
(at 76.835 -58.801 180)
(path /5CA49659)
(fp_text reference RC3 (at 19.05 -26.67 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value RoboClaw (at -8.89 -47.625 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.49 -45.39) (end -2.49 2.87) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 -45.39) (end -2.49 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 2.87) (end 39.166 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start -2.49 2.87) (end 39.166 2.87) (layer B.SilkS) (width 0.5))
(pad "" np_thru_hole circle (at 36.449 -42.545 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -42.545 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 36.449 0 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad 25 thru_hole circle (at 29.62 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 95 "Net-(RC3-Pad25)"))
(pad 24 thru_hole circle (at 27.08 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 96 "Net-(RC3-Pad24)"))
(pad 23 thru_hole circle (at 24.54 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 160 /E_STOP))
(pad 22 thru_hole circle (at 22 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 21 thru_hole circle (at 19.46 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 20 thru_hole circle (at 29.62 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 97 "Net-(RC3-Pad20)"))
(pad 19 thru_hole circle (at 29.62 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 98 "Net-(RC3-Pad19)"))
(pad 18 thru_hole circle (at 27.08 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 99 "Net-(RC3-Pad18)"))
(pad 17 thru_hole circle (at 27.08 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 100 "Net-(RC3-Pad17)"))
(pad 16 thru_hole circle (at 24.54 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 101 "Net-(RC3-Pad16)"))
(pad 15 thru_hole circle (at 24.54 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 102 "Net-(RC3-Pad15)"))
(pad 14 thru_hole circle (at 22 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 103 "Net-(RC3-Pad14)"))
(pad 13 thru_hole circle (at 22 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 104 "Net-(RC3-Pad13)"))
(pad 12 thru_hole circle (at 19.46 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 105 "Net-(RC3-Pad12)"))
(pad 11 thru_hole circle (at 19.46 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 106 "Net-(RC3-Pad11)"))
(pad 10 thru_hole circle (at 16.92 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 30 /RC3EN2B))
(pad 9 thru_hole circle (at 16.92 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 31 /RC3EN2A))
(pad 8 thru_hole circle (at 14.38 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 29 /RC3EN1B))
(pad 7 thru_hole circle (at 14.38 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 32 /RC3EN1A))
(pad 6 thru_hole circle (at 11.84 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 107 "Net-(RC3-Pad6)"))
(pad 5 thru_hole circle (at 11.84 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 108 "Net-(RC3-Pad5)"))
(pad 4 thru_hole circle (at 9.3 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 109 "Net-(RC3-Pad4)"))
(pad 3 thru_hole circle (at 9.3 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 110 "Net-(RC3-Pad3)"))
(pad 2 thru_hole circle (at 6.76 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 6.76 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module "JPL Robotics:Roboclaw Mount" (layer F.Cu) (tedit 5C5B4C78) (tstamp 5C737FFC)
(at 41.402 -109.093 180)
(path /5CA5531B)
(fp_text reference RC5 (at 19.05 -22.86 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value RoboClaw (at -8.89 -47.625 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.49 -45.39) (end -2.49 2.87) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 -45.39) (end -2.49 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start 39.166 2.87) (end 39.166 -45.39) (layer B.SilkS) (width 0.5))
(fp_line (start -2.49 2.87) (end 39.166 2.87) (layer B.SilkS) (width 0.5))
(pad "" np_thru_hole circle (at 36.449 -42.545 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -42.545 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 36.449 0 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.8 3.8) (drill 2.9) (layers *.Cu *.Mask))
(pad 25 thru_hole circle (at 29.62 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 62 "Net-(RC5-Pad25)"))
(pad 24 thru_hole circle (at 27.08 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 61 "Net-(RC5-Pad24)"))
(pad 23 thru_hole circle (at 24.54 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 160 /E_STOP))
(pad 22 thru_hole circle (at 22 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 22 /RXD))
(pad 21 thru_hole circle (at 19.46 -0.73 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 24 /TXD))
(pad 20 thru_hole circle (at 29.62 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 60 "Net-(RC5-Pad20)"))
(pad 19 thru_hole circle (at 29.62 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 59 "Net-(RC5-Pad19)"))
(pad 18 thru_hole circle (at 27.08 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 58 "Net-(RC5-Pad18)"))
(pad 17 thru_hole circle (at 27.08 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 57 "Net-(RC5-Pad17)"))
(pad 16 thru_hole circle (at 24.54 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 56 "Net-(RC5-Pad16)"))
(pad 15 thru_hole circle (at 24.54 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 55 "Net-(RC5-Pad15)"))
(pad 14 thru_hole circle (at 22 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 54 "Net-(RC5-Pad14)"))
(pad 13 thru_hole circle (at 22 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 53 "Net-(RC5-Pad13)"))
(pad 12 thru_hole circle (at 19.46 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 52 "Net-(RC5-Pad12)"))
(pad 11 thru_hole circle (at 19.46 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 51 "Net-(RC5-Pad11)"))
(pad 10 thru_hole circle (at 16.92 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 161 "Net-(RC5-Pad10)"))
(pad 9 thru_hole circle (at 16.92 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 33 /RC5EN2A))
(pad 8 thru_hole circle (at 14.38 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 162 "Net-(RC5-Pad8)"))
(pad 7 thru_hole circle (at 14.38 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 34 /RC5EN1A))
(pad 6 thru_hole circle (at 11.84 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 50 "Net-(RC5-Pad6)"))
(pad 5 thru_hole circle (at 11.84 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 49 "Net-(RC5-Pad5)"))
(pad 4 thru_hole circle (at 9.3 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 48 "Net-(RC5-Pad4)"))
(pad 3 thru_hole circle (at 9.3 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 47 "Net-(RC5-Pad3)"))
(pad 2 thru_hole circle (at 6.76 -5.81 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 6.76 -3.27 180) (size 1.6 1.6) (drill 1.02) (layers *.Cu *.Mask)
(net 23 +5V))
)
(module "JPL Robotics:#6THRU-HOLE" (layer F.Cu) (tedit 5C6F475E) (tstamp 5C2FC027)
(at 5.3796 -5.8496)
(path /5C29B1A8)
(fp_text reference MH1 (at -0.38 5.206) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "#6THRU-HOLE" (at -8.128 -3.302) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 6.5 6.5) (drill 3.8) (layers *.Cu *.Mask))
)
(module "JPL Robotics:#6THRU-HOLE" (layer F.Cu) (tedit 5C6F475E) (tstamp 5C611DD2)
(at 5.3796 -166.2275)
(path /5C29B335)
(fp_text reference MH2 (at -0.126 -4.672) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "#6THRU-HOLE" (at -8.128 -3.302) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 6.5 6.5) (drill 3.8) (layers *.Cu *.Mask))
)
(module "JPL Robotics:#6THRU-HOLE" (layer F.Cu) (tedit 5C6F475E) (tstamp 5C2FC01D)
(at 146.6204 -166.1404)
(path /5C2C0841)
(fp_text reference MH3 (at 0.018 4.726) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "#6THRU-HOLE" (at -8.128 -3.302) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 6.5 6.5) (drill 3.8) (layers *.Cu *.Mask))
)
(module "JPL Robotics:#6THRU-HOLE" (layer F.Cu) (tedit 5C6F475E) (tstamp 5C2FC018)
(at 146.602 -5.8496)
(path /5C2E5D4E)
(fp_text reference MH4 (at 0.018 5.46) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "#6THRU-HOLE" (at -8.128 -3.302) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 6.5 6.5) (drill 3.8) (layers *.Cu *.Mask))
)
(module "JPL Robotics:497-2738-5-ND" (layer F.Cu) (tedit 5C2017AD) (tstamp 5C2034BD)
(at 98.2345 -162.4584)
(path /5C2250A4)
(fp_text reference D1 (at 7.874 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value D (at -6.35 -4.826) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_poly (pts (xy 1.778 -0.762) (xy 2.794 0) (xy 1.778 0.762)) (layer F.SilkS) (width 0.15))
(fp_line (start 2.794 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.778 0.762) (end 1.778 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.794 0) (end 1.778 0.762) (layer F.SilkS) (width 0.15))
(fp_line (start 1.778 -0.762) (end 2.794 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.778 0) (end 1.778 -0.762) (layer F.SilkS) (width 0.15))
(fp_line (start 1.016 0) (end 1.778 0) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 5 0) (size 1.55 1.55) (drill 0.9) (layers *.Cu *.Mask)
(net 154 "Net-(D1-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 1.55 1.55) (drill 0.9) (layers *.Cu *.Mask)
(net 155 "Net-(D1-Pad1)"))
)
(module "JPL Robotics:507-1937-1-ND" (layer F.Cu) (tedit 5C2015E6) (tstamp 5C2034DF)
(at 98.171 -168.8719)
(path /5C224EF3)
(fp_text reference F1 (at 7.874 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Fuse (at -2.794 -5.08) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 1.27) (end -1.27 0) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 5.08 0) (size 1.55 1.55) (drill 1) (layers *.Cu *.Mask)
(net 154 "Net-(D1-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 1.55 1.55) (drill 1) (layers *.Cu *.Mask)
(net 155 "Net-(D1-Pad1)"))
)
(module "JPL Robotics:ED2580-ND" (layer F.Cu) (tedit 5C1D55F0) (tstamp 5C5AA3B2)
(at 128.2065 -165.227)
(path /5C47E476)
(fp_text reference J16 (at -5.715 -3.937) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2580-ND (at 0 -6.35) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.81 -5.08) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 -5.08) (end -3.81 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 5.08) (end 8.89 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 5.08) (end 8.89 5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 0) (end -3.81 5.08) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 5.08 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 1 thru_hole rect (at 0 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 154 "Net-(D1-Pad2)"))
)
(module "JPL Robotics:ED2580-ND" (layer F.Cu) (tedit 5C1D55F0) (tstamp 5C95F0E5)
(at 130.556 -7.366)
(path /5C5FB40D)
(fp_text reference J16 (at 10.4902 -4.064) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ED2580-ND (at 0 -6.35) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.81 -5.08) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 -5.08) (end -3.81 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 5.08) (end 8.89 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 5.08) (end 8.89 5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 0) (end -3.81 5.08) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 5.08 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole rect (at 0 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask)
(net 26 +BATT))
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728C70)
(at 112.014 -166.3065)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C51BA25)
(fp_text reference R2 (at 1.397 2.667) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 154 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C800AF2)
(at 109.982 -97.409 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C20DD67)
(fp_text reference R1 (at 6.1595 2.413 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 4.7K (at 3.81 2.37 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 +5V))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 /RXD))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C6FC115)
(at 104.3305 -35.687 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C5E7B98)
(fp_text reference R6 (at 6.2103 2.2225 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 158 "Net-(C13-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728BEC)
(at 115.5065 -43.3705 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C58A0AF)
(fp_text reference R7 (at 1.5367 -2.413 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 157 "Net-(C14-Pad2)"))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 /RC4EN2A_RAW))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728D78)
(at 115.1255 -29.4005 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C5E7BAB)
(fp_text reference R9 (at 1.4605 2.3114 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 156 "Net-(C15-Pad2)"))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 /RC5EN2A_RAW))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728D36)
(at 115.443 -35.6235 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C5E7B91)
(fp_text reference R5 (at 1.524 2.3876 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 158 "Net-(C13-Pad2)"))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 /RC5EN1A_RAW))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728CF4)
(at 103.9495 -49.657 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C46FD67)
(fp_text reference R4 (at 6.0325 -2.2987 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 159 "Net-(C12-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C728EE0)
(at 115.443 -49.657 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C468E7A)
(fp_text reference R3 (at 1.3208 -2.276565 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22K (at 3.81 2.37 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 159 "Net-(C12-Pad2)"))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 /RC4EN1A_RAW))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "JPL Robotics:ED2627-ND" (layer F.Cu) (tedit 5C1E90D3) (tstamp 5C739085)
(at 50.292 -7.874)
(path /5C1DDF02)
(fp_text reference J3 (at 21.59 -3.81) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value ED2627-ND (at 1.905 -5.715) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 20.32 4.445) (end -2.54 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start 20.32 -4.445) (end 20.32 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 -4.445) (end 20.32 -4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 4.445) (end -2.54 -4.445) (layer B.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 43 /RC3M2B))
(pad 5 thru_hole circle (at 14 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 42 /RC3M2A))
(pad 4 thru_hole circle (at 10.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 7 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 2 thru_hole circle (at 3.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 44 /RC3M1B))
(pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 45 /RC3M1A))
)
(module "JPL Robotics:ED2627-ND" (layer F.Cu) (tedit 5C1E90D3) (tstamp 5C35380A)
(at 48.133 -107.6325)
(path /5C1D3CC3)
(fp_text reference J2 (at 21.844 3.3655) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value ED2627-ND (at 1.905 -5.715) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 20.32 4.445) (end -2.54 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start 20.32 -4.445) (end 20.32 4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 -4.445) (end 20.32 -4.445) (layer B.SilkS) (width 0.15))
(fp_line (start -2.54 4.445) (end -2.54 -4.445) (layer B.SilkS) (width 0.15))
(pad 6 thru_hole circle (at 17.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 9 /RC2M2B))
(pad 5 thru_hole circle (at 14 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 10 /RC2M2A))
(pad 4 thru_hole circle (at 10.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 18 GND))
(pad 3 thru_hole circle (at 7 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 26 +BATT))
(pad 2 thru_hole circle (at 3.5 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 11 /RC2M1B))
(pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1.2) (layers *.Cu *.Mask)
(net 12 /RC2M1A))
)
(gr_text 10k (at 118.0846 -163.7411) (layer F.SilkS) (tstamp 5C95FA06)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +12V (at 92.1385 -9.2075) (layer F.SilkS) (tstamp 5C756CC0)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text GND (at 91.7956 -11.5824) (layer F.SilkS) (tstamp 5C756CC0)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text GND (at 123.8885 -37.973) (layer F.SilkS) (tstamp 5C756CC0)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text EN10_RAW (at 125.349 -35.687) (layer F.SilkS) (tstamp 5C756CC0)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text EN9_RAW (at 125.0315 -33.909) (layer F.SilkS) (tstamp 5C756CC0)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text EN8_RAW (at 125.095 -42.545) (layer F.SilkS) (tstamp 5C756CC0)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text EN7_RAW (at 125.095 -39.751) (layer F.SilkS) (tstamp 5C756BD6)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(gr_text EN10 (at 71.247 -29.1465) (layer F.SilkS) (tstamp 5C756BD6)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN9 (at 71.6915 -31.242) (layer F.SilkS) (tstamp 5C756BD6)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN8 (at 71.628 -33.655) (layer F.SilkS) (tstamp 5C756BD6)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN7 (at 71.6915 -35.8775) (layer F.SilkS) (tstamp 5C756B39)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 71.4375 -38.227) (layer F.SilkS) (tstamp 5C756B39)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 71.374 -40.64) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text N/C (at 87.5665 -3.2385 90) (layer B.SilkS) (tstamp 5C75673C)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text GND (at 92.5195 -3.4925 90) (layer B.SilkS) (tstamp 5C75672A)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text N/C (at 84.8995 -3.2385 90) (layer B.SilkS) (tstamp 5C756729)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text +12V (at 95.0595 -3.2385 90) (layer B.SilkS) (tstamp 5C756728)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text BATT (at 90.17 -3.2385 90) (layer B.SilkS) (tstamp 5C756727)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text "12V REG" (at 82.0166 -13.4747 90) (layer B.SilkS) (tstamp 5C7566FD)
(effects (font (size 2 2) (thickness 0.3)) (justify mirror))
)
(gr_text GND (at 75.057 -7.8867) (layer F.SilkS) (tstamp 5C756689)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +12V (at 79.0702 -7.8867) (layer F.SilkS) (tstamp 5C756677)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "ARDUINO COMM" (at 27.6098 -4.3815) (layer F.SilkS) (tstamp 5C756677)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "USB-TTL \nSERIAL CABLE" (at 27.432 -17.9705) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "BACK-RIGHT CORNER" (at 140.462 -148.463 90) (layer F.SilkS) (tstamp 5C483844)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "ROBOCLAW 4" (at 93.1926 -59.7027) (layer B.SilkS) (tstamp 5C54A2D2)
(effects (font (size 2.5 2.5) (thickness 0.3)) (justify mirror))
)
(gr_line (start 5 -174) (end 147 -174) (layer Edge.Cuts) (width 0.2))
(gr_text IN (at 133.6294 -158.6103) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text OUT (at 128.2446 -158.5595) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text 5V (at 87.6554 -145.4023) (layer F.SilkS) (tstamp 5C4E967D)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "BOARD\nVOLTAGE" (at 89.281 -148.0947) (layer F.SilkS) (tstamp 5C4E967D)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 88.0618 -151.2443) (layer F.SilkS) (tstamp 5C4E9606)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "BATTERY\nVOLTAGE" (at 89.4842 -154.1907) (layer F.SilkS) (tstamp 5C4E9606)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text 10K (at 102.1334 -32.7279) (layer F.SilkS) (tstamp 5C728E5F)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text 10K (at 102.0826 -46.5963) (layer F.SilkS) (tstamp 5C728E62)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text 22K (at 109.6518 -32.6771) (layer F.SilkS) (tstamp 5C728E5C)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text 22K (at 109.8042 -46.6979) (layer F.SilkS) (tstamp 5C95F545)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_circle (center 91.567 -53.2384) (end 91.917 -53.2384) (layer F.SilkS) (width 0.5) (tstamp 5C728F22))
(gr_circle (center 91.4781 -39.0144) (end 91.8281 -39.0144) (layer F.SilkS) (width 0.5) (tstamp 5C728F1F))
(gr_line (start 5 1) (end 147 1) (layer Edge.Cuts) (width 0.2))
(gr_line (start -1 -5) (end -1 -168) (layer Edge.Cuts) (width 0.2) (tstamp 5C72B8C5))
(gr_line (start 153 -5) (end 153 -168) (layer Edge.Cuts) (width 0.2))
(gr_arc (start 5 -5) (end 5 1) (angle 90) (layer Edge.Cuts) (width 0.2))
(gr_arc (start 147 -5) (end 153 -5) (angle 90) (layer Edge.Cuts) (width 0.2))
(gr_arc (start 147 -168) (end 147 -174) (angle 90) (layer Edge.Cuts) (width 0.2))
(gr_arc (start 5 -168) (end -1 -168) (angle 90) (layer Edge.Cuts) (width 0.2))
(gr_text GND (at 89.5985 -158.242) (layer F.SilkS) (tstamp 5C3561EE)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text M2A (at 33.401 -50.673) (layer B.SilkS) (tstamp 5C54A465)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text EN4A (at 1.4605 -141.605) (layer F.SilkS) (tstamp 5C611E98)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text RPI-POWER (at 40.894 -171.7675) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "OPEN SOURCE ROVER\nROBOTIC BREAKOUT BOARD\nV1.0 REV - E" (at 58.3565 -164.0205) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text M1A (at 104.2035 -124.333) (layer B.SilkS) (tstamp 5C54A467)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1B (at 100.6475 -124.333) (layer B.SilkS) (tstamp 5C54A466)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2A (at 86.1695 -124.333) (layer B.SilkS) (tstamp 5C54A465)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text + (at 96.7105 -124.206 180) (layer B.SilkS) (tstamp 5C54A464)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text - (at 93.5355 -124.206 180) (layer B.SilkS) (tstamp 5C54A463)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2B (at 90.1065 -124.333) (layer B.SilkS) (tstamp 5C54A462)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1A (at 136.525 -74.2823) (layer B.SilkS) (tstamp 5C353C98)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1B (at 132.7658 -74.2315) (layer B.SilkS) (tstamp 5C54A466)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2A (at 118.6815 -74.295) (layer B.SilkS) (tstamp 5C54A465)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text + (at 128.905 -74.1045 180) (layer B.SilkS) (tstamp 5C54A464)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text - (at 125.73 -74.1045 180) (layer B.SilkS) (tstamp 5C54A463)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2B (at 122.301 -74.2315) (layer B.SilkS) (tstamp 5C54A462)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1A (at 50.165 -2.032) (layer B.SilkS) (tstamp 5C54A467)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1B (at 53.721 -2.032) (layer B.SilkS) (tstamp 5C54A466)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2A (at 68.199 -2.032) (layer B.SilkS) (tstamp 5C54A465)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text + (at 57.658 -2.159) (layer B.SilkS) (tstamp 5C54A464)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text - (at 60.833 -2.159) (layer B.SilkS) (tstamp 5C54A463)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2B (at 64.262 -2.032) (layer B.SilkS) (tstamp 5C54A462)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1A (at 15.367 -50.673) (layer B.SilkS) (tstamp 5C54A467)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1B (at 18.923 -50.673) (layer B.SilkS) (tstamp 5C54A466)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text + (at 22.86 -50.8) (layer B.SilkS) (tstamp 5C54A464)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text - (at 26.035 -50.8) (layer B.SilkS) (tstamp 5C54A463)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2B (at 29.464 -50.673) (layer B.SilkS) (tstamp 5C54A462)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text - (at 58.674 -101.6) (layer B.SilkS) (tstamp 5C54A3F8)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text + (at 55.499 -101.6) (layer B.SilkS) (tstamp 5C54A3E7)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2A (at 66.04 -101.473) (layer B.SilkS) (tstamp 5C54A3E7)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M2B (at 62.103 -101.473) (layer B.SilkS) (tstamp 5C54A3E7)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1B (at 51.562 -101.473) (layer B.SilkS) (tstamp 5C54A3E7)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text M1A (at 48.006 -101.473) (layer B.SilkS) (tstamp 5C54A3B3)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text "ROBOCLAW 1" (at 132.2578 -11.1887) (layer B.SilkS) (tstamp 5C54A2D2)
(effects (font (size 2.5 2.5) (thickness 0.3)) (justify mirror))
)
(gr_text "ROBOCLAW 3" (at 57.277 -63.8175) (layer B.SilkS) (tstamp 5C54A2D2)
(effects (font (size 2.5 2.5) (thickness 0.3)) (justify mirror))
)
(gr_text "ROBOCLAW 5" (at 21.4503 -114.7826) (layer B.SilkS) (tstamp 5C54A2D2)
(effects (font (size 2.5 2.5) (thickness 0.3)) (justify mirror))
)
(gr_text GND (at 136.7282 -14.0843) (layer F.SilkS) (tstamp 5C75137C)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text +BATT (at 129.8575 -14.097) (layer F.SilkS) (tstamp 5C751376)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "BATTERY OUT" (at 133.096 -0.508) (layer F.SilkS) (tstamp 5C751379)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "RASPBERRY \nPI 3B" (at 41.91 -134.8105) (layer F.SilkS)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text 4.7k (at 107.569 -95.2627 90) (layer F.SilkS) (tstamp 5C483BDD)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "FRONT-LEFT WHEEL" (at 12.446 -25.273 270) (layer F.SilkS) (tstamp 5C483ABF)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "FRONT-LEFT CORNER" (at 12.573 -48.7045 270) (layer F.SilkS) (tstamp 5C483ABF)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "MIDDLE-LEFT WHEEL" (at 12.2555 -83.8835 270) (layer F.SilkS) (tstamp 5C483ABF)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "BACK-LEFT CORNER" (at 11.557 -120.8405 270) (layer F.SilkS) (tstamp 5C72B89B)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "BACK-LEFT WHEEL" (at 11.557 -143.764 270) (layer F.SilkS) (tstamp 5C483AB5)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "RPI_GPIO OUT" (at 134.8105 -87.63 90) (layer F.SilkS) (tstamp 5C483A49)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "RPI_GPIO IN" (at 112.268 -122.682 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "ROBOCLAW 2" (at 57.404 -164.465) (layer B.SilkS) (tstamp 5C483A10)
(effects (font (size 2.5 2.5) (thickness 0.3)) (justify mirror))
)
(gr_text "5V REG" (at 126.6825 -140.1445) (layer B.SilkS)
(effects (font (size 2 2) (thickness 0.3)) (justify mirror))
)
(gr_text N/C (at 114.173 -154.686) (layer B.SilkS) (tstamp 5C483963)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text +5V (at 114.427 -144.526) (layer B.SilkS) (tstamp 5C483954)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text GND (at 114.427 -147.066) (layer B.SilkS) (tstamp 5C483954)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text GND (at 114.427 -149.606) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text BATT (at 114.173 -152.146) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text +BATT (at 82.423 -158.1785) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "POWER SWITCH" (at 131.445 -171.9199) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "BATTERY IN" (at 85.7885 -171.9199) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "BACK-RIGHT WHEEL" (at 140.1318 -125.8443 90) (layer F.SilkS) (tstamp 5C483844)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "MIDDLE-RIGHT WHEEL" (at 140.462 -102.489 90) (layer F.SilkS) (tstamp 5C483844)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "FRONT-RIGHT CORNER" (at 140.462 -79.121 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "FRONT-RIGHT WHEEL" (at 139.9286 -44.2595 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN10 (at 2.159 -45.6565) (layer F.SilkS) (tstamp 5C4836C7)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M10- (at 2.286 -55.9435) (layer F.SilkS) (tstamp 5C4836C6)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M10+ (at 2.0955 -59.4995) (layer F.SilkS) (tstamp 5C4836C5)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 2.54 -48.9585) (layer F.SilkS) (tstamp 5C4836C4)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 2.54 -52.3875) (layer F.SilkS) (tstamp 5C4836C3)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN6B (at 2.0955 -19.431) (layer F.SilkS) (tstamp 5C4836C8)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN6A (at 2.0955 -23.241) (layer F.SilkS) (tstamp 5C4836C7)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M6- (at 2.0955 -33.401) (layer F.SilkS) (tstamp 5C4836C6)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M6+ (at 1.8415 -36.957) (layer F.SilkS) (tstamp 5C4836C5)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 1.4605 -26.5684) (layer F.SilkS) (tstamp 5C4836C4)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 1.778 -29.9085) (layer F.SilkS) (tstamp 5C4836C3)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN5B (at 1.778 -77.7875) (layer F.SilkS) (tstamp 5C4836C8)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN5A (at 1.778 -81.5975) (layer F.SilkS) (tstamp 5C4836C7)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M5- (at 1.778 -91.7575) (layer F.SilkS) (tstamp 5C4836C6)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M5+ (at 1.524 -95.3135) (layer F.SilkS) (tstamp 5C4836C5)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 1.2573 -84.9376) (layer F.SilkS) (tstamp 5C4836C4)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 1.778 -88.2269) (layer F.SilkS) (tstamp 5C4836C3)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN9 (at 1.7145 -118.5545) (layer F.SilkS) (tstamp 5C72B892)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M9- (at 1.778 -129.2225) (layer F.SilkS) (tstamp 5C72B895)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M9+ (at 1.8415 -132.9055) (layer F.SilkS) (tstamp 5C72B88C)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 1.5367 -122.3772) (layer F.SilkS) (tstamp 5C72B88F)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 1.8034 -125.6411) (layer F.SilkS) (tstamp 5C72B898)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M4+ (at 1.2065 -155.7655) (layer F.SilkS) (tstamp 5C483518)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN4B (at 1.4605 -138.2395) (layer F.SilkS) (tstamp 5C483517)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M4- (at 1.4605 -152.2095) (layer F.SilkS) (tstamp 5C483516)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 0.9398 -145.288) (layer F.SilkS) (tstamp 5C483515)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 1.2319 -148.844) (layer F.SilkS) (tstamp 5C483514)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN8 (at 150.1775 -149.5425) (layer F.SilkS) (tstamp 5C483519)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M8+ (at 150.1775 -135.8265) (layer F.SilkS) (tstamp 5C483518)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M8- (at 150.1775 -139.1285) (layer F.SilkS) (tstamp 5C483516)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 149.8219 -145.8849) (layer F.SilkS) (tstamp 5C483515)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 149.9743 -142.5702) (layer F.SilkS) (tstamp 5C483514)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN3A (at 150.3045 -127.0635) (layer F.SilkS) (tstamp 5C483519)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M3+ (at 150.3045 -113.0935) (layer F.SilkS) (tstamp 5C483518)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN3B (at 150.3045 -130.3655) (layer F.SilkS) (tstamp 5C483517)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M3- (at 150.241 -116.6495) (layer F.SilkS) (tstamp 5C483516)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 149.987 -123.0884) (layer F.SilkS) (tstamp 5C483515)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 150.1775 -119.6848) (layer F.SilkS) (tstamp 5C729695)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN2A (at 150.3045 -104.394) (layer F.SilkS) (tstamp 5C483519)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M2+ (at 150.3045 -90.2335) (layer F.SilkS) (tstamp 5C483518)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN2B (at 150.3045 -107.696) (layer F.SilkS) (tstamp 5C483517)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M2- (at 150.3045 -93.7895) (layer F.SilkS) (tstamp 5C483516)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 150.0886 -100.4062) (layer F.SilkS) (tstamp 5C483515)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 150.0632 -97.155) (layer F.SilkS) (tstamp 5C483514)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN7 (at 150.1775 -81.2165) (layer F.SilkS) (tstamp 5C483519)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M7+ (at 150.3045 -67.437) (layer F.SilkS) (tstamp 5C483518)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M7- (at 150.368 -70.993) (layer F.SilkS) (tstamp 5C483516)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 150.0505 -77.6605) (layer F.SilkS) (tstamp 5C483515)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 150.1775 -74.295) (layer F.SilkS) (tstamp 5C483514)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN1B (at 150.368 -49.2125) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text EN1A (at 150.368 -45.9105) (layer F.SilkS) (tstamp 5C72B608)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text GND (at 150.241 -38.8874) (layer F.SilkS) (tstamp 5C72B605)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text +5V (at 149.9235 -42.3545) (layer F.SilkS) (tstamp 5C72B602)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M1- (at 150.1775 -35.179) (layer F.SilkS) (tstamp 5C72B5FF)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text M1+ (at 150.114 -31.496) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.1)))
)
(segment (start 143.655 -31.75) (end 144.78 -31.75) (width 0.25) (layer B.Cu) (net 1))
(segment (start 137.795 -31.75) (end 143.655 -31.75) (width 1) (layer B.Cu) (net 1))
(segment (start 136.3345 -68.0085) (end 136.3345 -33.2105) (width 1) (layer B.Cu) (net 1))
(segment (start 136.3345 -33.2105) (end 137.795 -31.75) (width 1) (layer B.Cu) (net 1))
(segment (start 132.8345 -41.092) (end 132.8345 -68.0085) (width 1) (layer B.Cu) (net 2))
(segment (start 143.365787 -35.25) (end 143.358287 -35.2425) (width 0.25) (layer B.Cu) (net 2))
(segment (start 144.78 -35.25) (end 143.365787 -35.25) (width 1) (layer B.Cu) (net 2))
(segment (start 143.358287 -35.2425) (end 140.0175 -35.2425) (width 1) (layer B.Cu) (net 2))
(via (at 138.6205 -38.989) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 140.0175 -35.2425) (end 138.6205 -36.6395) (width 1) (layer B.Cu) (net 2))
(segment (start 138.6205 -36.6395) (end 138.6205 -38.989) (width 1) (layer B.Cu) (net 2))
(via (at 132.8345 -41.092) (size 1.2) (drill 0.8) (layers F.Cu B.Cu) (net 2))
(segment (start 138.6205 -38.989) (end 134.9375 -38.989) (width 1) (layer F.Cu) (net 2))
(segment (start 134.9375 -38.989) (end 132.8345 -41.092) (width 1) (layer F.Cu) (net 2))
(segment (start 148.463 -42.067) (end 144.78 -45.75) (width 0.25) (layer F.Cu) (net 3))
(segment (start 124.362 -17.624) (end 128.016 -13.97) (width 0.25) (layer F.Cu) (net 3))
(segment (start 148.463 -28.575) (end 148.463 -42.067) (width 0.25) (layer F.Cu) (net 3))
(segment (start 124.362 -19.526) (end 124.362 -17.624) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.016 -13.97) (end 140.97282 -13.97) (width 0.25) (layer F.Cu) (net 3))
(segment (start 140.97282 -13.97) (end 142.505018 -15.502198) (width 0.25) (layer F.Cu) (net 3))
(segment (start 142.505018 -15.502198) (end 142.505018 -22.617018) (width 0.25) (layer F.Cu) (net 3))
(segment (start 142.505018 -22.617018) (end 148.463 -28.575) (width 0.25) (layer F.Cu) (net 3))
(segment (start 145.779999 -48.250001) (end 145.805999 -48.250001) (width 0.25) (layer F.Cu) (net 4))
(segment (start 144.78 -49.25) (end 145.779999 -48.250001) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.805999 -48.250001) (end 146.558 -47.498) (width 0.25) (layer F.Cu) (net 4))
(segment (start 146.558 -47.498) (end 146.558 -44.7675) (width 0.25) (layer F.Cu) (net 4))
(segment (start 146.558 -44.7675) (end 149.0345 -42.291) (width 0.25) (layer F.Cu) (net 4))
(segment (start 142.955028 -15.315798) (end 142.955028 -22.368528) (width 0.25) (layer F.Cu) (net 4))
(segment (start 149.0345 -28.448) (end 149.0345 -28.6385) (width 0.25) (layer F.Cu) (net 4))
(segment (start 141.10123 -13.462) (end 142.955028 -15.315798) (width 0.25) (layer F.Cu) (net 4))
(segment (start 142.955028 -22.368528) (end 149.0345 -28.448) (width 0.25) (layer F.Cu) (net 4))
(segment (start 124.362 -22.066) (end 123.1265 -20.8305) (width 0.25) (layer F.Cu) (net 4))
(segment (start 149.0345 -42.291) (end 149.0345 -28.6385) (width 0.25) (layer F.Cu) (net 4))
(segment (start 123.1265 -20.8305) (end 123.1265 -18.22309) (width 0.25) (layer F.Cu) (net 4))
(segment (start 123.1265 -18.22309) (end 127.88759 -13.462) (width 0.25) (layer F.Cu) (net 4))
(segment (start 127.88759 -13.462) (end 141.10123 -13.462) (width 0.25) (layer F.Cu) (net 4))
(segment (start 144.78 -107.67) (end 146.431 -106.019) (width 0.25) (layer B.Cu) (net 5))
(segment (start 146.431 -106.019) (end 146.431 -103.505) (width 0.25) (layer B.Cu) (net 5))
(segment (start 146.431 -103.505) (end 149.987 -99.949) (width 0.25) (layer B.Cu) (net 5))
(segment (start 149.987 -99.949) (end 149.987 -56.5785) (width 0.25) (layer B.Cu) (net 5))
(segment (start 147.574 -54.1655) (end 147.574 -53.594) (width 0.25) (layer B.Cu) (net 5))
(segment (start 149.987 -56.5785) (end 147.574 -54.1655) (width 0.25) (layer B.Cu) (net 5))
(segment (start 147.574 -53.594) (end 147.574 -42.4815) (width 0.25) (layer B.Cu) (net 5))
(segment (start 147.574 -42.4815) (end 147.8915 -42.164) (width 0.25) (layer B.Cu) (net 5))
(via (at 147.701 -40.5765) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(segment (start 147.8915 -42.164) (end 147.8915 -40.767) (width 0.25) (layer B.Cu) (net 5))
(segment (start 147.8915 -40.767) (end 147.701 -40.5765) (width 0.25) (layer B.Cu) (net 5))
(segment (start 125.603 -20.767) (end 126.902 -22.066) (width 0.25) (layer F.Cu) (net 5))
(segment (start 147.701 -40.5765) (end 147.701 -40.010815) (width 0.25) (layer F.Cu) (net 5))
(segment (start 128.143 -14.5415) (end 125.603 -17.0815) (width 0.25) (layer F.Cu) (net 5))
(segment (start 147.701 -40.010815) (end 147.955 -39.756815) (width 0.25) (layer F.Cu) (net 5))
(segment (start 125.603 -17.0815) (end 125.603 -20.767) (width 0.25) (layer F.Cu) (net 5))
(segment (start 147.955 -39.756815) (end 147.955 -28.7655) (width 0.25) (layer F.Cu) (net 5))
(segment (start 147.955 -28.7655) (end 142.05501 -22.86551) (width 0.25) (layer F.Cu) (net 5))
(segment (start 140.90791 -14.5415) (end 128.143 -14.5415) (width 0.25) (layer F.Cu) (net 5))
(segment (start 142.05501 -22.86551) (end 142.055009 -15.688599) (width 0.25) (layer F.Cu) (net 5))
(segment (start 142.055009 -15.688599) (end 140.90791 -14.5415) (width 0.25) (layer F.Cu) (net 5))
(via (at 147.066 -41.656) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
(segment (start 147.066 -41.656) (end 147.066 -54.4195) (width 0.25) (layer B.Cu) (net 6))
(segment (start 147.066 -54.4195) (end 149.352 -56.7055) (width 0.25) (layer B.Cu) (net 6))
(segment (start 149.352 -99.598) (end 144.78 -104.17) (width 0.25) (layer B.Cu) (net 6))
(segment (start 149.352 -56.7055) (end 149.352 -99.598) (width 0.25) (layer B.Cu) (net 6))
(segment (start 126.902 -16.608) (end 126.902 -19.526) (width 0.25) (layer F.Cu) (net 6))
(segment (start 128.397 -15.113) (end 126.902 -16.608) (width 0.25) (layer F.Cu) (net 6))
(segment (start 140.843 -15.113) (end 128.397 -15.113) (width 0.25) (layer F.Cu) (net 6))
(segment (start 141.605 -15.875) (end 140.843 -15.113) (width 0.25) (layer F.Cu) (net 6))
(segment (start 141.605 -23.114) (end 141.605 -15.875) (width 0.25) (layer F.Cu) (net 6))
(segment (start 147.066 -41.090315) (end 146.975999 -41.000314) (width 0.25) (layer F.Cu) (net 6))
(segment (start 147.066 -41.656) (end 147.066 -41.090315) (width 0.25) (layer F.Cu) (net 6))
(segment (start 146.975999 -41.000314) (end 146.975999 -39.904501) (width 0.25) (layer F.Cu) (net 6))
(segment (start 146.975999 -39.904501) (end 147.447 -39.4335) (width 0.25) (layer F.Cu) (net 6))
(segment (start 147.447 -39.4335) (end 147.447 -28.956) (width 0.25) (layer F.Cu) (net 6))
(segment (start 147.447 -28.956) (end 141.605 -23.114) (width 0.25) (layer F.Cu) (net 6))
(segment (start 119.709499 -68.883499) (end 119.709499 -68.909499) (width 0.25) (layer B.Cu) (net 7))
(segment (start 118.8345 -68.0085) (end 119.709499 -68.883499) (width 1) (layer B.Cu) (net 7))
(segment (start 119.709499 -68.909499) (end 122.7455 -71.9455) (width 1) (layer B.Cu) (net 7))
(segment (start 143.0095 -93.67) (end 144.78 -93.67) (width 1) (layer B.Cu) (net 7))
(segment (start 137.033 -87.6935) (end 143.0095 -93.67) (width 1) (layer B.Cu) (net 7))
(segment (start 122.7455 -71.9455) (end 127.762 -71.9455) (width 1) (layer B.Cu) (net 7))
(segment (start 127.762 -71.9455) (end 134.747 -78.9305) (width 1) (layer B.Cu) (net 7))
(segment (start 134.747 -85.4075) (end 137.033 -87.6935) (width 1) (layer B.Cu) (net 7))
(segment (start 134.747 -78.9305) (end 134.747 -85.4075) (width 1) (layer B.Cu) (net 7))
(segment (start 142.113 -90.17) (end 144.78 -90.17) (width 1) (layer B.Cu) (net 8))
(segment (start 138.557 -86.614) (end 142.113 -90.17) (width 1) (layer B.Cu) (net 8))
(segment (start 123.209499 -68.883499) (end 123.239499 -68.883499) (width 0.25) (layer B.Cu) (net 8))
(segment (start 122.3345 -68.0085) (end 123.209499 -68.883499) (width 1) (layer B.Cu) (net 8))
(segment (start 123.239499 -68.883499) (end 124.7775 -70.4215) (width 1) (layer B.Cu) (net 8))
(segment (start 124.7775 -70.4215) (end 128.2065 -70.4215) (width 1) (layer B.Cu) (net 8))
(segment (start 128.2065 -70.4215) (end 128.5875 -70.4215) (width 0.25) (layer B.Cu) (net 8))
(segment (start 128.5875 -70.4215) (end 136.271 -78.105) (width 1) (layer B.Cu) (net 8))
(segment (start 136.271 -78.105) (end 136.271 -84.455) (width 1) (layer B.Cu) (net 8))
(segment (start 138.43 -86.614) (end 138.557 -86.614) (width 0.25) (layer B.Cu) (net 8))
(segment (start 136.271 -84.455) (end 138.43 -86.614) (width 1) (layer B.Cu) (net 8))
(segment (start 14.986 -144.526) (end 20.32 -139.192) (width 1) (layer B.Cu) (net 9))
(via (at 30.734 -128.778) (size 1.2) (drill 0.6) (layers F.Cu B.Cu) (net 9))
(segment (start 20.32 -139.192) (end 30.734 -128.778) (width 1) (layer B.Cu) (net 9))
(segment (start 44.424 -128.778) (end 65.76 -107.442) (width 1) (layer F.Cu) (net 9))
(segment (start 30.734 -128.778) (end 44.424 -128.778) (width 1) (layer F.Cu) (net 9))
(segment (start 14.986 -144.526) (end 13.335 -146.177) (width 1) (layer B.Cu) (net 9))
(segment (start 13.335 -146.177) (end 9.906 -149.606) (width 1) (layer B.Cu) (net 9))
(segment (start 9.8985 -149.606) (end 7.239 -152.2655) (width 1) (layer B.Cu) (net 9))
(segment (start 9.906 -149.606) (end 9.8985 -149.606) (width 0.25) (layer B.Cu) (net 9))
(segment (start 61.385001 -108.316999) (end 61.355001 -108.316999) (width 0.25) (layer F.Cu) (net 10))
(segment (start 62.26 -107.442) (end 61.385001 -108.316999) (width 0.25) (layer F.Cu) (net 10))
(via (at 35.306 -126.492) (size 1.2) (drill 0.6) (layers F.Cu B.Cu) (net 10))
(segment (start 61.355001 -108.316999) (end 43.18 -126.492) (width 1) (layer F.Cu) (net 10))
(segment (start 43.18 -126.492) (end 35.306 -126.492) (width 1) (layer F.Cu) (net 10))
(segment (start 16.637 -145.161) (end 16.637 -145.542) (width 0.25) (layer B.Cu) (net 10))
(segment (start 35.306 -126.492) (end 16.637 -145.161) (width 1) (layer B.Cu) (net 10))
(segment (start 16.637 -145.161) (end 14.4145 -147.3835) (width 1) (layer B.Cu) (net 10))
(segment (start 8.364 -155.7655) (end 9.9695 -154.16) (width 1) (layer B.Cu) (net 10))
(segment (start 7.239 -155.7655) (end 8.364 -155.7655) (width 1) (layer B.Cu) (net 10))
(segment (start 9.9695 -151.8285) (end 14.4145 -147.3835) (width 1) (layer B.Cu) (net 10))
(segment (start 9.9695 -154.16) (end 9.9695 -151.8285) (width 1) (layer B.Cu) (net 10))
(segment (start 51.76 -107.442) (end 55.824 -103.378) (width 1) (layer B.Cu) (net 11))
(segment (start 142.042 -116.53) (end 144.78 -116.53) (width 1) (layer B.Cu) (net 11))
(segment (start 136.652 -135.255) (end 140.081 -131.826) (width 1) (layer B.Cu) (net 11))
(segment (start 140.081 -131.826) (end 140.081 -118.491) (width 1) (layer B.Cu) (net 11))
(segment (start 140.081 -118.491) (end 142.042 -116.53) (width 1) (layer B.Cu) (net 11))
(segment (start 112.903 -136.525) (end 106.463 -130.085) (width 1) (layer B.Cu) (net 11))
(segment (start 136.652 -135.255) (end 135.382 -136.525) (width 1) (layer B.Cu) (net 11))
(segment (start 135.382 -136.525) (end 112.903 -136.525) (width 1) (layer B.Cu) (net 11))
(via (at 65.8114 -103.3526) (size 1.2) (drill 0.8) (layers F.Cu B.Cu) (net 11))
(segment (start 55.824 -103.378) (end 65.786 -103.378) (width 1) (layer B.Cu) (net 11))
(segment (start 65.786 -103.378) (end 65.8114 -103.3526) (width 0.25) (layer B.Cu) (net 11))
(segment (start 65.8114 -103.3526) (end 85.4837 -103.3526) (width 1) (layer F.Cu) (net 11))
(via (at 85.4837 -103.3526) (size 1.2) (drill 0.8) (layers F.Cu B.Cu) (net 11))
(segment (start 85.4964 -103.3399) (end 85.4837 -103.3526) (width 0.25) (layer B.Cu) (net 11))
(segment (start 99.1235 -103.3399) (end 85.4964 -103.3399) (width 1) (layer B.Cu) (net 11))
(segment (start 99.1235 -103.3399) (end 99.1489 -103.3399) (width 0.25) (layer B.Cu) (net 11))
(segment (start 106.045 -110.2614) (end 99.1235 -103.3399) (width 1) (layer B.Cu) (net 11))
(segment (start 106.463 -130.085) (end 106.045 -129.667) (width 1) (layer B.Cu) (net 11))
(segment (start 106.045 -129.667) (end 106.045 -110.2614) (width 1) (layer B.Cu) (net 11))
(segment (start 48.26 -106.317) (end 52.596 -101.981) (width 1) (layer B.Cu) (net 12))
(segment (start 48.26 -107.442) (end 48.26 -106.317) (width 1) (layer B.Cu) (net 12))
(segment (start 140.843 -113.03) (end 144.78 -113.03) (width 1) (layer B.Cu) (net 12))
(segment (start 107.823 -129.286) (end 112.776 -134.239) (width 1) (layer B.Cu) (net 12))
(segment (start 112.776 -134.239) (end 135.128 -134.239) (width 1) (layer B.Cu) (net 12))
(segment (start 138.43 -130.937) (end 138.43 -115.443) (width 1) (layer B.Cu) (net 12))
(segment (start 135.128 -134.239) (end 138.43 -130.937) (width 1) (layer B.Cu) (net 12))
(segment (start 138.43 -115.443) (end 140.843 -113.03) (width 1) (layer B.Cu) (net 12))
(segment (start 52.7103 -101.8667) (end 52.596 -101.981) (width 0.25) (layer B.Cu) (net 12))
(segment (start 107.823 -129.286) (end 107.823 -112.4839) (width 1) (layer B.Cu) (net 12))
(via (at 85.598 -100.6094) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 99.06 -100.6094) (end 85.598 -100.6094) (width 1) (layer B.Cu) (net 12))
(via (at 65.913 -100.6094) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 85.598 -100.6094) (end 65.913 -100.6094) (width 1) (layer F.Cu) (net 12))
(segment (start 53.9676 -100.6094) (end 52.596 -101.981) (width 1) (layer B.Cu) (net 12))
(segment (start 65.913 -100.6094) (end 53.9676 -100.6094) (width 1) (layer B.Cu) (net 12))
(segment (start 107.823 -109.3724) (end 99.06 -100.6094) (width 1) (layer B.Cu) (net 12))
(segment (start 107.823 -112.4839) (end 107.823 -109.3724) (width 1) (layer B.Cu) (net 12))
(segment (start 61.185 -156.61137) (end 66.75263 -162.179) (width 0.25) (layer F.Cu) (net 13))
(segment (start 61.185 -155.48) (end 61.185 -156.61137) (width 0.25) (layer F.Cu) (net 13))
(segment (start 66.75263 -162.179) (end 77.47 -162.179) (width 0.25) (layer F.Cu) (net 13))
(segment (start 77.47 -162.179) (end 81.915 -157.734) (width 0.25) (layer F.Cu) (net 13))
(segment (start 81.915 -157.734) (end 90.297 -157.734) (width 0.25) (layer F.Cu) (net 13))
(via (at 120.142 -143.891) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 119.675499 -143.424499) (end 120.142 -143.891) (width 0.25) (layer B.Cu) (net 13))
(segment (start 119.742001 -143.491001) (end 119.742001 -136.670999) (width 0.25) (layer F.Cu) (net 13))
(segment (start 120.142 -143.891) (end 119.742001 -143.491001) (width 0.25) (layer F.Cu) (net 13))
(segment (start 119.742001 -136.670999) (end 121.158 -135.255) (width 0.25) (layer F.Cu) (net 13))
(segment (start 121.158 -135.255) (end 132.5245 -135.255) (width 0.25) (layer F.Cu) (net 13))
(segment (start 140.7495 -127.03) (end 144.78 -127.03) (width 0.25) (layer F.Cu) (net 13))
(segment (start 132.5245 -135.255) (end 140.7495 -127.03) (width 0.25) (layer F.Cu) (net 13))
(segment (start 119.675499 -143.424499) (end 117.052501 -143.424499) (width 0.25) (layer B.Cu) (net 13))
(segment (start 117.052501 -143.424499) (end 116.989001 -143.424499) (width 0.25) (layer B.Cu) (net 13))
(segment (start 116.989001 -143.424499) (end 116.84 -143.5735) (width 0.25) (layer B.Cu) (net 13))
(segment (start 116.84 -143.5735) (end 102.8065 -143.5735) (width 0.25) (layer B.Cu) (net 13))
(segment (start 102.8065 -143.5735) (end 95.4405 -150.9395) (width 0.25) (layer B.Cu) (net 13))
(via (at 92.5195 -157.353) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 95.4405 -150.9395) (end 95.4405 -154.432) (width 0.25) (layer B.Cu) (net 13))
(segment (start 95.4405 -154.432) (end 92.5195 -157.353) (width 0.25) (layer B.Cu) (net 13))
(segment (start 90.315999 -157.752999) (end 90.297 -157.734) (width 0.25) (layer F.Cu) (net 13))
(segment (start 92.119501 -157.752999) (end 90.315999 -157.752999) (width 0.25) (layer F.Cu) (net 13))
(segment (start 92.5195 -157.353) (end 92.119501 -157.752999) (width 0.25) (layer F.Cu) (net 13))
(segment (start 5.824787 -141.7655) (end 4.1275 -143.462787) (width 0.25) (layer B.Cu) (net 14))
(segment (start 7.239 -141.7655) (end 5.824787 -141.7655) (width 0.25) (layer B.Cu) (net 14))
(segment (start 4.1275 -143.462787) (end 4.1275 -156.6545) (width 0.25) (layer B.Cu) (net 14))
(segment (start 4.1275 -156.6545) (end 6.096 -158.623) (width 0.25) (layer B.Cu) (net 14))
(segment (start 6.096 -158.623) (end 8.4455 -158.623) (width 0.25) (layer B.Cu) (net 14))
(via (at 30.2895 -146.431) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 8.4455 -158.623) (end 20.6375 -146.431) (width 0.25) (layer B.Cu) (net 14))
(segment (start 20.6375 -146.431) (end 30.2895 -146.431) (width 0.25) (layer B.Cu) (net 14))
(segment (start 30.2895 -146.431) (end 57.277 -146.431) (width 0.25) (layer F.Cu) (net 14))
(via (at 57.5945 -149.352) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 57.277 -146.431) (end 57.5945 -146.7485) (width 0.25) (layer F.Cu) (net 14))
(segment (start 57.5945 -146.7485) (end 57.5945 -149.352) (width 0.25) (layer F.Cu) (net 14))
(segment (start 57.845001 -154.680001) (end 58.645 -155.48) (width 0.25) (layer B.Cu) (net 14))
(segment (start 57.519999 -154.354999) (end 57.845001 -154.680001) (width 0.25) (layer B.Cu) (net 14))
(segment (start 57.519999 -149.992186) (end 57.519999 -154.354999) (width 0.25) (layer B.Cu) (net 14))
(segment (start 57.5945 -149.917685) (end 57.519999 -149.992186) (width 0.25) (layer B.Cu) (net 14))
(segment (start 57.5945 -149.352) (end 57.5945 -149.917685) (width 0.25) (layer B.Cu) (net 14))
(segment (start 8.238999 -139.265499) (end 8.264999 -139.265499) (width 0.25) (layer B.Cu) (net 15))
(segment (start 7.239 -138.2655) (end 8.238999 -139.265499) (width 0.25) (layer B.Cu) (net 15))
(segment (start 8.264999 -139.265499) (end 8.9535 -139.954) (width 0.25) (layer B.Cu) (net 15))
(segment (start 8.9535 -142.012002) (end 7.392002 -143.5735) (width 0.25) (layer B.Cu) (net 15))
(segment (start 8.9535 -139.954) (end 8.9535 -142.012002) (width 0.25) (layer B.Cu) (net 15))
(segment (start 7.392002 -143.5735) (end 5.1435 -143.5735) (width 0.25) (layer B.Cu) (net 15))
(segment (start 5.1435 -143.5735) (end 4.826 -143.891) (width 0.25) (layer B.Cu) (net 15))
(segment (start 4.826 -143.891) (end 4.826 -156.2735) (width 0.25) (layer B.Cu) (net 15))
(segment (start 4.826 -156.2735) (end 6.4135 -157.861) (width 0.25) (layer B.Cu) (net 15))
(segment (start 6.4135 -157.861) (end 8.255 -157.861) (width 0.25) (layer B.Cu) (net 15))
(via (at 28.956 -145.3515) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 15))
(segment (start 20.842002 -145.3515) (end 28.956 -145.3515) (width 0.25) (layer B.Cu) (net 15))
(segment (start 8.255 -157.861) (end 8.332502 -157.861) (width 0.25) (layer B.Cu) (net 15))
(segment (start 8.332502 -157.861) (end 20.842002 -145.3515) (width 0.25) (layer B.Cu) (net 15))
(segment (start 28.956 -145.3515) (end 57.397502 -145.3515) (width 0.25) (layer F.Cu) (net 15))
(segment (start 57.397502 -145.3515) (end 58.039 -145.3515) (width 0.25) (layer F.Cu) (net 15))
(via (at 58.7375 -149.4155) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 15))
(segment (start 58.039 -145.3515) (end 58.7375 -146.05) (width 0.25) (layer F.Cu) (net 15))
(segment (start 58.7375 -146.05) (end 58.7375 -149.4155) (width 0.25) (layer F.Cu) (net 15))
(segment (start 58.7375 -152.8475) (end 58.645 -152.94) (width 0.25) (layer B.Cu) (net 15))
(segment (start 58.7375 -149.4155) (end 58.7375 -152.8475) (width 0.25) (layer B.Cu) (net 15))
(segment (start 144.78 -130.53) (end 138.202 -130.53) (width 0.25) (layer F.Cu) (net 16))
(segment (start 138.202 -130.53) (end 132.7785 -135.9535) (width 0.25) (layer F.Cu) (net 16))
(segment (start 132.7785 -135.9535) (end 121.412 -135.9535) (width 0.25) (layer F.Cu) (net 16))
(via (at 120.65 -142.748) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 121.412 -135.9535) (end 120.65 -136.7155) (width 0.25) (layer F.Cu) (net 16))
(segment (start 120.65 -136.7155) (end 120.65 -142.748) (width 0.25) (layer F.Cu) (net 16))
(segment (start 62.484 -154.239) (end 61.185 -152.94) (width 0.25) (layer F.Cu) (net 16))
(segment (start 62.484 -157.226) (end 62.484 -154.239) (width 0.25) (layer F.Cu) (net 16))
(segment (start 66.929 -161.671) (end 62.484 -157.226) (width 0.25) (layer F.Cu) (net 16))
(segment (start 77.216 -161.671) (end 66.929 -161.671) (width 0.25) (layer F.Cu) (net 16))
(segment (start 81.7245 -157.1625) (end 77.216 -161.671) (width 0.25) (layer F.Cu) (net 16))
(segment (start 90.1065 -157.1625) (end 81.7245 -157.1625) (width 0.25) (layer F.Cu) (net 16))
(via (at 92.2655 -156.21) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 90.1065 -157.1625) (end 91.313 -157.1625) (width 0.25) (layer F.Cu) (net 16))
(segment (start 91.313 -157.1625) (end 92.2655 -156.21) (width 0.25) (layer F.Cu) (net 16))
(segment (start 116.9035 -142.748) (end 116.677011 -142.974489) (width 0.25) (layer B.Cu) (net 16))
(segment (start 120.65 -142.748) (end 116.9035 -142.748) (width 0.25) (layer B.Cu) (net 16))
(segment (start 92.964 -156.21) (end 92.2655 -156.21) (width 0.25) (layer B.Cu) (net 16))
(segment (start 116.677011 -142.974489) (end 102.707011 -142.974489) (width 0.25) (layer B.Cu) (net 16))
(segment (start 102.707011 -142.974489) (end 94.9325 -150.749) (width 0.25) (layer B.Cu) (net 16))
(segment (start 94.9325 -150.749) (end 94.9325 -154.2415) (width 0.25) (layer B.Cu) (net 16))
(segment (start 94.9325 -154.2415) (end 92.964 -156.21) (width 0.25) (layer B.Cu) (net 16))
(via (at 138.1125 -55.4355) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 17))
(via (at 131.1275 -55.4355) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 17))
(segment (start 138.1125 -55.4355) (end 131.1275 -55.4355) (width 0.25) (layer F.Cu) (net 17))
(segment (start 130.556 -54.864) (end 131.1275 -55.4355) (width 0.25) (layer B.Cu) (net 17))
(segment (start 126.3015 -54.864) (end 130.556 -54.864) (width 0.25) (layer B.Cu) (net 17))
(segment (start 115.482927 -49.647565) (end 121.085065 -49.647565) (width 0.25) (layer B.Cu) (net 17))
(segment (start 121.085065 -49.647565) (end 126.3015 -54.864) (width 0.25) (layer B.Cu) (net 17))
(segment (start 138.684 -54.864) (end 138.1125 -55.4355) (width 0.25) (layer B.Cu) (net 17))
(segment (start 142.367 -56.1975) (end 141.0335 -54.864) (width 0.25) (layer B.Cu) (net 17))
(segment (start 142.367 -59.7535) (end 142.367 -56.1975) (width 0.25) (layer B.Cu) (net 17))
(segment (start 146.194213 -81.31) (end 147.6375 -79.866713) (width 0.25) (layer B.Cu) (net 17))
(segment (start 144.78 -81.31) (end 146.194213 -81.31) (width 0.25) (layer B.Cu) (net 17))
(segment (start 147.6375 -79.866713) (end 147.6375 -64.0715) (width 0.25) (layer B.Cu) (net 17))
(segment (start 147.6375 -64.0715) (end 145.8595 -62.2935) (width 0.25) (layer B.Cu) (net 17))
(segment (start 141.0335 -54.864) (end 138.684 -54.864) (width 0.25) (layer B.Cu) (net 17))
(segment (start 145.8595 -62.2935) (end 144.907 -62.2935) (width 0.25) (layer B.Cu) (net 17))
(segment (start 144.907 -62.2935) (end 142.367 -59.7535) (width 0.25) (layer B.Cu) (net 17))
(segment (start 115.482927 -49.647565) (end 115.482927 -45.188427) (width 0.25) (layer B.Cu) (net 17))
(segment (start 115.482927 -45.188427) (end 114.173 -43.8785) (width 0.25) (layer B.Cu) (net 17))
(segment (start 114.173 -43.8785) (end 114.173 -42.4815) (width 0.25) (layer B.Cu) (net 17))
(segment (start 114.173 -42.4815) (end 114.9985 -41.656) (width 0.25) (layer B.Cu) (net 17))
(segment (start 114.9985 -41.656) (end 118.3005 -41.656) (width 0.25) (layer B.Cu) (net 17))
(via (at 119.6975 -41.275) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 17))
(segment (start 118.3005 -41.656) (end 119.3165 -41.656) (width 0.25) (layer B.Cu) (net 17))
(segment (start 119.3165 -41.656) (end 119.6975 -41.275) (width 0.25) (layer B.Cu) (net 17))
(segment (start 121.412 -40.882) (end 121.412 -40.132) (width 0.25) (layer F.Cu) (net 17))
(segment (start 121.019 -41.275) (end 121.412 -40.882) (width 0.25) (layer F.Cu) (net 17))
(segment (start 119.6975 -41.275) (end 121.019 -41.275) (width 0.25) (layer F.Cu) (net 17))
(segment (start 128.0541 -100.3173) (end 129.141101 -99.230299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.832101 -95.999299) (end 130.5941 -95.2373) (width 0.25) (layer B.Cu) (net 18))
(segment (start 88.8365 -164.8714) (end 91.2114 -164.8714) (width 2) (layer F.Cu) (net 18))
(segment (start 135.646234 -7.366) (end 137.414 -7.366) (width 2) (layer F.Cu) (net 18) (tstamp 5C95F0FA))
(segment (start 73.545 -38.1635) (end 72.5805 -39.128) (width 0.25) (layer F.Cu) (net 18))
(segment (start 74.295 -38.1635) (end 73.545 -38.1635) (width 0.25) (layer F.Cu) (net 18))
(segment (start 72.5805 -39.128) (end 72.5805 -41.402) (width 0.25) (layer F.Cu) (net 18))
(segment (start 72.5805 -41.402) (end 73.3425 -42.164) (width 0.25) (layer F.Cu) (net 18))
(segment (start 73.3425 -42.164) (end 74.9935 -42.164) (width 0.25) (layer F.Cu) (net 18))
(segment (start 75.7555 -42.926) (end 75.7555 -45.593) (width 0.25) (layer F.Cu) (net 18))
(segment (start 74.9935 -42.164) (end 75.7555 -42.926) (width 0.25) (layer F.Cu) (net 18))
(segment (start 70.075 -51.2735) (end 75.7555 -45.593) (width 0.25) (layer F.Cu) (net 18))
(segment (start 70.075 -52.991) (end 70.075 -51.2735) (width 0.25) (layer F.Cu) (net 18))
(via (at 89.3826 -12.9794) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
(segment (start 89.3826 -11.3284) (end 89.3826 -12.9794) (width 0.25) (layer F.Cu) (net 18))
(segment (start 129.507099 -122.090299) (end 129.507099 -124.630299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.806701 -116.319299) (end 129.54 -116.586) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.832101 -116.319299) (end 129.806701 -116.319299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.54 -116.586) (end 129.54 -119.1514) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.507099 -124.630299) (end 130.5941 -125.7173) (width 0.25) (layer B.Cu) (net 18))
(segment (start 130.5941 -115.5573) (end 129.832101 -116.319299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.54 -119.1514) (end 128.0541 -120.6373) (width 0.25) (layer B.Cu) (net 18))
(segment (start 128.0541 -120.6373) (end 129.507099 -122.090299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.832101 -95.999299) (end 129.806701 -95.999299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.806701 -95.999299) (end 129.54 -96.266) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.54 -98.8314) (end 129.141101 -99.230299) (width 0.25) (layer B.Cu) (net 18))
(segment (start 129.54 -96.266) (end 129.54 -98.8314) (width 0.25) (layer B.Cu) (net 18))
(via (at 82.2706 -151.3078) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
(segment (start 85.1281 -151.3078) (end 82.2706 -151.3078) (width 0.25) (layer F.Cu) (net 18))
(via (at -0.0635 -113.03) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start 7.1755 -118.7785) (end 5.685 -118.7785) (width 0.25) (layer B.Cu) (net 19))
(segment (start 5.685 -118.7785) (end -0.0635 -113.03) (width 0.25) (layer B.Cu) (net 19))
(via (at -0.127 -49.8475) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start -0.0635 -113.03) (end -0.0635 -49.911) (width 0.25) (layer F.Cu) (net 19))
(segment (start -0.0635 -49.911) (end -0.127 -49.8475) (width 0.25) (layer F.Cu) (net 19))
(segment (start 119.126 -33.401) (end 116.849435 -35.677565) (width 0.25) (layer B.Cu) (net 19))
(segment (start 46.736 -34.8615) (end 61.9125 -19.685) (width 0.25) (layer B.Cu) (net 19))
(segment (start 9.0805 -44.069) (end 12.065 -41.0845) (width 0.25) (layer B.Cu) (net 19))
(segment (start 1.479499 -49.447501) (end 6.858 -44.069) (width 0.25) (layer B.Cu) (net 19))
(segment (start 6.858 -44.069) (end 9.0805 -44.069) (width 0.25) (layer B.Cu) (net 19))
(segment (start 33.3375 -39.8145) (end 33.3375 -40.259) (width 0.25) (layer B.Cu) (net 19))
(segment (start -0.127 -49.8475) (end 0.272999 -49.447501) (width 0.25) (layer B.Cu) (net 19))
(segment (start 33.3375 -40.259) (end 34.4805 -41.402) (width 0.25) (layer B.Cu) (net 19))
(segment (start 0.272999 -49.447501) (end 1.479499 -49.447501) (width 0.25) (layer B.Cu) (net 19))
(segment (start 40.894 -38.862) (end 40.894 -37.0205) (width 0.25) (layer B.Cu) (net 19))
(segment (start 12.065 -39.6875) (end 13.716 -38.0365) (width 0.25) (layer B.Cu) (net 19))
(segment (start 13.716 -38.0365) (end 31.5595 -38.0365) (width 0.25) (layer B.Cu) (net 19))
(segment (start 116.849435 -35.677565) (end 115.482927 -35.677565) (width 0.25) (layer B.Cu) (net 19))
(segment (start 31.5595 -38.0365) (end 33.3375 -39.8145) (width 0.25) (layer B.Cu) (net 19))
(segment (start 12.065 -41.0845) (end 12.065 -39.6875) (width 0.25) (layer B.Cu) (net 19))
(segment (start 34.4805 -41.402) (end 38.354 -41.402) (width 0.25) (layer B.Cu) (net 19))
(segment (start 38.354 -41.402) (end 40.894 -38.862) (width 0.25) (layer B.Cu) (net 19))
(segment (start 40.894 -37.0205) (end 43.053 -34.8615) (width 0.25) (layer B.Cu) (net 19))
(segment (start 43.053 -34.8615) (end 46.736 -34.8615) (width 0.25) (layer B.Cu) (net 19))
(via (at 63.4365 -19.1135) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start 63.754 -19.1135) (end 63.4365 -19.1135) (width 0.25) (layer F.Cu) (net 19))
(segment (start 62.299315 -19.685) (end 61.9125 -19.685) (width 0.25) (layer B.Cu) (net 19))
(segment (start 62.870815 -19.1135) (end 62.299315 -19.685) (width 0.25) (layer B.Cu) (net 19))
(segment (start 63.4365 -19.1135) (end 62.870815 -19.1135) (width 0.25) (layer B.Cu) (net 19))
(via (at 104.2035 -19.177) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start 64.002185 -19.1135) (end 64.573685 -19.685) (width 0.25) (layer F.Cu) (net 19))
(segment (start 63.4365 -19.1135) (end 64.002185 -19.1135) (width 0.25) (layer F.Cu) (net 19))
(segment (start 64.573685 -19.685) (end 80.899 -19.685) (width 0.25) (layer F.Cu) (net 19))
(segment (start 103.803501 -18.777001) (end 104.2035 -19.177) (width 0.25) (layer F.Cu) (net 19))
(segment (start 103.43599 -18.40949) (end 103.803501 -18.777001) (width 0.25) (layer F.Cu) (net 19))
(segment (start 82.17451 -18.40949) (end 103.43599 -18.40949) (width 0.25) (layer F.Cu) (net 19))
(segment (start 80.899 -19.685) (end 82.17451 -18.40949) (width 0.25) (layer F.Cu) (net 19))
(via (at 121.412 -32.1945) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start 121.031 -31.8135) (end 121.412 -32.1945) (width 0.25) (layer B.Cu) (net 19))
(segment (start 119.126 -31.8135) (end 121.031 -31.8135) (width 0.25) (layer B.Cu) (net 19))
(segment (start 119.126 -31.8135) (end 119.126 -33.401) (width 0.25) (layer B.Cu) (net 19))
(segment (start 121.412 -33.5915) (end 121.4755 -33.655) (width 0.25) (layer F.Cu) (net 19))
(segment (start 121.412 -32.1945) (end 121.412 -33.5915) (width 0.25) (layer F.Cu) (net 19))
(segment (start 119.126 -27.178) (end 119.126 -31.8135) (width 0.25) (layer B.Cu) (net 19))
(segment (start 119.126 -24.4475) (end 119.126 -27.178) (width 0.25) (layer B.Cu) (net 19))
(segment (start 118.364 -23.6855) (end 119.126 -24.4475) (width 0.25) (layer B.Cu) (net 19))
(segment (start 104.603499 -19.576999) (end 112.858499 -19.576999) (width 0.25) (layer B.Cu) (net 19))
(segment (start 104.2035 -19.177) (end 104.603499 -19.576999) (width 0.25) (layer B.Cu) (net 19))
(segment (start 112.858499 -19.576999) (end 114.173 -20.8915) (width 0.25) (layer B.Cu) (net 19))
(segment (start 114.173 -20.8915) (end 114.173 -22.225) (width 0.25) (layer B.Cu) (net 19))
(segment (start 114.173 -22.225) (end 115.6335 -23.6855) (width 0.25) (layer B.Cu) (net 19))
(segment (start 115.6335 -23.6855) (end 118.364 -23.6855) (width 0.25) (layer B.Cu) (net 19))
(via (at 150.876 -84.0105) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 150.310315 -84.0105) (end 148.5265 -82.226685) (width 0.25) (layer F.Cu) (net 20))
(segment (start 150.876 -84.0105) (end 150.310315 -84.0105) (width 0.25) (layer F.Cu) (net 20))
(via (at 148.463 -82.1055) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 148.5265 -82.226685) (end 148.5265 -82.169) (width 0.25) (layer F.Cu) (net 20))
(segment (start 148.5265 -82.169) (end 148.463 -82.1055) (width 0.25) (layer F.Cu) (net 20))
(segment (start 148.463 -81.539815) (end 148.3995 -81.476315) (width 0.25) (layer B.Cu) (net 20))
(segment (start 148.463 -82.1055) (end 148.463 -81.539815) (width 0.25) (layer B.Cu) (net 20))
(segment (start 148.3995 -81.476315) (end 148.3995 -63.881) (width 0.25) (layer B.Cu) (net 20))
(segment (start 148.3995 -63.881) (end 146.2405 -61.722) (width 0.25) (layer B.Cu) (net 20))
(segment (start 146.2405 -61.722) (end 145.2245 -61.722) (width 0.25) (layer B.Cu) (net 20))
(segment (start 145.2245 -61.722) (end 142.9385 -59.436) (width 0.25) (layer B.Cu) (net 20))
(segment (start 142.9385 -59.436) (end 142.9385 -55.88) (width 0.25) (layer B.Cu) (net 20))
(via (at 138.1125 -54.2925) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 142.9385 -55.88) (end 141.351 -54.2925) (width 0.25) (layer B.Cu) (net 20))
(segment (start 141.351 -54.2925) (end 138.1125 -54.2925) (width 0.25) (layer B.Cu) (net 20))
(via (at 131.1275 -54.356) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 138.1125 -54.2925) (end 131.191 -54.2925) (width 0.25) (layer F.Cu) (net 20))
(segment (start 131.191 -54.2925) (end 131.1275 -54.356) (width 0.25) (layer F.Cu) (net 20))
(segment (start 126.541362 -54.356) (end 115.482927 -43.297565) (width 0.25) (layer B.Cu) (net 20))
(segment (start 131.1275 -54.356) (end 126.541362 -54.356) (width 0.25) (layer B.Cu) (net 20))
(segment (start 146.4645 -149.89) (end 144.78 -149.89) (width 0.25) (layer B.Cu) (net 20))
(segment (start 147.1295 -149.225) (end 146.4645 -149.89) (width 0.25) (layer B.Cu) (net 20))
(segment (start 147.1295 -104.0765) (end 147.1295 -149.225) (width 0.25) (layer B.Cu) (net 20))
(segment (start 150.876 -84.0105) (end 150.876 -100.33) (width 0.25) (layer B.Cu) (net 20))
(segment (start 150.876 -100.33) (end 147.1295 -104.0765) (width 0.25) (layer B.Cu) (net 20))
(via (at 119.761 -43.688) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 115.482927 -43.297565) (end 119.370565 -43.297565) (width 0.25) (layer B.Cu) (net 20))
(segment (start 119.370565 -43.297565) (end 119.761 -43.688) (width 0.25) (layer B.Cu) (net 20))
(segment (start 120.015 -43.688) (end 121.412 -42.291) (width 0.25) (layer F.Cu) (net 20))
(segment (start 119.761 -43.688) (end 120.015 -43.688) (width 0.25) (layer F.Cu) (net 20))
(segment (start 47.5615 -34.798) (end 62.103 -20.2565) (width 0.25) (layer B.Cu) (net 21))
(segment (start 12.573 -41.402) (end 12.573 -40.005) (width 0.25) (layer B.Cu) (net 21))
(segment (start 41.402 -39.1795) (end 41.402 -37.4015) (width 0.25) (layer B.Cu) (net 21))
(segment (start 12.573 -40.005) (end 13.97 -38.608) (width 0.25) (layer B.Cu) (net 21))
(segment (start 43.434 -35.3695) (end 46.86441 -35.3695) (width 0.25) (layer B.Cu) (net 21))
(segment (start 8.0645 -45.8805) (end 9.064499 -44.880501) (width 0.25) (layer B.Cu) (net 21))
(segment (start 9.064499 -44.880501) (end 9.094499 -44.880501) (width 0.25) (layer B.Cu) (net 21))
(segment (start 31.369 -38.608) (end 32.8295 -40.0685) (width 0.25) (layer B.Cu) (net 21))
(segment (start 32.8295 -40.0685) (end 32.8295 -40.38741) (width 0.25) (layer B.Cu) (net 21))
(segment (start 32.8295 -40.38741) (end 34.35209 -41.91) (width 0.25) (layer B.Cu) (net 21))
(segment (start 9.094499 -44.880501) (end 12.573 -41.402) (width 0.25) (layer B.Cu) (net 21))
(segment (start 34.35209 -41.91) (end 38.6715 -41.91) (width 0.25) (layer B.Cu) (net 21))
(segment (start 38.6715 -41.91) (end 41.402 -39.1795) (width 0.25) (layer B.Cu) (net 21))
(segment (start 13.97 -38.608) (end 31.369 -38.608) (width 0.25) (layer B.Cu) (net 21))
(segment (start 41.402 -37.4015) (end 43.434 -35.3695) (width 0.25) (layer B.Cu) (net 21))
(segment (start 46.86441 -35.3695) (end 47.43591 -34.798) (width 0.25) (layer B.Cu) (net 21))
(segment (start 47.43591 -34.798) (end 47.5615 -34.798) (width 0.25) (layer B.Cu) (net 21))
(segment (start 115.482927 -30.458935) (end 115.443 -30.498862) (width 0.25) (layer B.Cu) (net 21))
(segment (start 115.482927 -29.327565) (end 115.482927 -30.458935) (width 0.25) (layer B.Cu) (net 21))
(segment (start 115.443 -30.498862) (end 115.443 -33.274) (width 0.25) (layer B.Cu) (net 21))
(segment (start 115.443 -33.274) (end 113.919 -34.798) (width 0.25) (layer B.Cu) (net 21))
(segment (start 113.919 -34.798) (end 113.919 -36.322) (width 0.25) (layer B.Cu) (net 21))
(segment (start 113.919 -36.322) (end 114.7445 -37.1475) (width 0.25) (layer B.Cu) (net 21))
(segment (start 114.7445 -37.1475) (end 116.7765 -37.1475) (width 0.25) (layer B.Cu) (net 21))
(via (at 63.373 -20.2565) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21))
(segment (start 62.103 -20.2565) (end 63.373 -20.2565) (width 0.25) (layer B.Cu) (net 21))
(via (at 104.267 -20.2565) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21))
(segment (start 103.701315 -20.2565) (end 102.304315 -18.8595) (width 0.25) (layer F.Cu) (net 21))
(segment (start 104.267 -20.2565) (end 103.701315 -20.2565) (width 0.25) (layer F.Cu) (net 21))
(segment (start 102.304315 -18.8595) (end 82.4865 -18.8595) (width 0.25) (layer F.Cu) (net 21))
(segment (start 81.0895 -20.2565) (end 63.373 -20.2565) (width 0.25) (layer F.Cu) (net 21))
(segment (start 82.4865 -18.8595) (end 81.0895 -20.2565) (width 0.25) (layer F.Cu) (net 21))
(via (at 119.634 -36.957) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21))
(segment (start 116.7765 -37.1475) (end 119.4435 -37.1475) (width 0.25) (layer B.Cu) (net 21))
(segment (start 119.4435 -37.1475) (end 119.634 -36.957) (width 0.25) (layer B.Cu) (net 21))
(segment (start 121.412 -36.564) (end 121.412 -35.814) (width 0.25) (layer F.Cu) (net 21))
(segment (start 121.019 -36.957) (end 121.412 -36.564) (width 0.25) (layer F.Cu) (net 21))
(segment (start 119.634 -36.957) (end 121.019 -36.957) (width 0.25) (layer F.Cu) (net 21))
(segment (start 118.5545 -24.638) (end 118.5545 -28.8925) (width 0.25) (layer B.Cu) (net 21))
(segment (start 118.3005 -24.384) (end 118.5545 -24.638) (width 0.25) (layer B.Cu) (net 21))
(segment (start 118.5545 -28.8925) (end 118.0465 -29.4005) (width 0.25) (layer B.Cu) (net 21))
(segment (start 117.1575 -24.384) (end 118.3005 -24.384) (width 0.25) (layer B.Cu) (net 21))
(segment (start 118.0465 -29.4005) (end 115.1255 -29.4005) (width 0.25) (layer B.Cu) (net 21))
(segment (start 112.7125 -20.2565) (end 113.6015 -21.1455) (width 0.25) (layer B.Cu) (net 21))
(segment (start 113.6015 -21.1455) (end 113.6015 -22.479) (width 0.25) (layer B.Cu) (net 21))
(segment (start 113.6015 -22.479) (end 115.482927 -24.360427) (width 0.25) (layer B.Cu) (net 21))
(segment (start 104.267 -20.2565) (end 112.7125 -20.2565) (width 0.25) (layer B.Cu) (net 21))
(segment (start 115.482927 -24.360427) (end 117.133927 -24.360427) (width 0.25) (layer B.Cu) (net 21))
(segment (start 117.133927 -24.360427) (end 117.1575 -24.384) (width 0.25) (layer B.Cu) (net 21))
(segment (start 54.737 -58.169) (end 54.835 -58.071) (width 0.25) (layer F.Cu) (net 22))
(segment (start 19.431 -108.392) (end 19.402 -108.363) (width 0.25) (layer F.Cu) (net 22))
(segment (start 114.046 -101.473) (end 109.982 -97.409) (width 0.25) (layer F.Cu) (net 22))
(segment (start 120.467001 -121.737001) (end 129.494399 -121.737001) (width 0.25) (layer F.Cu) (net 22))
(segment (start 119.38 -120.65) (end 120.467001 -121.737001) (width 0.25) (layer F.Cu) (net 22))
(segment (start 129.494399 -121.737001) (end 130.5941 -120.6373) (width 0.25) (layer F.Cu) (net 22))
(segment (start 119.38 -120.65) (end 118.11 -119.38) (width 0.25) (layer F.Cu) (net 22))
(segment (start 114.046 -117.856) (end 114.046 -101.473) (width 0.25) (layer F.Cu) (net 22))
(segment (start 115.57 -119.38) (end 114.046 -117.856) (width 0.25) (layer F.Cu) (net 22))
(segment (start 118.11 -119.38) (end 115.57 -119.38) (width 0.25) (layer F.Cu) (net 22))
(segment (start 114.046 -101.473) (end 114.046 -89.535) (width 0.25) (layer F.Cu) (net 22))
(segment (start 96.168 -65.51163) (end 97.03663 -64.643) (width 0.25) (layer F.Cu) (net 22))
(segment (start 96.168 -66.643) (end 96.168 -65.51163) (width 0.25) (layer F.Cu) (net 22))
(via (at 95.885 -64.4525) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 97.03663 -64.643) (end 96.0755 -64.643) (width 0.25) (layer F.Cu) (net 22))
(segment (start 96.0755 -64.643) (end 95.885 -64.4525) (width 0.25) (layer F.Cu) (net 22))
(via (at 93.472 -64.4525) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 95.885 -64.4525) (end 93.472 -64.4525) (width 0.25) (layer B.Cu) (net 22))
(segment (start 93.472 -64.4525) (end 92.906315 -64.4525) (width 0.25) (layer F.Cu) (net 22))
(segment (start 92.906315 -64.4525) (end 91.44 -64.4525) (width 0.25) (layer F.Cu) (net 22))
(segment (start 91.44 -64.4525) (end 90.2335 -63.246) (width 0.25) (layer F.Cu) (net 22))
(segment (start 90.2335 -63.246) (end 74.422 -63.246) (width 0.25) (layer F.Cu) (net 22))
(segment (start 74.422 -63.246) (end 74.3585 -63.246) (width 0.25) (layer F.Cu) (net 22))
(via (at 58.547 -62.8015) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 74.3585 -63.246) (end 73.914 -62.8015) (width 0.25) (layer F.Cu) (net 22))
(segment (start 73.914 -62.8015) (end 58.547 -62.8015) (width 0.25) (layer F.Cu) (net 22))
(segment (start 54.835 -59.20237) (end 54.835 -58.071) (width 0.25) (layer B.Cu) (net 22))
(segment (start 54.835 -59.655185) (end 54.835 -59.20237) (width 0.25) (layer B.Cu) (net 22))
(segment (start 106.8705 -82.3595) (end 106.8705 -78.486) (width 0.25) (layer F.Cu) (net 22))
(via (at 106.8705 -65.3415) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 106.8705 -78.486) (end 106.8705 -65.3415) (width 0.25) (layer F.Cu) (net 22))
(segment (start 99.1235 -64.643) (end 97.03663 -64.643) (width 0.25) (layer F.Cu) (net 22))
(segment (start 99.5045 -64.262) (end 99.1235 -64.643) (width 0.25) (layer F.Cu) (net 22))
(segment (start 106.8705 -65.3415) (end 105.791 -64.262) (width 0.25) (layer F.Cu) (net 22))
(segment (start 105.791 -64.262) (end 99.5045 -64.262) (width 0.25) (layer F.Cu) (net 22))
(via (at 114.7445 -62.484) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 110.6805 -62.484) (end 114.7445 -62.484) (width 0.25) (layer B.Cu) (net 22))
(segment (start 106.8705 -65.3415) (end 107.823 -65.3415) (width 0.25) (layer B.Cu) (net 22))
(segment (start 107.823 -65.3415) (end 110.6805 -62.484) (width 0.25) (layer B.Cu) (net 22))
(segment (start 116.078 -62.484) (end 114.7445 -62.484) (width 0.25) (layer F.Cu) (net 22))
(segment (start 127 -51.562) (end 116.078 -62.484) (width 0.25) (layer F.Cu) (net 22))
(segment (start 20.527001 -107.237999) (end 20.527001 -102.599499) (width 0.25) (layer F.Cu) (net 22))
(segment (start 19.402 -108.363) (end 20.527001 -107.237999) (width 0.25) (layer F.Cu) (net 22))
(segment (start 20.527001 -102.599499) (end 21.13999 -101.98651) (width 0.25) (layer F.Cu) (net 22))
(segment (start 21.13999 -101.98651) (end 22.28299 -101.98651) (width 0.25) (layer F.Cu) (net 22))
(segment (start 22.28299 -101.98651) (end 26.035 -98.2345) (width 0.25) (layer F.Cu) (net 22))
(segment (start 14.478 -115.824) (end 19.402 -110.9) (width 0.25) (layer F.Cu) (net 22))
(segment (start 14.478 -129.54) (end 14.478 -115.824) (width 0.25) (layer F.Cu) (net 22))
(segment (start 28.956 -144.018) (end 14.478 -129.54) (width 0.25) (layer F.Cu) (net 22))
(segment (start 59.2455 -144.018) (end 28.956 -144.018) (width 0.25) (layer F.Cu) (net 22))
(segment (start 62.5475 -147.32) (end 59.2455 -144.018) (width 0.25) (layer F.Cu) (net 22))
(segment (start 53.565 -158.02) (end 54.979999 -156.605001) (width 0.25) (layer F.Cu) (net 22))
(segment (start 54.979999 -152.093501) (end 56.388 -150.6855) (width 0.25) (layer F.Cu) (net 22))
(segment (start 54.979999 -156.605001) (end 54.979999 -152.093501) (width 0.25) (layer F.Cu) (net 22))
(segment (start 56.388 -150.6855) (end 60.1345 -150.6855) (width 0.25) (layer F.Cu) (net 22))
(segment (start 19.402 -110.9) (end 19.402 -108.363) (width 0.25) (layer F.Cu) (net 22))
(segment (start 60.1345 -150.6855) (end 62.5475 -148.2725) (width 0.25) (layer F.Cu) (net 22))
(segment (start 62.5475 -148.2725) (end 62.5475 -147.32) (width 0.25) (layer F.Cu) (net 22))
(via (at 26.453 -96.451071) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 26.035 -98.2345) (end 26.035 -96.869071) (width 0.25) (layer F.Cu) (net 22))
(segment (start 26.035 -96.869071) (end 26.453 -96.451071) (width 0.25) (layer F.Cu) (net 22))
(via (at 34.48565 -80.884544) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22) (tstamp 5C7323E5))
(segment (start 32.312194 -83.058) (end 34.48565 -80.884544) (width 0.25) (layer B.Cu) (net 22))
(segment (start 29.7815 -83.058) (end 32.312194 -83.058) (width 0.25) (layer B.Cu) (net 22))
(segment (start 26.67 -86.1695) (end 29.7815 -83.058) (width 0.25) (layer B.Cu) (net 22))
(segment (start 26.67 -95.668386) (end 26.67 -86.1695) (width 0.25) (layer B.Cu) (net 22))
(segment (start 26.453 -96.451071) (end 26.453 -95.885386) (width 0.25) (layer B.Cu) (net 22))
(segment (start 26.453 -95.885386) (end 26.67 -95.668386) (width 0.25) (layer B.Cu) (net 22))
(via (at 44.815 -67.437) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 44.815 -67.632912) (end 44.815 -67.437) (width 0.25) (layer F.Cu) (net 22))
(segment (start 58.293 -63.0555) (end 58.547 -62.8015) (width 0.25) (layer B.Cu) (net 22))
(segment (start 44.815 -67.437) (end 44.815 -66.871315) (width 0.25) (layer B.Cu) (net 22))
(segment (start 44.815 -66.871315) (end 44.7675 -66.823815) (width 0.25) (layer B.Cu) (net 22))
(segment (start 44.7675 -66.823815) (end 44.7675 -66.1035) (width 0.25) (layer B.Cu) (net 22))
(segment (start 44.7675 -66.1035) (end 46.1645 -64.7065) (width 0.25) (layer B.Cu) (net 22))
(segment (start 46.1645 -64.7065) (end 46.482 -64.7065) (width 0.25) (layer B.Cu) (net 22))
(segment (start 48.133 -63.0555) (end 58.293 -63.0555) (width 0.25) (layer B.Cu) (net 22))
(segment (start 46.482 -64.7065) (end 48.133 -63.0555) (width 0.25) (layer B.Cu) (net 22))
(segment (start 57.981315 -62.8015) (end 54.835 -59.655185) (width 0.25) (layer B.Cu) (net 22))
(segment (start 58.547 -62.8015) (end 57.981315 -62.8015) (width 0.25) (layer B.Cu) (net 22))
(segment (start 44.815 -69.1675) (end 44.815 -67.437) (width 0.25) (layer F.Cu) (net 22))
(segment (start 39.973955 -74.008545) (end 44.815 -69.1675) (width 0.25) (layer F.Cu) (net 22))
(segment (start 39.973955 -74.073455) (end 39.973955 -74.008545) (width 0.25) (layer F.Cu) (net 22))
(segment (start 34.885649 -79.161761) (end 39.973955 -74.073455) (width 0.25) (layer F.Cu) (net 22))
(segment (start 34.48565 -80.884544) (end 34.885649 -80.484545) (width 0.25) (layer F.Cu) (net 22))
(segment (start 34.885649 -80.484545) (end 34.885649 -79.161761) (width 0.25) (layer F.Cu) (net 22))
(via (at 127 -49.8475) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 127 -51.562) (end 127 -49.8475) (width 0.25) (layer F.Cu) (net 22))
(via (at 127 -30.5435) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 127 -49.8475) (end 127 -30.5435) (width 0.25) (layer B.Cu) (net 22))
(segment (start 131.182001 -17.785999) (end 131.982 -16.986) (width 0.25) (layer F.Cu) (net 22))
(segment (start 131.182001 -17.788999) (end 131.182001 -17.785999) (width 0.25) (layer F.Cu) (net 22))
(segment (start 130.7465 -18.2245) (end 131.182001 -17.788999) (width 0.25) (layer F.Cu) (net 22))
(segment (start 130.7465 -25.9715) (end 130.7465 -18.2245) (width 0.25) (layer F.Cu) (net 22))
(segment (start 127 -30.5435) (end 127 -29.718) (width 0.25) (layer F.Cu) (net 22))
(segment (start 127 -29.718) (end 130.7465 -25.9715) (width 0.25) (layer F.Cu) (net 22))
(via (at 107.696 -84.201) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 106.8705 -82.3595) (end 106.8705 -83.3755) (width 0.25) (layer F.Cu) (net 22))
(segment (start 106.8705 -83.3755) (end 107.696 -84.201) (width 0.25) (layer F.Cu) (net 22))
(segment (start 107.696 -84.201) (end 108.458 -84.963) (width 0.25) (layer B.Cu) (net 22))
(segment (start 108.458 -84.963) (end 110.617 -84.963) (width 0.25) (layer B.Cu) (net 22))
(via (at 113.919 -88.773) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 110.617 -84.963) (end 113.919 -88.265) (width 0.25) (layer B.Cu) (net 22))
(segment (start 113.919 -88.265) (end 113.919 -88.773) (width 0.25) (layer B.Cu) (net 22))
(segment (start 114.046 -89.465685) (end 114.046 -89.535) (width 0.25) (layer F.Cu) (net 22))
(segment (start 113.919 -89.338685) (end 114.046 -89.465685) (width 0.25) (layer F.Cu) (net 22))
(segment (start 113.919 -88.773) (end 113.919 -89.338685) (width 0.25) (layer F.Cu) (net 22))
(segment (start 117.158001 -143.749501) (end 117.158001 -135.001501) (width 0.25) (layer F.Cu) (net 23))
(segment (start 117.983 -144.5745) (end 117.158001 -143.749501) (width 0.25) (layer F.Cu) (net 23))
(segment (start 117.158001 -135.001501) (end 113.284 -131.1275) (width 0.25) (layer F.Cu) (net 23))
(segment (start 113.284 -131.1275) (end 113.284 -102.6795) (width 0.25) (layer F.Cu) (net 23))
(segment (start 113.284 -102.6795) (end 108.458 -97.8535) (width 0.25) (layer F.Cu) (net 23))
(segment (start 108.458 -91.313) (end 109.982 -89.789) (width 0.25) (layer F.Cu) (net 23))
(segment (start 108.458 -97.8535) (end 108.458 -91.313) (width 0.25) (layer F.Cu) (net 23))
(segment (start 81.9785 -66.7385) (end 80.928 -67.789) (width 0.25) (layer F.Cu) (net 23))
(segment (start 91.313 -66.7385) (end 81.9785 -66.7385) (width 0.25) (layer F.Cu) (net 23))
(segment (start 92.583 -68.0085) (end 91.313 -66.7385) (width 0.25) (layer F.Cu) (net 23))
(segment (start 97.293001 -67.298999) (end 96.5835 -68.0085) (width 0.25) (layer F.Cu) (net 23))
(segment (start 97.79 -65.2145) (end 97.293001 -65.711499) (width 0.25) (layer F.Cu) (net 23))
(segment (start 99.5045 -65.2145) (end 97.79 -65.2145) (width 0.25) (layer F.Cu) (net 23))
(segment (start 80.928 -67.789) (end 80.928 -69.183) (width 0.25) (layer F.Cu) (net 23))
(segment (start 96.5835 -68.0085) (end 92.583 -68.0085) (width 0.25) (layer F.Cu) (net 23))
(segment (start 97.293001 -65.711499) (end 97.293001 -67.298999) (width 0.25) (layer F.Cu) (net 23))
(segment (start 105.4735 -64.8335) (end 99.8855 -64.8335) (width 0.25) (layer F.Cu) (net 23))
(segment (start 99.8855 -64.8335) (end 99.5045 -65.2145) (width 0.25) (layer F.Cu) (net 23))
(via (at 89.916 -64.008) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 91.313 -66.7385) (end 91.313 -65.405) (width 0.25) (layer F.Cu) (net 23))
(segment (start 91.313 -65.405) (end 89.916 -64.008) (width 0.25) (layer F.Cu) (net 23))
(via (at 87.3125 -61.4415) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 89.916 -64.008) (end 87.3495 -61.4415) (width 0.25) (layer B.Cu) (net 23))
(segment (start 87.3495 -61.4415) (end 87.3125 -61.4415) (width 0.25) (layer B.Cu) (net 23))
(segment (start 86.746815 -61.4415) (end 86.593315 -61.595) (width 0.25) (layer F.Cu) (net 23))
(segment (start 87.3125 -61.4415) (end 86.746815 -61.4415) (width 0.25) (layer F.Cu) (net 23))
(segment (start 86.593315 -61.595) (end 75.1205 -61.595) (width 0.25) (layer F.Cu) (net 23))
(segment (start 75.1205 -61.595) (end 73.8505 -60.325) (width 0.25) (layer F.Cu) (net 23))
(segment (start 73.8505 -60.325) (end 71.3105 -60.325) (width 0.25) (layer F.Cu) (net 23))
(segment (start 70.075 -59.0895) (end 70.075 -55.531) (width 0.25) (layer F.Cu) (net 23))
(segment (start 71.3105 -60.325) (end 70.075 -59.0895) (width 0.25) (layer F.Cu) (net 23))
(via (at 106.045 -66.421) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 105.645001 -65.005001) (end 105.4735 -64.8335) (width 0.25) (layer F.Cu) (net 23))
(segment (start 105.645001 -66.021001) (end 105.645001 -65.005001) (width 0.25) (layer F.Cu) (net 23))
(segment (start 106.045 -66.421) (end 105.645001 -66.021001) (width 0.25) (layer F.Cu) (net 23))
(segment (start 135.509 -130.81) (end 135.509 -127.6985) (width 0.5) (layer F.Cu) (net 23))
(segment (start 132.1435 -134.1755) (end 135.509 -130.81) (width 1) (layer F.Cu) (net 23))
(segment (start 120.5865 -134.1755) (end 132.1435 -134.1755) (width 1) (layer F.Cu) (net 23))
(segment (start 118.807999 -135.954001) (end 120.5865 -134.1755) (width 1) (layer F.Cu) (net 23))
(segment (start 117.983 -144.5745) (end 118.807999 -143.749501) (width 1) (layer F.Cu) (net 23))
(segment (start 118.807999 -143.749501) (end 118.807999 -135.954001) (width 1) (layer F.Cu) (net 23))
(segment (start 117.983 -144.5745) (end 118.1585 -144.5745) (width 0.25) (layer F.Cu) (net 23))
(segment (start 106.045 -66.421) (end 106.045 -64.643) (width 0.25) (layer B.Cu) (net 23))
(segment (start 106.045 -64.643) (end 107.2515 -63.4365) (width 0.25) (layer B.Cu) (net 23))
(segment (start 107.2515 -63.4365) (end 108.077 -63.4365) (width 0.25) (layer B.Cu) (net 23))
(segment (start 108.077 -63.4365) (end 110.1725 -61.341) (width 0.25) (layer B.Cu) (net 23))
(segment (start 110.1725 -61.341) (end 112.7125 -61.341) (width 0.25) (layer B.Cu) (net 23))
(via (at 114.8715 -60.8065) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 112.7125 -61.341) (end 113.247 -60.8065) (width 0.25) (layer B.Cu) (net 23))
(segment (start 113.247 -60.8065) (end 114.8715 -60.8065) (width 0.25) (layer B.Cu) (net 23))
(segment (start 114.8715 -60.8065) (end 115.437185 -60.8065) (width 0.25) (layer F.Cu) (net 23))
(via (at 61.5315 -60.2615) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 71.3105 -60.325) (end 61.595 -60.325) (width 0.25) (layer F.Cu) (net 23))
(segment (start 61.595 -60.325) (end 61.5315 -60.2615) (width 0.25) (layer F.Cu) (net 23))
(segment (start 61.5315 -60.2615) (end 61.5315 -62.0395) (width 0.25) (layer B.Cu) (net 23))
(segment (start 30.861 -101.981) (end 30.861 -103.997) (width 0.25) (layer F.Cu) (net 23))
(segment (start 33.34 -104.521) (end 34.642 -105.823) (width 0.25) (layer F.Cu) (net 23))
(segment (start 31.385 -104.521) (end 33.34 -104.521) (width 0.25) (layer F.Cu) (net 23))
(segment (start 30.861 -103.997) (end 31.385 -104.521) (width 0.25) (layer F.Cu) (net 23))
(segment (start 67.4395 -154.1145) (end 68.805 -155.48) (width 0.25) (layer F.Cu) (net 23))
(segment (start 65.774498 -154.1145) (end 67.4395 -154.1145) (width 0.25) (layer F.Cu) (net 23))
(segment (start 64.850001 -153.190003) (end 65.774498 -154.1145) (width 0.25) (layer F.Cu) (net 23))
(segment (start 64.850001 -148.035001) (end 64.850001 -153.190003) (width 0.25) (layer F.Cu) (net 23))
(segment (start 59.7535 -142.9385) (end 64.850001 -148.035001) (width 0.25) (layer F.Cu) (net 23))
(segment (start 29.4005 -142.9385) (end 59.7535 -142.9385) (width 0.25) (layer F.Cu) (net 23))
(segment (start 34.642 -106.95437) (end 29.77287 -111.8235) (width 0.25) (layer F.Cu) (net 23))
(segment (start 34.642 -105.823) (end 34.642 -106.95437) (width 0.25) (layer F.Cu) (net 23))
(segment (start 29.77287 -111.8235) (end 20.0025 -111.8235) (width 0.25) (layer F.Cu) (net 23))
(segment (start 20.0025 -111.8235) (end 15.494 -116.332) (width 0.25) (layer F.Cu) (net 23))
(segment (start 15.494 -116.332) (end 15.494 -129.032) (width 0.25) (layer F.Cu) (net 23))
(segment (start 15.494 -129.032) (end 29.4005 -142.9385) (width 0.25) (layer F.Cu) (net 23))
(segment (start 117.983 -144.5745) (end 117.983 -144.907) (width 0.25) (layer F.Cu) (net 23))
(segment (start 117.983 -144.907) (end 118.6815 -145.6055) (width 0.5) (layer B.Cu) (net 23))
(segment (start 118.6815 -145.6055) (end 123.7615 -145.6055) (width 0.5) (layer B.Cu) (net 23))
(segment (start 123.7615 -145.669) (end 127.508 -149.4155) (width 0.5) (layer B.Cu) (net 23))
(segment (start 117.983 -144.5745) (end 117.2995 -144.5745) (width 0.25) (layer F.Cu) (net 23))
(segment (start 90.7415 -158.877) (end 82.3595 -158.877) (width 1) (layer F.Cu) (net 23))
(segment (start 82.3595 -158.877) (end 77.978 -163.2585) (width 1) (layer F.Cu) (net 23))
(segment (start 77.978 -163.2585) (end 37.4015 -163.2585) (width 1) (layer F.Cu) (net 23))
(segment (start 37.4015 -163.2585) (end 31.9405 -157.7975) (width 1) (layer F.Cu) (net 23))
(segment (start 31.9405 -157.7975) (end 31.9405 -150.4315) (width 1) (layer F.Cu) (net 23))
(segment (start 1.2065 -18.2245) (end 4.8895 -14.5415) (width 1) (layer F.Cu) (net 23))
(segment (start 12.2555 -14.5415) (end 16.256 -18.542) (width 1) (layer F.Cu) (net 23))
(segment (start 4.8895 -14.5415) (end 12.2555 -14.5415) (width 1) (layer F.Cu) (net 23))
(segment (start 26.07203 -150.4315) (end 31.9405 -150.4315) (width 0.5) (layer F.Cu) (net 23))
(segment (start 20.701 -155.80253) (end 26.07203 -150.4315) (width 0.5) (layer F.Cu) (net 23))
(segment (start 20.701 -156.9339) (end 20.701 -155.80253) (width 0.5) (layer F.Cu) (net 23))
(segment (start 23.5585 -142.0495) (end 17.4625 -135.9535) (width 1) (layer F.Cu) (net 23))
(segment (start 31.9405 -150.4315) (end 23.5585 -142.0495) (width 1) (layer F.Cu) (net 23))
(segment (start 14.732 -148.971) (end 14.732 -149.7965) (width 0.25) (layer F.Cu) (net 23))
(segment (start 23.5585 -142.0495) (end 21.6535 -142.0495) (width 0.5) (layer F.Cu) (net 23))
(segment (start 21.6535 -142.0495) (end 14.732 -148.971) (width 0.5) (layer F.Cu) (net 23))
(segment (start 21.044001 -99.986999) (end 18.186501 -99.986999) (width 0.5) (layer F.Cu) (net 23))
(segment (start 21.844 -99.187) (end 21.044001 -99.986999) (width 0.5) (layer F.Cu) (net 23))
(segment (start 18.186501 -99.986999) (end 16.891 -101.2825) (width 0.5) (layer F.Cu) (net 23))
(segment (start 2.921 -101.2825) (end 1.2065 -102.997) (width 0.5) (layer F.Cu) (net 23))
(segment (start 16.891 -101.2825) (end 2.921 -101.2825) (width 0.5) (layer F.Cu) (net 23))
(segment (start 1.2065 -131.318) (end 1.2065 -102.997) (width 1) (layer F.Cu) (net 23))
(segment (start 22.2885 -40.0685) (end 24.13 -41.91) (width 0.5) (layer F.Cu) (net 23))
(segment (start 1.2065 -40.0685) (end 22.2885 -40.0685) (width 0.5) (layer F.Cu) (net 23))
(segment (start 1.2065 -40.0685) (end 1.2065 -18.2245) (width 1) (layer F.Cu) (net 23))
(segment (start 1.2065 -102.997) (end 1.2065 -40.0685) (width 1) (layer F.Cu) (net 23))
(via (at 17.4625 -135.9535) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 30.48 -126.238) (end 32.0675 -124.6505) (width 0.5) (layer B.Cu) (net 23))
(segment (start 30.48 -126.6825) (end 30.48 -126.238) (width 0.5) (layer B.Cu) (net 23))
(segment (start 21.608999 -135.553501) (end 30.48 -126.6825) (width 0.5) (layer B.Cu) (net 23))
(segment (start 17.4625 -135.9535) (end 17.862499 -135.553501) (width 0.5) (layer B.Cu) (net 23))
(segment (start 17.862499 -135.553501) (end 21.608999 -135.553501) (width 0.5) (layer B.Cu) (net 23))
(segment (start 135.509 -130.81) (end 137.414 -128.905) (width 1) (layer F.Cu) (net 23))
(segment (start 113.538 -66.9925) (end 113.538 -65.0875) (width 1) (layer F.Cu) (net 23))
(segment (start 110.9345 -75.184) (end 109.22 -73.4695) (width 1) (layer F.Cu) (net 23))
(segment (start 110.0455 -68.58) (end 111.9505 -68.58) (width 1) (layer F.Cu) (net 23))
(segment (start 109.22 -73.4695) (end 109.22 -69.4055) (width 1) (layer F.Cu) (net 23))
(segment (start 111.9505 -68.58) (end 113.538 -66.9925) (width 1) (layer F.Cu) (net 23))
(segment (start 109.22 -69.4055) (end 110.0455 -68.58) (width 1) (layer F.Cu) (net 23))
(segment (start 129.794 -51.23287) (end 129.794 -50.1015) (width 1) (layer F.Cu) (net 23))
(segment (start 117.01887 -64.008) (end 129.794 -51.23287) (width 1) (layer F.Cu) (net 23))
(segment (start 72.393 -53.213) (end 70.075 -55.531) (width 0.25) (layer F.Cu) (net 23))
(segment (start 102.568001 -145.399499) (end 96.393 -151.5745) (width 1) (layer B.Cu) (net 23))
(via (at 92.7735 -158.877) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 96.393 -151.5745) (end 96.393 -155.2575) (width 1) (layer B.Cu) (net 23))
(segment (start 96.393 -155.2575) (end 92.7735 -158.877) (width 1) (layer B.Cu) (net 23))
(segment (start 92.7735 -158.877) (end 90.7415 -158.877) (width 1) (layer F.Cu) (net 23))
(segment (start 103.393 -144.5745) (end 102.568001 -145.399499) (width 1) (layer B.Cu) (net 23))
(segment (start 117.983 -144.5745) (end 103.393 -144.5745) (width 1) (layer B.Cu) (net 23))
(segment (start 92.7735 -158.877) (end 93.472 -158.1785) (width 0.25) (layer F.Cu) (net 23))
(segment (start 93.472 -158.1785) (end 93.472 -155.956) (width 0.25) (layer F.Cu) (net 23))
(segment (start 93.000999 -155.484999) (end 91.911001 -155.484999) (width 0.25) (layer F.Cu) (net 23))
(segment (start 93.472 -155.956) (end 93.000999 -155.484999) (width 0.25) (layer F.Cu) (net 23))
(segment (start 91.911001 -155.484999) (end 90.8685 -156.5275) (width 0.25) (layer F.Cu) (net 23))
(segment (start 90.8685 -156.5275) (end 87.122 -156.5275) (width 0.25) (layer F.Cu) (net 23))
(segment (start 87.122 -156.5275) (end 86.614 -156.0195) (width 0.25) (layer F.Cu) (net 23))
(segment (start 86.0385 -145.4785) (end 85.0265 -145.4785) (width 0.25) (layer F.Cu) (net 23))
(segment (start 86.614 -146.054) (end 86.0385 -145.4785) (width 0.25) (layer F.Cu) (net 23))
(segment (start 86.614 -156.0195) (end 86.614 -146.054) (width 0.25) (layer F.Cu) (net 23))
(segment (start 16.896815 -135.9535) (end 15.880815 -134.9375) (width 1) (layer B.Cu) (net 23))
(segment (start 17.4625 -135.9535) (end 16.896815 -135.9535) (width 1) (layer B.Cu) (net 23))
(via (at 1.2065 -131.318) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 15.880815 -134.9375) (end 4.826 -134.9375) (width 1) (layer B.Cu) (net 23))
(segment (start 4.826 -134.9375) (end 1.2065 -131.318) (width 1) (layer B.Cu) (net 23))
(segment (start 30.861 -101.981) (end 30.861 -101.5365) (width 0.25) (layer F.Cu) (net 23))
(via (at 28.0035 -96.4565) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 30.861 -101.5365) (end 28.0035 -98.679) (width 0.25) (layer F.Cu) (net 23))
(segment (start 28.0035 -98.679) (end 28.0035 -96.4565) (width 0.25) (layer F.Cu) (net 23))
(via (at 36.661629 -80.799097) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 33.386726 -84.074) (end 36.661629 -80.799097) (width 0.25) (layer B.Cu) (net 23))
(segment (start 30.1625 -84.074) (end 33.386726 -84.074) (width 0.25) (layer B.Cu) (net 23))
(segment (start 27.686 -86.5505) (end 30.1625 -84.074) (width 0.25) (layer B.Cu) (net 23))
(segment (start 27.686 -95.573315) (end 27.686 -86.5505) (width 0.25) (layer B.Cu) (net 23))
(segment (start 28.0035 -96.4565) (end 28.0035 -95.890815) (width 0.25) (layer B.Cu) (net 23))
(segment (start 28.0035 -95.890815) (end 27.686 -95.573315) (width 0.25) (layer B.Cu) (net 23))
(segment (start 46.239019 -69.330981) (end 36.661629 -78.908371) (width 0.25) (layer F.Cu) (net 23))
(segment (start 36.661629 -78.908371) (end 36.661629 -80.799097) (width 0.25) (layer F.Cu) (net 23))
(via (at 46.265 -67.3735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 46.239019 -69.330981) (end 46.239019 -67.399481) (width 0.25) (layer F.Cu) (net 23))
(segment (start 46.239019 -67.399481) (end 46.265 -67.3735) (width 0.25) (layer F.Cu) (net 23))
(segment (start 46.265 -66.072998) (end 46.678998 -65.659) (width 0.25) (layer B.Cu) (net 23))
(segment (start 46.265 -67.3735) (end 46.265 -66.072998) (width 0.25) (layer B.Cu) (net 23))
(segment (start 46.678998 -65.659) (end 46.99 -65.659) (width 0.25) (layer B.Cu) (net 23))
(segment (start 48.51951 -64.12949) (end 60.52101 -64.12949) (width 0.25) (layer B.Cu) (net 23))
(segment (start 46.99 -65.659) (end 48.51951 -64.12949) (width 0.25) (layer B.Cu) (net 23))
(segment (start 61.5315 -63.119) (end 61.5315 -62.0395) (width 0.25) (layer B.Cu) (net 23))
(segment (start 60.52101 -64.12949) (end 61.5315 -63.119) (width 0.25) (layer B.Cu) (net 23))
(segment (start 115.437185 -60.8065) (end 115.787 -60.8065) (width 0.25) (layer F.Cu) (net 23))
(via (at 125.349 -49.8475) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 115.787 -60.8065) (end 125.349 -51.2445) (width 0.25) (layer F.Cu) (net 23))
(segment (start 125.349 -51.2445) (end 125.349 -49.8475) (width 0.25) (layer F.Cu) (net 23))
(via (at 125.4125 -30.5435) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 125.349 -49.8475) (end 125.349 -30.607) (width 0.25) (layer B.Cu) (net 23))
(segment (start 125.349 -30.607) (end 125.4125 -30.5435) (width 0.25) (layer B.Cu) (net 23))
(segment (start 119.709002 -20.828) (end 118.044 -20.828) (width 0.25) (layer F.Cu) (net 23))
(segment (start 120.523 -22.6695) (end 120.523 -21.641998) (width 0.25) (layer F.Cu) (net 23))
(segment (start 125.4125 -29.7815) (end 126.492 -28.702) (width 0.25) (layer F.Cu) (net 23))
(segment (start 118.044 -20.828) (end 116.742 -19.526) (width 0.25) (layer F.Cu) (net 23))
(segment (start 125.4125 -30.5435) (end 125.4125 -29.7815) (width 0.25) (layer F.Cu) (net 23))
(segment (start 126.492 -28.702) (end 126.492 -26.924) (width 0.25) (layer F.Cu) (net 23))
(segment (start 126.492 -26.924) (end 123.444 -23.876) (width 0.25) (layer F.Cu) (net 23))
(segment (start 120.523 -21.641998) (end 119.709002 -20.828) (width 0.25) (layer F.Cu) (net 23))
(segment (start 123.444 -23.876) (end 121.7295 -23.876) (width 0.25) (layer F.Cu) (net 23))
(segment (start 121.7295 -23.876) (end 120.523 -22.6695) (width 0.25) (layer F.Cu) (net 23))
(via (at 131.5085 -41.91) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 129.794 -50.1015) (end 131.5085 -48.387) (width 1) (layer F.Cu) (net 23))
(segment (start 131.5085 -48.387) (end 131.5085 -41.91) (width 1) (layer F.Cu) (net 23))
(segment (start 131.108501 -41.510001) (end 131.108501 -41.002001) (width 0.5) (layer B.Cu) (net 23))
(segment (start 131.5085 -41.91) (end 131.108501 -41.510001) (width 0.5) (layer B.Cu) (net 23))
(via (at 129.0955 -31.3055) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 131.108501 -41.002001) (end 129.0955 -38.989) (width 0.5) (layer B.Cu) (net 23))
(segment (start 129.0955 -38.989) (end 129.0955 -31.3055) (width 0.5) (layer B.Cu) (net 23))
(segment (start 129.0955 -31.3055) (end 129.0955 -29.718) (width 0.5) (layer F.Cu) (net 23))
(via (at 140.5255 -24.003) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 129.0955 -29.718) (end 134.8105 -24.003) (width 0.5) (layer F.Cu) (net 23))
(segment (start 134.8105 -24.003) (end 140.5255 -24.003) (width 0.5) (layer F.Cu) (net 23))
(segment (start 140.5255 -24.003) (end 140.925499 -23.603001) (width 0.5) (layer B.Cu) (net 23))
(segment (start 140.925499 -23.603001) (end 141.5415 -22.987) (width 0.5) (layer B.Cu) (net 23))
(segment (start 141.5415 -22.987) (end 141.5415 -15.9385) (width 0.5) (layer B.Cu) (net 23))
(via (at 136.779 -12.5095) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 141.5415 -15.9385) (end 138.1125 -12.5095) (width 0.5) (layer B.Cu) (net 23))
(segment (start 138.1125 -12.5095) (end 136.779 -12.5095) (width 0.5) (layer B.Cu) (net 23))
(via (at 136.525 -117.983) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 137.414 -128.905) (end 137.414 -118.872) (width 1) (layer F.Cu) (net 23))
(segment (start 137.414 -118.872) (end 136.525 -117.983) (width 1) (layer F.Cu) (net 23))
(segment (start 136.525 -117.983) (end 136.525 -110.871) (width 1) (layer B.Cu) (net 23))
(segment (start 136.525 -110.871) (end 138.1125 -109.2835) (width 1) (layer B.Cu) (net 23))
(segment (start 138.1125 -91.821) (end 134.747 -88.4555) (width 1) (layer B.Cu) (net 23))
(segment (start 136.525 -109.2835) (end 135.509 -108.2675) (width 0.5) (layer B.Cu) (net 23))
(segment (start 136.525 -110.871) (end 136.525 -109.2835) (width 1) (layer B.Cu) (net 23))
(segment (start 130.4925 -76.8985) (end 127.0635 -73.4695) (width 1) (layer B.Cu) (net 23))
(via (at 112.5855 -76.3905) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 127.0635 -73.4695) (end 115.5065 -73.4695) (width 1) (layer B.Cu) (net 23))
(segment (start 115.5065 -73.4695) (end 112.5855 -76.3905) (width 1) (layer B.Cu) (net 23))
(segment (start 110.9345 -75.305185) (end 110.9345 -75.184) (width 0.25) (layer F.Cu) (net 23))
(segment (start 112.019815 -76.3905) (end 110.9345 -75.305185) (width 1) (layer F.Cu) (net 23))
(segment (start 112.5855 -76.3905) (end 112.019815 -76.3905) (width 1) (layer F.Cu) (net 23))
(segment (start 130.4925 -76.8985) (end 130.429 -76.835) (width 0.25) (layer B.Cu) (net 23))
(segment (start 113.538 -65.0875) (end 113.538 -65.024) (width 0.25) (layer F.Cu) (net 23))
(segment (start 113.538 -65.024) (end 113.9825 -64.5795) (width 1) (layer F.Cu) (net 23))
(segment (start 116.44737 -64.5795) (end 117.01887 -64.008) (width 1) (layer F.Cu) (net 23))
(segment (start 113.9825 -64.5795) (end 116.44737 -64.5795) (width 1) (layer F.Cu) (net 23))
(segment (start 133.7945 -87.503) (end 134.747 -88.4555) (width 1) (layer B.Cu) (net 23))
(segment (start 133.35 -87.0585) (end 133.7945 -87.503) (width 1) (layer B.Cu) (net 23))
(segment (start 130.4925 -76.8985) (end 133.35 -79.756) (width 1) (layer B.Cu) (net 23))
(segment (start 133.35 -79.756) (end 133.35 -87.0585) (width 1) (layer B.Cu) (net 23))
(segment (start 133.35 -79.756) (end 133.35 -79.756) (width 1) (layer B.Cu) (net 23) (tstamp 5C59FCFA))
(via (at 133.35 -79.756) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(via (at 106.6165 -84.201) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 106.045 -83.6295) (end 106.6165 -84.201) (width 0.25) (layer F.Cu) (net 23))
(segment (start 106.045 -82.296) (end 106.045 -83.6295) (width 0.25) (layer F.Cu) (net 23))
(segment (start 106.045 -82.296) (end 106.045 -66.421) (width 0.25) (layer F.Cu) (net 23))
(segment (start 106.045 -82.423) (end 106.045 -82.296) (width 0.25) (layer F.Cu) (net 23))
(segment (start 106.6165 -84.201) (end 107.442 -85.0265) (width 0.25) (layer B.Cu) (net 23))
(segment (start 107.442 -85.0265) (end 107.7595 -85.0265) (width 0.25) (layer B.Cu) (net 23))
(segment (start 107.7595 -85.0265) (end 108.2675 -85.5345) (width 0.25) (layer B.Cu) (net 23))
(segment (start 108.2675 -85.5345) (end 109.474 -85.5345) (width 0.25) (layer B.Cu) (net 23))
(segment (start 109.982 -86.0425) (end 109.982 -89.789) (width 0.25) (layer B.Cu) (net 23))
(segment (start 109.474 -85.5345) (end 109.982 -86.0425) (width 0.25) (layer B.Cu) (net 23))
(segment (start 144.78 -146.39) (end 138.1535 -146.39) (width 0.5) (layer B.Cu) (net 23))
(via (at 17.272 -134.5565) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 17.3355 -134.62) (end 17.272 -134.5565) (width 0.25) (layer B.Cu) (net 23))
(segment (start 12.106 -122.2785) (end 7.1755 -122.2785) (width 0.25) (layer F.Cu) (net 23))
(segment (start 13.208 -123.3805) (end 12.106 -122.2785) (width 0.25) (layer F.Cu) (net 23))
(segment (start 17.272 -134.5565) (end 13.208 -130.4925) (width 0.25) (layer F.Cu) (net 23))
(segment (start 13.208 -130.4925) (end 13.208 -123.3805) (width 0.25) (layer F.Cu) (net 23))
(segment (start 12.151 -49.3805) (end 8.0645 -49.3805) (width 0.5) (layer F.Cu) (net 23))
(segment (start 89.2048 -26.3525) (end 91.4273 -28.575) (width 0.25) (layer F.Cu) (net 23))
(segment (start 78.1685 -26.3525) (end 89.2048 -26.3525) (width 0.25) (layer F.Cu) (net 23))
(segment (start 77.597 -26.924) (end 78.1685 -26.3525) (width 0.25) (layer F.Cu) (net 23))
(segment (start 77.597 -38.354) (end 77.597 -26.924) (width 0.25) (layer F.Cu) (net 23))
(segment (start 144.7575 -100.6475) (end 144.78 -100.67) (width 0.25) (layer B.Cu) (net 23))
(segment (start 144.7575 -100.6475) (end 144.78 -100.67) (width 0.25) (layer F.Cu) (net 23))
(segment (start 144.5485 -42.4815) (end 144.78 -42.25) (width 0.25) (layer F.Cu) (net 23))
(segment (start 8.169 -26.162) (end 8.0645 -26.2665) (width 0.25) (layer F.Cu) (net 23))
(segment (start 28.321 -161.1809) (end 28.3285 -161.1884) (width 0.25) (layer F.Cu) (net 23))
(segment (start 20.7645 -157.78587) (end 21.60163 -158.623) (width 0.5) (layer F.Cu) (net 23))
(segment (start 20.7645 -156.6545) (end 20.7645 -157.78587) (width 0.5) (layer F.Cu) (net 23))
(segment (start 25.852 -158.623) (end 28.265 -161.036) (width 0.5) (layer F.Cu) (net 23))
(segment (start 21.60163 -158.623) (end 25.852 -158.623) (width 0.5) (layer F.Cu) (net 23))
(segment (start 137.7725 -42.123) (end 131.5085 -48.387) (width 0.5) (layer F.Cu) (net 23))
(segment (start 144.272 -42.123) (end 137.7725 -42.123) (width 0.5) (layer F.Cu) (net 23))
(segment (start 138.1125 -105.664) (end 138.1125 -107.1245) (width 0.25) (layer B.Cu) (net 23))
(segment (start 143.17 -100.6065) (end 138.1125 -105.664) (width 0.25) (layer B.Cu) (net 23))
(segment (start 144.7165 -100.6065) (end 143.17 -100.6065) (width 0.25) (layer B.Cu) (net 23))
(segment (start 138.1125 -109.2835) (end 138.1125 -107.1245) (width 1) (layer B.Cu) (net 23))
(segment (start 138.1125 -107.1245) (end 138.1125 -91.821) (width 1) (layer B.Cu) (net 23))
(segment (start 141.725501 -124.593499) (end 137.414 -128.905) (width 0.25) (layer F.Cu) (net 23))
(segment (start 143.653001 -124.593499) (end 141.725501 -124.593499) (width 0.25) (layer F.Cu) (net 23))
(segment (start 144.653 -123.5935) (end 143.653001 -124.593499) (width 0.25) (layer F.Cu) (net 23))
(segment (start 10.328 -145.075) (end 14.732 -149.479) (width 0.25) (layer F.Cu) (net 23))
(segment (start 6.9215 -145.075) (end 10.328 -145.075) (width 0.25) (layer F.Cu) (net 23))
(segment (start 15.456001 -19.532499) (end 15.456001 -22.961499) (width 0.25) (layer B.Cu) (net 23))
(segment (start 16.256 -18.7325) (end 15.456001 -19.532499) (width 0.25) (layer B.Cu) (net 23))
(segment (start 12.0875 -26.33) (end 7.9375 -26.33) (width 0.25) (layer B.Cu) (net 23))
(segment (start 15.456001 -22.961499) (end 12.0875 -26.33) (width 0.25) (layer B.Cu) (net 23))
(segment (start 136.9695 -147.574) (end 138.1535 -146.39) (width 0.5) (layer B.Cu) (net 23))
(segment (start 127.4445 -149.2885) (end 129.159 -147.574) (width 0.5) (layer B.Cu) (net 23))
(segment (start 129.159 -147.574) (end 136.9695 -147.574) (width 0.5) (layer B.Cu) (net 23))
(segment (start 30.87263 -124.3965) (end 29.1465 -126.12263) (width 0.25) (layer B.Cu) (net 23))
(segment (start 32.004 -124.3965) (end 30.87263 -124.3965) (width 0.25) (layer B.Cu) (net 23))
(segment (start 29.1465 -126.12263) (end 29.13487 -126.12263) (width 0.25) (layer B.Cu) (net 23))
(segment (start 20.701 -134.5565) (end 17.272 -134.5565) (width 0.25) (layer B.Cu) (net 23))
(segment (start 29.13487 -126.12263) (end 20.701 -134.5565) (width 0.25) (layer B.Cu) (net 23))
(segment (start 16.723 -49.3805) (end 24.0665 -42.037) (width 0.5) (layer F.Cu) (net 23))
(segment (start 12.151 -49.3805) (end 16.723 -49.3805) (width 0.5) (layer F.Cu) (net 23))
(segment (start 75.7555 -53.213) (end 72.393 -53.213) (width 0.25) (layer F.Cu) (net 23))
(segment (start 76.88687 -53.213) (end 79.0575 -53.213) (width 0.25) (layer F.Cu) (net 23))
(segment (start 75.7555 -53.213) (end 76.88687 -53.213) (width 0.25) (layer F.Cu) (net 23))
(segment (start 77.6605 -38.4175) (end 77.597 -38.354) (width 0.25) (layer F.Cu) (net 23))
(segment (start 75.7555 -53.213) (end 77.6605 -51.308) (width 0.25) (layer F.Cu) (net 23))
(segment (start 77.6605 -51.308) (end 77.6605 -38.4175) (width 0.25) (layer F.Cu) (net 23))
(segment (start 89.5985 -40.64) (end 91.5543 -42.5958) (width 0.25) (layer F.Cu) (net 23))
(segment (start 82.169 -40.64) (end 89.5985 -40.64) (width 0.25) (layer F.Cu) (net 23))
(segment (start 81.0895 -41.7195) (end 82.169 -40.64) (width 0.25) (layer F.Cu) (net 23))
(segment (start 79.0575 -53.213) (end 81.0895 -51.181) (width 0.25) (layer F.Cu) (net 23))
(segment (start 81.0895 -51.181) (end 81.0895 -41.7195) (width 0.25) (layer F.Cu) (net 23))
(segment (start 77.1405 -38.4175) (end 77.6605 -38.4175) (width 0.25) (layer F.Cu) (net 23))
(segment (start 75.045 -40.513) (end 77.1405 -38.4175) (width 0.25) (layer F.Cu) (net 23))
(segment (start 74.295 -40.513) (end 75.045 -40.513) (width 0.25) (layer F.Cu) (net 23))
(segment (start 22.2885 -96.647) (end 22.2885 -98.7425) (width 0.25) (layer F.Cu) (net 23))
(segment (start 15.7705 -85.004) (end 17.3355 -83.439) (width 0.25) (layer F.Cu) (net 23))
(segment (start 7.8105 -85.004) (end 15.7705 -85.004) (width 0.25) (layer F.Cu) (net 23))
(segment (start 17.3355 -83.439) (end 19.431 -83.439) (width 0.25) (layer F.Cu) (net 23))
(segment (start 19.431 -83.439) (end 20.3835 -84.3915) (width 0.25) (layer F.Cu) (net 23))
(segment (start 20.3835 -84.3915) (end 20.3835 -94.742) (width 0.25) (layer F.Cu) (net 23))
(segment (start 20.3835 -94.742) (end 22.2885 -96.647) (width 0.25) (layer F.Cu) (net 23))
(segment (start 108.347599 -12.622499) (end 108.347599 -12.678499) (width 0.5) (layer F.Cu) (net 23))
(segment (start 107.4726 -11.7475) (end 108.347599 -12.622499) (width 0.5) (layer F.Cu) (net 23))
(segment (start 108.347599 -12.678499) (end 109.1946 -13.5255) (width 0.5) (layer F.Cu) (net 23))
(segment (start 109.1946 -13.5255) (end 126.4666 -13.5255) (width 0.5) (layer F.Cu) (net 23))
(segment (start 127.4826 -12.5095) (end 136.779 -12.5095) (width 0.5) (layer F.Cu) (net 23))
(segment (start 126.4666 -13.5255) (end 127.4826 -12.5095) (width 0.5) (layer F.Cu) (net 23))
(segment (start 134.4041 -79.756) (end 138.0998 -76.0603) (width 0.5) (layer F.Cu) (net 23))
(segment (start 133.35 -79.756) (end 134.4041 -79.756) (width 0.5) (layer F.Cu) (net 23))
(segment (start 143.1573 -76.0603) (end 143.891 -76.794) (width 0.5) (layer F.Cu) (net 23))
(segment (start 138.0998 -76.0603) (end 143.1573 -76.0603) (width 0.5) (layer F.Cu) (net 23))
(segment (start 143.891 -76.794) (end 144.78 -77.683) (width 0.5) (layer F.Cu) (net 23))
(segment (start 12.2555 -14.5415) (end 12.319 -14.5415) (width 0.25) (layer F.Cu) (net 23))
(segment (start 12.319 -14.5415) (end 15.4686 -11.3919) (width 0.25) (layer F.Cu) (net 23))
(segment (start 21.939 -11.3919) (end 24.7838 -8.5471) (width 0.25) (layer F.Cu) (net 23))
(segment (start 15.4686 -11.3919) (end 21.939 -11.3919) (width 0.25) (layer F.Cu) (net 23))
(segment (start 129.2225 -16.7665) (end 129.442 -16.986) (width 0.25) (layer F.Cu) (net 24))
(segment (start 22.2885 -108.7095) (end 21.942 -108.363) (width 0.25) (layer F.Cu) (net 24))
(segment (start 129.494399 -124.277001) (end 130.5941 -123.1773) (width 0.25) (layer F.Cu) (net 24))
(segment (start 120.467001 -124.277001) (end 129.494399 -124.277001) (width 0.25) (layer F.Cu) (net 24))
(segment (start 119.38 -123.19) (end 120.467001 -124.277001) (width 0.25) (layer F.Cu) (net 24))
(segment (start 115.062 -121.92) (end 115.062 -117.475) (width 0.25) (layer B.Cu) (net 24))
(segment (start 115.062 -117.475) (end 114.935 -117.348) (width 0.25) (layer B.Cu) (net 24))
(segment (start 118.11 -121.92) (end 119.38 -123.19) (width 0.25) (layer F.Cu) (net 24))
(segment (start 115.062 -121.92) (end 118.11 -121.92) (width 0.25) (layer F.Cu) (net 24))
(via (at 115.062 -121.92) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(via (at 114.935 -117.348) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 93.628 -65.376) (end 93.628 -66.643) (width 0.25) (layer F.Cu) (net 24))
(segment (start 95.377 -63.627) (end 93.628 -65.376) (width 0.25) (layer F.Cu) (net 24))
(segment (start 95.377 -63.627) (end 91.62909 -63.627) (width 0.25) (layer F.Cu) (net 24))
(segment (start 91.62909 -63.627) (end 90.67659 -62.6745) (width 0.25) (layer F.Cu) (net 24))
(segment (start 74.61109 -62.6745) (end 73.84909 -61.9125) (width 0.25) (layer F.Cu) (net 24))
(segment (start 90.67659 -62.6745) (end 74.61109 -62.6745) (width 0.25) (layer F.Cu) (net 24))
(via (at 59.563 -61.849) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 73.84909 -61.9125) (end 59.6265 -61.9125) (width 0.25) (layer F.Cu) (net 24))
(segment (start 59.6265 -61.9125) (end 59.563 -61.849) (width 0.25) (layer F.Cu) (net 24))
(segment (start 58.928 -61.849) (end 59.563 -61.849) (width 0.25) (layer B.Cu) (net 24))
(segment (start 57.9755 -61.849) (end 58.928 -61.849) (width 0.25) (layer B.Cu) (net 24))
(segment (start 57.375 -58.071) (end 57.375 -61.2485) (width 0.25) (layer B.Cu) (net 24))
(segment (start 57.375 -61.2485) (end 57.9755 -61.849) (width 0.25) (layer B.Cu) (net 24))
(via (at 107.479 -64.298403) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 107.696 -82.3595) (end 107.696 -64.515403) (width 0.25) (layer F.Cu) (net 24))
(segment (start 107.696 -64.515403) (end 107.479 -64.298403) (width 0.25) (layer F.Cu) (net 24))
(segment (start 97.8535 -63.627) (end 95.377 -63.627) (width 0.25) (layer F.Cu) (net 24))
(segment (start 98.2345 -64.008) (end 97.8535 -63.627) (width 0.25) (layer F.Cu) (net 24))
(segment (start 107.079001 -63.898404) (end 107.078404 -63.898404) (width 0.25) (layer F.Cu) (net 24))
(segment (start 107.479 -64.298403) (end 107.079001 -63.898404) (width 0.25) (layer F.Cu) (net 24))
(segment (start 107.078404 -63.898404) (end 106.8705 -63.6905) (width 0.25) (layer F.Cu) (net 24))
(segment (start 106.8705 -63.6905) (end 99.434502 -63.6905) (width 0.25) (layer F.Cu) (net 24))
(segment (start 99.434502 -63.6905) (end 99.117002 -64.008) (width 0.25) (layer F.Cu) (net 24))
(segment (start 99.117002 -64.008) (end 98.2345 -64.008) (width 0.25) (layer F.Cu) (net 24))
(via (at 113.919 -61.5315) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 113.519001 -61.931499) (end 113.429999 -61.931499) (width 0.25) (layer B.Cu) (net 24))
(segment (start 113.919 -61.5315) (end 113.519001 -61.931499) (width 0.25) (layer B.Cu) (net 24))
(segment (start 113.429999 -61.931499) (end 113.385498 -61.976) (width 0.25) (layer B.Cu) (net 24))
(segment (start 113.385498 -61.976) (end 110.49 -61.976) (width 0.25) (layer B.Cu) (net 24))
(segment (start 108.167597 -64.298403) (end 107.479 -64.298403) (width 0.25) (layer B.Cu) (net 24))
(segment (start 110.49 -61.976) (end 108.167597 -64.298403) (width 0.25) (layer B.Cu) (net 24))
(segment (start 128.2065 -18.2215) (end 129.442 -16.986) (width 0.25) (layer F.Cu) (net 24))
(segment (start 23.356999 -106.948001) (end 23.356999 -101.548911) (width 0.25) (layer F.Cu) (net 24))
(segment (start 21.942 -108.363) (end 23.356999 -106.948001) (width 0.25) (layer F.Cu) (net 24))
(segment (start 23.356999 -101.548911) (end 27.12552 -97.78039) (width 0.25) (layer F.Cu) (net 24))
(segment (start 59.436 -61.976) (end 59.563 -61.849) (width 0.25) (layer F.Cu) (net 24))
(segment (start 21.942 -109.49437) (end 20.31137 -111.125) (width 0.25) (layer F.Cu) (net 24))
(segment (start 21.942 -108.363) (end 21.942 -109.49437) (width 0.25) (layer F.Cu) (net 24))
(segment (start 20.31137 -111.125) (end 19.939 -111.125) (width 0.25) (layer F.Cu) (net 24))
(segment (start 19.939 -111.125) (end 14.986 -116.078) (width 0.25) (layer F.Cu) (net 24))
(segment (start 14.986 -129.16041) (end 16.1925 -130.36691) (width 0.25) (layer F.Cu) (net 24))
(segment (start 16.1925 -130.36691) (end 16.1925 -130.4925) (width 0.25) (layer F.Cu) (net 24))
(segment (start 16.1925 -130.4925) (end 29.1465 -143.4465) (width 0.25) (layer F.Cu) (net 24))
(segment (start 29.1465 -143.4465) (end 59.436 -143.4465) (width 0.25) (layer F.Cu) (net 24))
(segment (start 59.436 -143.4465) (end 63.1825 -147.193) (width 0.25) (layer F.Cu) (net 24))
(segment (start 63.1825 -147.193) (end 63.1825 -148.463) (width 0.25) (layer F.Cu) (net 24))
(segment (start 63.1825 -148.463) (end 60.3885 -151.257) (width 0.25) (layer F.Cu) (net 24))
(segment (start 58.662998 -151.257) (end 57.404 -152.515998) (width 0.25) (layer F.Cu) (net 24))
(segment (start 60.3885 -151.257) (end 58.662998 -151.257) (width 0.25) (layer F.Cu) (net 24))
(segment (start 56.904999 -157.220001) (end 56.105 -158.02) (width 0.25) (layer F.Cu) (net 24))
(segment (start 57.230001 -156.894999) (end 56.904999 -157.220001) (width 0.25) (layer F.Cu) (net 24))
(segment (start 57.230001 -155.812499) (end 57.230001 -156.894999) (width 0.25) (layer F.Cu) (net 24))
(segment (start 57.404 -155.6385) (end 57.230001 -155.812499) (width 0.25) (layer F.Cu) (net 24))
(segment (start 57.404 -152.515998) (end 57.404 -155.6385) (width 0.25) (layer F.Cu) (net 24))
(segment (start 14.986 -116.078) (end 14.986 -129.16041) (width 0.25) (layer F.Cu) (net 24))
(via (at 27.178 -97.3455) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 27.12552 -97.78039) (end 27.12552 -97.39798) (width 0.25) (layer F.Cu) (net 24))
(segment (start 27.12552 -97.39798) (end 27.178 -97.3455) (width 0.25) (layer F.Cu) (net 24))
(via (at 35.56 -80.8355) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24) (tstamp 5C7323E2))
(segment (start 27.178 -88.4555) (end 27.178 -97.3455) (width 0.25) (layer B.Cu) (net 24))
(segment (start 27.178 -86.36) (end 27.178 -88.4555) (width 0.25) (layer B.Cu) (net 24))
(segment (start 29.972 -83.566) (end 27.178 -86.36) (width 0.25) (layer B.Cu) (net 24))
(segment (start 35.56 -80.8355) (end 32.8295 -83.566) (width 0.25) (layer B.Cu) (net 24))
(segment (start 32.8295 -83.566) (end 29.972 -83.566) (width 0.25) (layer B.Cu) (net 24))
(via (at 45.54 -66.548) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 45.54 -65.982315) (end 46.313324 -65.208991) (width 0.25) (layer B.Cu) (net 24))
(segment (start 45.54 -66.548) (end 45.54 -65.982315) (width 0.25) (layer B.Cu) (net 24))
(segment (start 46.313324 -65.208991) (end 46.678009 -65.208991) (width 0.25) (layer B.Cu) (net 24))
(segment (start 46.678009 -65.208991) (end 48.26 -63.627) (width 0.25) (layer B.Cu) (net 24))
(segment (start 48.26 -63.627) (end 59.1185 -63.627) (width 0.25) (layer B.Cu) (net 24))
(segment (start 59.563 -63.1825) (end 59.563 -61.849) (width 0.25) (layer B.Cu) (net 24))
(segment (start 59.1185 -63.627) (end 59.563 -63.1825) (width 0.25) (layer B.Cu) (net 24))
(segment (start 35.56 -79.18591) (end 35.56 -80.8355) (width 0.25) (layer F.Cu) (net 24))
(segment (start 35.62209 -79.18591) (end 35.56 -79.18591) (width 0.25) (layer F.Cu) (net 24))
(segment (start 45.54 -66.548) (end 45.54 -69.268) (width 0.25) (layer F.Cu) (net 24))
(segment (start 45.54 -69.268) (end 35.62209 -79.18591) (width 0.25) (layer F.Cu) (net 24))
(via (at 126.1745 -31.242) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 128.14441 -27.87509) (end 126.1745 -29.845) (width 0.25) (layer F.Cu) (net 24))
(segment (start 126.1745 -29.845) (end 126.1745 -31.242) (width 0.25) (layer F.Cu) (net 24))
(via (at 126.1745 -49.0855) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 126.1745 -31.242) (end 126.1745 -49.0855) (width 0.25) (layer B.Cu) (net 24))
(segment (start 126.1745 -51.435) (end 125.6665 -51.943) (width 0.25) (layer F.Cu) (net 24))
(segment (start 126.1745 -49.0855) (end 126.1745 -51.435) (width 0.25) (layer F.Cu) (net 24))
(segment (start 116.07941 -61.5315) (end 116.078 -61.5315) (width 0.25) (layer F.Cu) (net 24))
(segment (start 125.6665 -51.94441) (end 116.07941 -61.5315) (width 0.25) (layer F.Cu) (net 24))
(segment (start 125.6665 -51.943) (end 125.6665 -51.94441) (width 0.25) (layer F.Cu) (net 24))
(segment (start 113.919 -61.5315) (end 116.078 -61.5315) (width 0.25) (layer F.Cu) (net 24))
(segment (start 128.14441 -18.28359) (end 128.2065 -18.2215) (width 0.25) (layer F.Cu) (net 24))
(segment (start 128.14441 -27.87509) (end 128.14441 -18.28359) (width 0.25) (layer F.Cu) (net 24))
(via (at 107.823 -83.1215) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 107.696 -82.3595) (end 107.696 -82.9945) (width 0.25) (layer F.Cu) (net 24))
(segment (start 107.696 -82.9945) (end 107.823 -83.1215) (width 0.25) (layer F.Cu) (net 24))
(segment (start 107.823 -83.1215) (end 108.222999 -83.521499) (width 0.25) (layer B.Cu) (net 24))
(segment (start 108.222999 -83.521499) (end 109.0295 -84.328) (width 0.25) (layer B.Cu) (net 24))
(via (at 114.681 -88.0745) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 109.0295 -84.328) (end 110.9345 -84.328) (width 0.25) (layer B.Cu) (net 24))
(segment (start 110.9345 -84.328) (end 114.681 -88.0745) (width 0.25) (layer B.Cu) (net 24))
(segment (start 114.681 -117.094) (end 114.935 -117.348) (width 0.25) (layer F.Cu) (net 24))
(segment (start 114.681 -88.0745) (end 114.681 -117.094) (width 0.25) (layer F.Cu) (net 24))
(segment (start 119.6975 -166.3319) (end 123.2281 -169.8625) (width 2) (layer F.Cu) (net 26))
(segment (start 128.6764 -169.8625) (end 133.35 -165.1889) (width 2) (layer F.Cu) (net 26))
(segment (start 123.2281 -169.8625) (end 128.6764 -169.8625) (width 2) (layer F.Cu) (net 26))
(segment (start 133.35 -165.1889) (end 135.7249 -165.1889) (width 2) (layer B.Cu) (net 26))
(segment (start 130.556 -7.366) (end 129.056 -7.366) (width 2) (layer B.Cu) (net 26) (tstamp 5C95F0D9))
(segment (start 65.913 -41.4655) (end 65.913 -49.5935) (width 0.25) (layer B.Cu) (net 27))
(segment (start 65.913 -49.5935) (end 66.8655 -50.546) (width 0.25) (layer B.Cu) (net 27))
(segment (start 66.8655 -50.546) (end 70.8025 -50.546) (width 0.25) (layer B.Cu) (net 27))
(segment (start 70.8025 -50.546) (end 70.866 -50.546) (width 0.25) (layer B.Cu) (net 27))
(segment (start 72.33201 -52.01201) (end 72.33201 -54.36151) (width 0.25) (layer B.Cu) (net 27))
(segment (start 70.866 -50.546) (end 72.33201 -52.01201) (width 0.25) (layer B.Cu) (net 27))
(via (at 72.898 -56.1975) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27))
(segment (start 72.33201 -54.36151) (end 72.898 -54.9275) (width 0.25) (layer B.Cu) (net 27))
(segment (start 72.898 -54.9275) (end 72.898 -56.1975) (width 0.25) (layer B.Cu) (net 27))
(segment (start 72.898 -56.1975) (end 81.3435 -56.1975) (width 0.25) (layer F.Cu) (net 27))
(segment (start 81.3435 -56.1975) (end 83.058 -57.912) (width 0.25) (layer F.Cu) (net 27))
(segment (start 85.299299 -42.221797) (end 85.299299 -43.706799) (width 0.25) (layer B.Cu) (net 27))
(segment (start 82.892002 -39.8145) (end 85.299299 -42.221797) (width 0.25) (layer B.Cu) (net 27))
(segment (start 89.0143 -47.4218) (end 89.0143 -50.2158) (width 0.25) (layer B.Cu) (net 27))
(segment (start 85.299299 -43.706799) (end 89.0143 -47.4218) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.216381 -50.2158) (end 91.5543 -50.2158) (width 0.25) (layer B.Cu) (net 27))
(segment (start 89.0143 -50.2158) (end 90.216381 -50.2158) (width 0.25) (layer B.Cu) (net 27))
(segment (start 65.913 -41.4655) (end 65.9765 -41.4655) (width 0.25) (layer B.Cu) (net 27))
(via (at 72.7075 -37.0205) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27))
(segment (start 65.9765 -41.4655) (end 70.4215 -37.0205) (width 0.25) (layer B.Cu) (net 27))
(segment (start 70.4215 -37.0205) (end 72.7075 -37.0205) (width 0.25) (layer B.Cu) (net 27))
(segment (start 73.0885 -37.0205) (end 74.2315 -35.8775) (width 0.25) (layer F.Cu) (net 27))
(segment (start 72.7075 -37.0205) (end 73.0885 -37.0205) (width 0.25) (layer F.Cu) (net 27))
(segment (start 80.8355 -39.8145) (end 82.892002 -39.8145) (width 0.25) (layer B.Cu) (net 27))
(segment (start 80.7085 -39.8145) (end 80.8355 -39.8145) (width 0.25) (layer B.Cu) (net 27))
(segment (start 80.7085 -39.8145) (end 80.645 -39.8145) (width 0.25) (layer B.Cu) (net 27))
(via (at 75.7555 -37.084) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27))
(segment (start 80.645 -39.8145) (end 77.9145 -37.084) (width 0.25) (layer B.Cu) (net 27))
(segment (start 77.9145 -37.084) (end 75.7555 -37.084) (width 0.25) (layer B.Cu) (net 27))
(segment (start 75.438 -37.084) (end 74.2315 -35.8775) (width 0.25) (layer F.Cu) (net 27))
(segment (start 75.7555 -37.084) (end 75.438 -37.084) (width 0.25) (layer F.Cu) (net 27))
(segment (start 88.548 -68.05163) (end 88.548 -69.183) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.678 -64.9605) (end 90.551 -65.0875) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.551 -65.0875) (end 90.551 -67.6275) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.551 -67.6275) (end 90.2335 -67.945) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.2335 -67.945) (end 88.65463 -67.945) (width 0.25) (layer B.Cu) (net 27))
(segment (start 88.65463 -67.945) (end 88.548 -68.05163) (width 0.25) (layer B.Cu) (net 27))
(via (at 90.4875 -60.0075) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27))
(segment (start 90.678 -64.9605) (end 90.678 -60.198) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.678 -60.198) (end 90.4875 -60.0075) (width 0.25) (layer B.Cu) (net 27))
(segment (start 90.4875 -59.441815) (end 90.17 -59.124315) (width 0.25) (layer F.Cu) (net 27))
(segment (start 90.4875 -60.0075) (end 90.4875 -59.441815) (width 0.25) (layer F.Cu) (net 27))
(segment (start 90.17 -59.124315) (end 90.17 -58.7375) (width 0.25) (layer F.Cu) (net 27))
(segment (start 90.17 -58.7375) (end 90.043 -58.6105) (width 0.25) (layer F.Cu) (net 27))
(segment (start 83.7565 -58.6105) (end 83.058 -57.912) (width 0.25) (layer F.Cu) (net 27))
(segment (start 90.043 -58.6105) (end 83.7565 -58.6105) (width 0.25) (layer F.Cu) (net 27))
(segment (start 66.167 -40.386) (end 66.1035 -40.386) (width 0.25) (layer B.Cu) (net 28))
(segment (start 65.2145 -41.275) (end 65.2145 -49.784) (width 0.25) (layer B.Cu) (net 28))
(segment (start 66.1035 -40.386) (end 65.2145 -41.275) (width 0.25) (layer B.Cu) (net 28))
(segment (start 65.2145 -49.784) (end 66.6115 -51.181) (width 0.25) (layer B.Cu) (net 28))
(segment (start 66.6115 -51.181) (end 70.6755 -51.181) (width 0.25) (layer B.Cu) (net 28))
(via (at 71.882 -55.245) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
(segment (start 70.6755 -51.181) (end 71.882 -52.3875) (width 0.25) (layer B.Cu) (net 28))
(segment (start 71.882 -52.3875) (end 71.882 -55.245) (width 0.25) (layer B.Cu) (net 28))
(segment (start 81.65549 -55.74749) (end 84.0105 -58.1025) (width 0.25) (layer F.Cu) (net 28))
(segment (start 73.78149 -55.74749) (end 81.65549 -55.74749) (width 0.25) (layer F.Cu) (net 28))
(segment (start 71.882 -55.245) (end 73.279 -55.245) (width 0.25) (layer F.Cu) (net 28))
(segment (start 73.279 -55.245) (end 73.78149 -55.74749) (width 0.25) (layer F.Cu) (net 28))
(segment (start 83.1215 -39.243) (end 86.4743 -42.5958) (width 0.25) (layer B.Cu) (net 28))
(segment (start 80.8315 -39.243) (end 83.1215 -39.243) (width 0.25) (layer B.Cu) (net 28))
(segment (start 89.0143 -42.5958) (end 86.4743 -42.5958) (width 0.25) (layer B.Cu) (net 28))
(segment (start 66.167 -40.386) (end 66.2305 -40.386) (width 0.25) (layer B.Cu) (net 28))
(via (at 72.5805 -34.8615) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
(segment (start 66.2305 -40.386) (end 71.755 -34.8615) (width 0.25) (layer B.Cu) (net 28))
(segment (start 71.755 -34.8615) (end 72.5805 -34.8615) (width 0.25) (layer B.Cu) (net 28))
(segment (start 73.025 -34.8615) (end 74.2315 -33.655) (width 0.25) (layer F.Cu) (net 28))
(segment (start 72.5805 -34.8615) (end 73.025 -34.8615) (width 0.25) (layer F.Cu) (net 28))
(segment (start 80.8315 -39.243) (end 80.8315 -39.239) (width 0.25) (layer B.Cu) (net 28))
(via (at 75.7555 -34.7345) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
(segment (start 80.8315 -39.239) (end 76.327 -34.7345) (width 0.25) (layer B.Cu) (net 28))
(segment (start 76.327 -34.7345) (end 75.7555 -34.7345) (width 0.25) (layer B.Cu) (net 28))
(segment (start 75.311 -34.7345) (end 74.2315 -33.655) (width 0.25) (layer F.Cu) (net 28))
(segment (start 75.7555 -34.7345) (end 75.311 -34.7345) (width 0.25) (layer F.Cu) (net 28))
(via (at 91.2495 -58.928) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
(segment (start 84.0105 -58.1025) (end 90.424 -58.1025) (width 0.25) (layer F.Cu) (net 28))
(segment (start 90.424 -58.1025) (end 91.2495 -58.928) (width 0.25) (layer F.Cu) (net 28))
(segment (start 91.088 -65.1855) (end 91.088 -69.183) (width 0.25) (layer B.Cu) (net 28))
(segment (start 91.2495 -58.928) (end 91.2495 -65.024) (width 0.25) (layer B.Cu) (net 28))
(segment (start 91.2495 -65.024) (end 91.088 -65.1855) (width 0.25) (layer B.Cu) (net 28))
(segment (start 46.99 -69.21641) (end 40.767 -75.43941) (width 0.25) (layer F.Cu) (net 29))
(segment (start 46.99 -67.2465) (end 46.99 -69.21641) (width 0.25) (layer F.Cu) (net 29))
(via (at 39.5605 -77.2795) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
(segment (start 40.767 -75.43941) (end 40.767 -76.073) (width 0.25) (layer F.Cu) (net 29))
(segment (start 40.767 -76.073) (end 39.5605 -77.2795) (width 0.25) (layer F.Cu) (net 29))
(via (at 34.798 -77.2795) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
(segment (start 39.5605 -77.2795) (end 34.798 -77.2795) (width 0.25) (layer B.Cu) (net 29))
(segment (start 8.5985 -77.2795) (end 7.874 -78.004) (width 0.25) (layer F.Cu) (net 29))
(segment (start 34.798 -77.2795) (end 8.5985 -77.2795) (width 0.25) (layer F.Cu) (net 29))
(via (at 46.99 -66.421) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
(segment (start 46.99 -67.2465) (end 46.99 -66.421) (width 0.25) (layer F.Cu) (net 29))
(segment (start 61.040001 -54.405999) (end 62.455 -52.991) (width 0.25) (layer B.Cu) (net 29))
(segment (start 48.8315 -64.5795) (end 61.087 -64.5795) (width 0.25) (layer B.Cu) (net 29))
(segment (start 46.99 -66.421) (end 48.8315 -64.5795) (width 0.25) (layer B.Cu) (net 29))
(segment (start 61.087 -64.5795) (end 62.611 -63.0555) (width 0.25) (layer B.Cu) (net 29))
(segment (start 62.611 -63.0555) (end 62.611 -58.039) (width 0.25) (layer B.Cu) (net 29))
(segment (start 62.611 -58.039) (end 61.040001 -56.468001) (width 0.25) (layer B.Cu) (net 29))
(segment (start 61.040001 -56.468001) (end 61.040001 -54.405999) (width 0.25) (layer B.Cu) (net 29))
(segment (start 8.0645 -19.2665) (end 10.7055 -21.9075) (width 0.25) (layer F.Cu) (net 30))
(via (at 20.5105 -22.0345) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 30))
(segment (start 10.7055 -21.9075) (end 20.3835 -21.9075) (width 0.25) (layer F.Cu) (net 30))
(segment (start 20.3835 -21.9075) (end 20.5105 -22.0345) (width 0.25) (layer F.Cu) (net 30))
(via (at 28.8925 -30.2895) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 30))
(segment (start 20.5105 -22.0345) (end 28.7655 -30.2895) (width 0.25) (layer B.Cu) (net 30))
(segment (start 28.7655 -30.2895) (end 28.8925 -30.2895) (width 0.25) (layer B.Cu) (net 30))
(segment (start 59.915 -52.4855) (end 59.915 -52.991) (width 0.25) (layer F.Cu) (net 30))
(segment (start 48.1965 -40.767) (end 59.915 -52.4855) (width 0.25) (layer F.Cu) (net 30))
(segment (start 48.1965 -32.004) (end 48.1965 -40.767) (width 0.25) (layer F.Cu) (net 30))
(segment (start 28.8925 -30.2895) (end 46.482 -30.2895) (width 0.25) (layer F.Cu) (net 30))
(segment (start 46.482 -30.2895) (end 48.1965 -32.004) (width 0.25) (layer F.Cu) (net 30))
(segment (start 58.789999 -54.405999) (end 58.789999 -52.376499) (width 0.25) (layer F.Cu) (net 31))
(segment (start 59.915 -55.531) (end 58.789999 -54.405999) (width 0.25) (layer F.Cu) (net 31))
(segment (start 58.789999 -52.376499) (end 47.371 -40.9575) (width 0.25) (layer F.Cu) (net 31))
(segment (start 47.371 -40.9575) (end 47.371 -32.385) (width 0.25) (layer F.Cu) (net 31))
(segment (start 47.371 -32.385) (end 46.228 -31.242) (width 0.25) (layer F.Cu) (net 31))
(segment (start 46.228 -31.242) (end 28.0035 -31.242) (width 0.25) (layer F.Cu) (net 31))
(segment (start 19.528 -22.7665) (end 19.528 -22.7665) (width 0.25) (layer F.Cu) (net 31))
(segment (start 28.0035 -31.242) (end 28.0035 -31.242) (width 0.25) (layer F.Cu) (net 31) (tstamp 5C59D265))
(via (at 28.0035 -31.242) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 31))
(segment (start 19.528 -22.7665) (end 8.0645 -22.7665) (width 0.25) (layer F.Cu) (net 31) (tstamp 5C59D267))
(via (at 19.528 -22.7665) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 31))
(segment (start 19.528 -22.7665) (end 28.0035 -31.242) (width 0.25) (layer B.Cu) (net 31))
(segment (start 62.455 -56.66237) (end 62.484 -56.69137) (width 0.25) (layer B.Cu) (net 32))
(segment (start 62.455 -55.531) (end 62.455 -56.66237) (width 0.25) (layer B.Cu) (net 32))
(segment (start 47.5615 -69.28132) (end 41.3385 -75.50432) (width 0.25) (layer F.Cu) (net 32))
(segment (start 41.3385 -75.50432) (end 41.3385 -77.0255) (width 0.25) (layer F.Cu) (net 32))
(via (at 38.4175 -78.613) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 32))
(segment (start 41.3385 -77.0255) (end 39.751 -78.613) (width 0.25) (layer F.Cu) (net 32))
(segment (start 39.751 -78.613) (end 38.4175 -78.613) (width 0.25) (layer F.Cu) (net 32))
(via (at 33.528 -78.613) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 32))
(segment (start 38.4175 -78.613) (end 33.528 -78.613) (width 0.25) (layer B.Cu) (net 32))
(segment (start 10.765 -78.613) (end 7.874 -81.504) (width 0.25) (layer F.Cu) (net 32))
(segment (start 33.528 -78.613) (end 32.8295 -77.9145) (width 0.25) (layer F.Cu) (net 32))
(segment (start 11.4635 -77.9145) (end 10.765 -78.613) (width 0.25) (layer F.Cu) (net 32))
(segment (start 32.8295 -77.9145) (end 11.4635 -77.9145) (width 0.25) (layer F.Cu) (net 32))
(via (at 47.715 -67.3735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 32))
(segment (start 47.5615 -69.28132) (end 47.5615 -67.527) (width 0.25) (layer F.Cu) (net 32))
(segment (start 47.5615 -67.527) (end 47.715 -67.3735) (width 0.25) (layer F.Cu) (net 32))
(segment (start 62.455 -56.8035) (end 62.455 -56.66237) (width 0.25) (layer B.Cu) (net 32))
(segment (start 63.4365 -57.785) (end 62.455 -56.8035) (width 0.25) (layer B.Cu) (net 32))
(segment (start 47.715 -66.807815) (end 47.695593 -66.788409) (width 0.25) (layer B.Cu) (net 32))
(segment (start 47.715 -67.3735) (end 47.715 -66.807815) (width 0.25) (layer B.Cu) (net 32))
(segment (start 63.4365 -62.86641) (end 63.4365 -57.785) (width 0.25) (layer B.Cu) (net 32))
(segment (start 61.21541 -65.0875) (end 63.4365 -62.86641) (width 0.25) (layer B.Cu) (net 32))
(segment (start 47.695593 -66.788409) (end 47.715001 -66.769001) (width 0.25) (layer B.Cu) (net 32))
(segment (start 47.715001 -66.769001) (end 47.715001 -66.332409) (width 0.25) (layer B.Cu) (net 32))
(segment (start 47.715001 -66.332409) (end 48.95991 -65.0875) (width 0.25) (layer B.Cu) (net 32))
(segment (start 48.95991 -65.0875) (end 61.21541 -65.0875) (width 0.25) (layer B.Cu) (net 32))
(segment (start 32.0675 -121.412) (end 33.401 -120.0785) (width 0.25) (layer F.Cu) (net 33))
(segment (start 33.401 -120.0785) (end 33.401 -116.713) (width 0.25) (layer F.Cu) (net 33))
(segment (start 33.401 -116.713) (end 33.909 -116.205) (width 0.25) (layer F.Cu) (net 33))
(segment (start 33.909 -116.205) (end 33.909 -109.9185) (width 0.25) (layer F.Cu) (net 33))
(segment (start 33.909 -109.9185) (end 33.909 -109.855) (width 0.25) (layer F.Cu) (net 33))
(segment (start 73.283 -28.956) (end 74.295 -28.956) (width 0.25) (layer F.Cu) (net 33))
(segment (start 84.3153 -30.607) (end 86.3473 -28.575) (width 0.25) (layer B.Cu) (net 33))
(segment (start 76.958 -30.607) (end 84.3153 -30.607) (width 0.25) (layer B.Cu) (net 33))
(segment (start 86.3473 -28.575) (end 88.8873 -28.575) (width 0.25) (layer B.Cu) (net 33))
(via (at 29.591 -96.5835) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 29.591 -96.017815) (end 29.591 -96.5835) (width 0.25) (layer B.Cu) (net 33))
(segment (start 28.702 -95.128815) (end 29.591 -96.017815) (width 0.25) (layer B.Cu) (net 33))
(segment (start 28.702 -88.7095) (end 28.702 -95.128815) (width 0.25) (layer B.Cu) (net 33))
(segment (start 28.702 -88.7095) (end 28.702 -86.995) (width 0.25) (layer B.Cu) (net 33))
(segment (start 28.702 -86.995) (end 30.607 -85.09) (width 0.25) (layer B.Cu) (net 33))
(segment (start 30.607 -85.09) (end 34.2265 -85.09) (width 0.25) (layer B.Cu) (net 33))
(via (at 39.0525 -80.772) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 34.2265 -85.09) (end 34.8615 -85.09) (width 0.25) (layer B.Cu) (net 33))
(segment (start 34.8615 -85.09) (end 39.0525 -80.899) (width 0.25) (layer B.Cu) (net 33))
(segment (start 39.37 -80.772) (end 39.0525 -80.772) (width 0.25) (layer F.Cu) (net 33))
(segment (start 40.000901 -80.142509) (end 39.999491 -80.142509) (width 0.25) (layer F.Cu) (net 33))
(segment (start 42.48701 -75.9419) (end 42.48701 -77.6564) (width 0.25) (layer F.Cu) (net 33))
(segment (start 39.999491 -80.142509) (end 39.37 -80.772) (width 0.25) (layer F.Cu) (net 33))
(segment (start 42.48701 -77.6564) (end 40.000901 -80.142509) (width 0.25) (layer F.Cu) (net 33))
(segment (start 48.641 -69.78791) (end 42.48701 -75.9419) (width 0.25) (layer F.Cu) (net 33))
(segment (start 33.909 -109.855) (end 36.068 -107.696) (width 0.25) (layer F.Cu) (net 33))
(via (at 37.065461 -107.005247) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 36.068 -107.696) (end 36.374708 -107.696) (width 0.25) (layer F.Cu) (net 33))
(segment (start 36.374708 -107.696) (end 37.065461 -107.005247) (width 0.25) (layer F.Cu) (net 33))
(segment (start 37.065461 -107.005247) (end 37.065461 -101.491539) (width 0.25) (layer B.Cu) (net 33))
(segment (start 29.591 -98.80459) (end 29.591 -96.5835) (width 0.25) (layer F.Cu) (net 33))
(segment (start 31.2379 -100.45149) (end 29.591 -98.80459) (width 0.25) (layer F.Cu) (net 33))
(via (at 32.816304 -99.904443) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 31.2379 -100.45149) (end 32.269257 -100.45149) (width 0.25) (layer F.Cu) (net 33))
(segment (start 32.269257 -100.45149) (end 32.816304 -99.904443) (width 0.25) (layer F.Cu) (net 33))
(segment (start 33.381989 -99.904443) (end 33.871046 -100.3935) (width 0.25) (layer B.Cu) (net 33))
(segment (start 32.816304 -99.904443) (end 33.381989 -99.904443) (width 0.25) (layer B.Cu) (net 33))
(segment (start 35.967422 -100.3935) (end 37.065461 -101.491539) (width 0.25) (layer B.Cu) (net 33))
(segment (start 33.871046 -100.3935) (end 35.967422 -100.3935) (width 0.25) (layer B.Cu) (net 33))
(segment (start 49.027509 -69.401401) (end 49.027509 -69.399991) (width 0.25) (layer F.Cu) (net 33))
(segment (start 48.641 -69.78791) (end 49.027509 -69.401401) (width 0.25) (layer F.Cu) (net 33))
(via (at 49.4665 -67.3735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 49.027509 -69.399991) (end 49.4665 -68.961) (width 0.25) (layer F.Cu) (net 33))
(segment (start 49.4665 -68.961) (end 49.4665 -67.3735) (width 0.25) (layer F.Cu) (net 33))
(segment (start 64.3255 -50.1015) (end 64.3255 -41.275) (width 0.25) (layer B.Cu) (net 33))
(segment (start 66.294 -52.07) (end 64.3255 -50.1015) (width 0.25) (layer B.Cu) (net 33))
(segment (start 66.294 -56.388) (end 66.294 -52.07) (width 0.25) (layer B.Cu) (net 33))
(segment (start 64.77 -57.912) (end 66.294 -56.388) (width 0.25) (layer B.Cu) (net 33))
(segment (start 64.77 -62.865) (end 64.77 -57.912) (width 0.25) (layer B.Cu) (net 33))
(segment (start 49.4665 -66.807815) (end 49.5935 -66.680815) (width 0.25) (layer B.Cu) (net 33))
(segment (start 49.4665 -67.3735) (end 49.4665 -66.807815) (width 0.25) (layer B.Cu) (net 33))
(segment (start 49.5935 -66.680815) (end 49.5935 -66.2305) (width 0.25) (layer B.Cu) (net 33))
(segment (start 49.5935 -66.2305) (end 49.7205 -66.1035) (width 0.25) (layer B.Cu) (net 33))
(segment (start 49.7205 -66.1035) (end 61.5315 -66.1035) (width 0.25) (layer B.Cu) (net 33))
(segment (start 61.5315 -66.1035) (end 64.77 -62.865) (width 0.25) (layer B.Cu) (net 33))
(via (at 75.819 -30.226) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 76.958 -30.607) (end 76.2 -30.607) (width 0.25) (layer B.Cu) (net 33))
(segment (start 76.2 -30.607) (end 75.819 -30.226) (width 0.25) (layer B.Cu) (net 33))
(segment (start 75.565 -30.226) (end 74.295 -28.956) (width 0.25) (layer F.Cu) (net 33))
(segment (start 75.819 -30.226) (end 75.565 -30.226) (width 0.25) (layer F.Cu) (net 33))
(segment (start 64.3255 -41.275) (end 64.3255 -41.021) (width 0.25) (layer B.Cu) (net 33))
(via (at 71.882 -33.7185) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 64.3255 -41.021) (end 71.628 -33.7185) (width 0.25) (layer B.Cu) (net 33))
(segment (start 71.628 -33.7185) (end 71.882 -33.7185) (width 0.25) (layer B.Cu) (net 33))
(segment (start 71.482001 -30.756999) (end 72.263 -29.976) (width 0.25) (layer F.Cu) (net 33))
(segment (start 71.482001 -33.318501) (end 71.482001 -30.756999) (width 0.25) (layer F.Cu) (net 33))
(segment (start 71.882 -33.7185) (end 71.482001 -33.318501) (width 0.25) (layer F.Cu) (net 33))
(segment (start 72.1995 -30.0395) (end 72.263 -29.976) (width 0.25) (layer F.Cu) (net 33))
(segment (start 72.263 -29.976) (end 73.283 -28.956) (width 0.25) (layer F.Cu) (net 33))
(segment (start 22.2885 -121.412) (end 24.4475 -121.412) (width 0.25) (layer B.Cu) (net 33))
(segment (start 24.482 -106.95437) (end 24.003 -107.43337) (width 0.25) (layer B.Cu) (net 33))
(segment (start 24.482 -105.823) (end 24.482 -106.95437) (width 0.25) (layer B.Cu) (net 33))
(segment (start 24.003 -107.43337) (end 24.003 -109.0295) (width 0.25) (layer B.Cu) (net 33))
(segment (start 24.003 -109.0295) (end 21.0185 -112.014) (width 0.25) (layer B.Cu) (net 33))
(segment (start 21.0185 -112.014) (end 21.0185 -120.142) (width 0.25) (layer B.Cu) (net 33))
(segment (start 21.0185 -120.142) (end 22.2885 -121.412) (width 0.25) (layer B.Cu) (net 33))
(via (at 32.0675 -121.412) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 33))
(segment (start 24.4475 -121.412) (end 32.0675 -121.412) (width 0.25) (layer B.Cu) (net 33))
(segment (start 31.0515 -100.9015) (end 28.575 -98.425) (width 0.25) (layer F.Cu) (net 34))
(segment (start 64.0715 -57.2135) (end 63.6905 -56.8325) (width 0.25) (layer B.Cu) (net 34))
(segment (start 63.6905 -56.8325) (end 63.6905 -40.898) (width 0.25) (layer B.Cu) (net 34))
(segment (start 83.9978 -31.3055) (end 88.8873 -36.195) (width 0.25) (layer B.Cu) (net 34))
(segment (start 90.225219 -36.195) (end 88.8873 -36.195) (width 0.25) (layer B.Cu) (net 34))
(segment (start 91.4273 -36.195) (end 90.225219 -36.195) (width 0.25) (layer B.Cu) (net 34))
(via (at 28.7285 -97.409) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 28.575 -98.425) (end 28.575 -97.5625) (width 0.25) (layer F.Cu) (net 34))
(segment (start 28.575 -97.5625) (end 28.7285 -97.409) (width 0.25) (layer F.Cu) (net 34))
(segment (start 28.7285 -95.848) (end 28.7285 -97.409) (width 0.25) (layer B.Cu) (net 34))
(segment (start 28.194 -95.3135) (end 28.7285 -95.848) (width 0.25) (layer B.Cu) (net 34))
(segment (start 28.194 -88.392) (end 28.194 -95.3135) (width 0.25) (layer B.Cu) (net 34))
(segment (start 28.194 -88.392) (end 28.194 -86.741) (width 0.25) (layer B.Cu) (net 34))
(segment (start 28.194 -86.741) (end 29.591 -85.344) (width 0.25) (layer B.Cu) (net 34))
(segment (start 29.591 -85.344) (end 30.353 -84.582) (width 0.25) (layer B.Cu) (net 34))
(via (at 37.846 -80.772) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 30.353 -84.582) (end 34.163 -84.582) (width 0.25) (layer B.Cu) (net 34))
(segment (start 34.163 -84.582) (end 37.846 -80.899) (width 0.25) (layer B.Cu) (net 34))
(segment (start 38.9255 -79.6925) (end 37.846 -80.772) (width 0.25) (layer F.Cu) (net 34))
(segment (start 39.8145 -79.6925) (end 38.9255 -79.6925) (width 0.25) (layer F.Cu) (net 34))
(segment (start 42.037 -75.7555) (end 42.037 -77.47) (width 0.25) (layer F.Cu) (net 34))
(segment (start 42.037 -77.47) (end 39.8145 -79.6925) (width 0.25) (layer F.Cu) (net 34))
(segment (start 48.133 -69.6595) (end 42.037 -75.7555) (width 0.25) (layer F.Cu) (net 34))
(via (at 36.068 -106.934) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 36.068 -101.4095) (end 36.068 -106.934) (width 0.25) (layer B.Cu) (net 34))
(segment (start 32.0675 -117.10563) (end 32.0675 -118.237) (width 0.25) (layer F.Cu) (net 34))
(segment (start 33.401 -115.77213) (end 32.0675 -117.10563) (width 0.25) (layer F.Cu) (net 34))
(segment (start 36.068 -106.934) (end 33.401 -109.601) (width 0.25) (layer F.Cu) (net 34))
(segment (start 33.401 -109.601) (end 33.401 -115.77213) (width 0.25) (layer F.Cu) (net 34))
(via (at 32.893 -100.9015) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 31.0515 -100.9015) (end 32.893 -100.9015) (width 0.25) (layer F.Cu) (net 34))
(segment (start 35.56 -100.9015) (end 36.068 -101.4095) (width 0.25) (layer B.Cu) (net 34))
(segment (start 32.893 -100.9015) (end 35.56 -100.9015) (width 0.25) (layer B.Cu) (net 34))
(segment (start 48.133 -69.6595) (end 48.387 -69.4055) (width 0.25) (layer F.Cu) (net 34))
(via (at 48.5775 -66.548) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 48.387 -69.4055) (end 48.5775 -69.215) (width 0.25) (layer F.Cu) (net 34))
(segment (start 48.5775 -69.215) (end 48.5775 -66.548) (width 0.25) (layer F.Cu) (net 34))
(segment (start 48.977499 -66.148001) (end 48.977499 -65.830501) (width 0.25) (layer B.Cu) (net 34))
(segment (start 48.5775 -66.548) (end 48.977499 -66.148001) (width 0.25) (layer B.Cu) (net 34))
(segment (start 48.977499 -65.830501) (end 49.2125 -65.5955) (width 0.25) (layer B.Cu) (net 34))
(segment (start 64.0715 -62.86782) (end 64.0715 -57.2135) (width 0.25) (layer B.Cu) (net 34))
(segment (start 61.34382 -65.5955) (end 64.0715 -62.86782) (width 0.25) (layer B.Cu) (net 34))
(segment (start 49.2125 -65.5955) (end 61.34382 -65.5955) (width 0.25) (layer B.Cu) (net 34))
(segment (start 63.6905 -40.898) (end 63.6905 -40.513) (width 0.25) (layer B.Cu) (net 34))
(via (at 72.5805 -32.385) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 63.6905 -40.513) (end 71.8185 -32.385) (width 0.25) (layer B.Cu) (net 34))
(segment (start 71.8185 -32.385) (end 72.5805 -32.385) (width 0.25) (layer B.Cu) (net 34))
(segment (start 74.295 -32.0555) (end 74.295 -31.3055) (width 0.25) (layer F.Cu) (net 34))
(segment (start 73.9655 -32.385) (end 74.295 -32.0555) (width 0.25) (layer F.Cu) (net 34))
(segment (start 72.5805 -32.385) (end 73.9655 -32.385) (width 0.25) (layer F.Cu) (net 34))
(via (at 75.819 -32.5755) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 74.295 -31.3055) (end 74.549 -31.3055) (width 0.25) (layer F.Cu) (net 34))
(segment (start 74.549 -31.3055) (end 75.819 -32.5755) (width 0.25) (layer F.Cu) (net 34))
(segment (start 75.819 -32.5755) (end 77.1525 -31.242) (width 0.25) (layer B.Cu) (net 34))
(segment (start 83.9343 -31.242) (end 83.9978 -31.3055) (width 0.25) (layer B.Cu) (net 34))
(segment (start 77.1525 -31.242) (end 83.9343 -31.242) (width 0.25) (layer B.Cu) (net 34))
(segment (start 25.7205 -107.1245) (end 27.022 -105.823) (width 0.25) (layer B.Cu) (net 34))
(segment (start 25.2095 -107.1245) (end 25.7205 -107.1245) (width 0.25) (layer B.Cu) (net 34))
(segment (start 22.225 -118.237) (end 21.46851 -117.48051) (width 0.25) (layer B.Cu) (net 34))
(segment (start 24.4475 -118.237) (end 22.225 -118.237) (width 0.25) (layer B.Cu) (net 34))
(segment (start 21.46851 -117.48051) (end 21.46851 -112.32599) (width 0.25) (layer B.Cu) (net 34))
(segment (start 21.46851 -112.32599) (end 24.45301 -109.34149) (width 0.25) (layer B.Cu) (net 34))
(segment (start 24.45301 -109.34149) (end 24.45301 -107.88099) (width 0.25) (layer B.Cu) (net 34))
(segment (start 24.45301 -107.88099) (end 25.2095 -107.1245) (width 0.25) (layer B.Cu) (net 34))
(via (at 32.0675 -118.237) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 34))
(segment (start 24.4475 -118.237) (end 32.0675 -118.237) (width 0.25) (layer B.Cu) (net 34))
(segment (start 107.539 -135.89) (end 89.759 -118.11) (width 1) (layer B.Cu) (net 35))
(segment (start 107.539 -135.89) (end 107.569 -135.89) (width 0.25) (layer B.Cu) (net 35))
(segment (start 107.569 -135.89) (end 110.744 -139.065) (width 1) (layer B.Cu) (net 35))
(segment (start 110.744 -139.065) (end 137.668 -139.065) (width 1) (layer B.Cu) (net 35))
(segment (start 140.843 -135.89) (end 144.78 -135.89) (width 1) (layer B.Cu) (net 35))
(segment (start 137.668 -139.065) (end 140.843 -135.89) (width 1) (layer B.Cu) (net 35))
(segment (start 106.807 -137.287) (end 90.424 -120.904) (width 1) (layer B.Cu) (net 36))
(segment (start 90.398 -120.904) (end 88.519 -120.904) (width 1) (layer B.Cu) (net 36))
(segment (start 86.259 -120.295) (end 86.259 -118.11) (width 1) (layer B.Cu) (net 36))
(segment (start 88.519 -120.904) (end 86.868 -120.904) (width 1) (layer B.Cu) (net 36))
(segment (start 86.868 -120.904) (end 86.259 -120.295) (width 1) (layer B.Cu) (net 36))
(segment (start 141.788 -139.39) (end 144.78 -139.39) (width 1) (layer B.Cu) (net 36))
(segment (start 139.827 -141.351) (end 141.788 -139.39) (width 1) (layer B.Cu) (net 36))
(segment (start 106.807 -137.287) (end 110.871 -141.351) (width 1) (layer B.Cu) (net 36))
(segment (start 110.871 -141.351) (end 139.827 -141.351) (width 1) (layer B.Cu) (net 36))
(via (at 15.494 -89.154) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 37))
(segment (start 15.494 -89.154) (end 15.494 -99.06) (width 1) (layer F.Cu) (net 37))
(via (at 15.494 -99.06) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 37))
(segment (start 15.094001 -99.459999) (end 11.411001 -99.459999) (width 1) (layer B.Cu) (net 37))
(segment (start 15.494 -99.06) (end 15.094001 -99.459999) (width 1) (layer B.Cu) (net 37))
(segment (start 9.652 -101.219) (end 11.411001 -99.459999) (width 1) (layer B.Cu) (net 37))
(segment (start 15.494 -57.277) (end 15.494 -89.154) (width 1) (layer B.Cu) (net 37))
(segment (start 9.652 -101.219) (end 9.652 -110.1725) (width 1) (layer B.Cu) (net 37))
(segment (start 9.652 -110.1725) (end 13.7795 -114.3) (width 1) (layer B.Cu) (net 37))
(segment (start 13.7795 -114.3) (end 13.7795 -129.2225) (width 1) (layer B.Cu) (net 37))
(segment (start 10.2235 -132.7785) (end 7.1755 -132.7785) (width 1) (layer B.Cu) (net 37))
(segment (start 13.7795 -129.2225) (end 10.2235 -132.7785) (width 1) (layer B.Cu) (net 37))
(segment (start 28.619001 -56.402001) (end 28.619001 -56.305001) (width 0.25) (layer B.Cu) (net 38))
(segment (start 29.494 -57.277) (end 28.619001 -56.402001) (width 1) (layer B.Cu) (net 38))
(segment (start 28.619001 -56.305001) (end 26.797 -54.483) (width 1) (layer B.Cu) (net 38))
(segment (start 21.717 -54.483) (end 21.59 -54.356) (width 0.25) (layer B.Cu) (net 38))
(segment (start 13.081 -54.991) (end 13.716 -54.356) (width 1) (layer B.Cu) (net 38))
(segment (start 13.081 -58.1025) (end 13.081 -54.991) (width 1) (layer B.Cu) (net 38))
(segment (start 9.144 -59.69) (end 11.4935 -59.69) (width 1) (layer B.Cu) (net 38))
(segment (start 11.4935 -59.69) (end 13.081 -58.1025) (width 1) (layer B.Cu) (net 38))
(segment (start 8.255 -59.69) (end 8.0645 -59.8805) (width 0.25) (layer B.Cu) (net 38))
(segment (start 9.144 -59.69) (end 8.255 -59.69) (width 1) (layer B.Cu) (net 38))
(segment (start 21.59 -54.356) (end 13.716 -54.356) (width 1) (layer B.Cu) (net 38))
(segment (start 26.67 -54.356) (end 26.797 -54.483) (width 0.25) (layer B.Cu) (net 38))
(segment (start 21.59 -54.356) (end 26.67 -54.356) (width 1) (layer B.Cu) (net 38))
(segment (start 32.994 -56.039564) (end 29.024436 -52.07) (width 1) (layer B.Cu) (net 39))
(segment (start 32.994 -57.277) (end 32.994 -56.039564) (width 1) (layer B.Cu) (net 39))
(segment (start 21.59 -52.07) (end 29.024436 -52.07) (width 1) (layer B.Cu) (net 39))
(segment (start 13.716 -52.07) (end 13.116001 -52.669999) (width 1) (layer B.Cu) (net 39))
(segment (start 12.664001 -52.669999) (end 9.144 -56.19) (width 1) (layer B.Cu) (net 39))
(segment (start 13.116001 -52.669999) (end 12.664001 -52.669999) (width 1) (layer B.Cu) (net 39))
(segment (start 8.255 -56.19) (end 8.0645 -56.3805) (width 0.25) (layer B.Cu) (net 39))
(segment (start 9.144 -56.19) (end 8.255 -56.19) (width 1) (layer B.Cu) (net 39))
(segment (start 13.716 -52.07) (end 21.59 -52.07) (width 1) (layer B.Cu) (net 39))
(segment (start 144.78 -70.993) (end 144.78 -70.81) (width 0.25) (layer B.Cu) (net 40))
(segment (start 102.108 -82.3595) (end 114.6175 -69.85) (width 1) (layer B.Cu) (net 40))
(segment (start 114.6175 -69.85) (end 114.6175 -66.7385) (width 1) (layer B.Cu) (net 40))
(segment (start 114.6175 -66.7385) (end 118.364 -62.992) (width 1) (layer B.Cu) (net 40))
(via (at 139.8905 -62.992) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 40))
(segment (start 129.7305 -62.992) (end 139.8905 -62.992) (width 1) (layer F.Cu) (net 40))
(segment (start 139.8905 -62.992) (end 140.9065 -64.008) (width 1) (layer B.Cu) (net 40))
(segment (start 140.9065 -66.9365) (end 144.78 -70.81) (width 1) (layer B.Cu) (net 40))
(segment (start 140.9065 -64.008) (end 140.9065 -66.9365) (width 1) (layer B.Cu) (net 40))
(via (at 119.9515 -62.992) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 40))
(segment (start 129.7305 -62.992) (end 119.9515 -62.992) (width 1) (layer F.Cu) (net 40))
(segment (start 119.9515 -62.992) (end 118.364 -62.992) (width 1) (layer B.Cu) (net 40))
(segment (start 100.259 -116.872564) (end 101.371064 -115.7605) (width 1) (layer F.Cu) (net 40))
(segment (start 100.259 -118.11) (end 100.259 -116.872564) (width 1) (layer F.Cu) (net 40))
(segment (start 101.371064 -115.7605) (end 101.4095 -115.7605) (width 0.25) (layer F.Cu) (net 40))
(segment (start 101.4095 -115.7605) (end 102.108 -115.062) (width 1) (layer F.Cu) (net 40))
(via (at 102.108 -93.218) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 40))
(segment (start 102.108 -115.062) (end 102.108 -93.218) (width 1) (layer F.Cu) (net 40))
(segment (start 102.108 -93.218) (end 102.108 -82.3595) (width 1) (layer B.Cu) (net 40))
(segment (start 103.759 -83.1215) (end 116.078 -70.8025) (width 1) (layer B.Cu) (net 41))
(segment (start 116.078 -70.8025) (end 116.078 -67.3735) (width 1) (layer B.Cu) (net 41))
(segment (start 116.078 -67.3735) (end 118.491 -64.9605) (width 1) (layer B.Cu) (net 41))
(segment (start 144.78 -66.185) (end 144.78 -67.31) (width 1) (layer F.Cu) (net 41))
(segment (start 143.5555 -64.9605) (end 144.78 -66.185) (width 1) (layer F.Cu) (net 41))
(segment (start 129.7305 -64.9605) (end 143.5555 -64.9605) (width 1) (layer F.Cu) (net 41))
(via (at 119.9515 -64.9605) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 41))
(segment (start 118.491 -64.9605) (end 119.9515 -64.9605) (width 1) (layer B.Cu) (net 41))
(segment (start 119.9515 -64.9605) (end 129.7305 -64.9605) (width 1) (layer F.Cu) (net 41))
(segment (start 103.759 -83.1215) (end 103.759 -93.2815) (width 1) (layer B.Cu) (net 41))
(via (at 103.759 -93.2815) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 41))
(segment (start 103.759 -93.847185) (end 103.759 -118.11) (width 1) (layer F.Cu) (net 41))
(segment (start 103.759 -93.2815) (end 103.759 -93.847185) (width 0.25) (layer F.Cu) (net 41))
(via (at 39.624 -36.576) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 42))
(segment (start 64.419 -7.874) (end 64.419 -11.781) (width 1) (layer B.Cu) (net 42))
(segment (start 64.419 -11.781) (end 39.624 -36.576) (width 1) (layer B.Cu) (net 42) (tstamp 5C728F0D))
(via (at 33.02 -36.576) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 42))
(segment (start 39.624 -36.576) (end 33.02 -36.576) (width 1) (layer F.Cu) (net 42))
(segment (start 9.3345 -36.576) (end 9.144 -36.7665) (width 0.25) (layer B.Cu) (net 42))
(segment (start 33.02 -36.576) (end 9.3345 -36.576) (width 1) (layer B.Cu) (net 42))
(segment (start 9.1895 -36.7665) (end 8.0645 -36.7665) (width 1) (layer B.Cu) (net 42))
(segment (start 9.3345 -36.6215) (end 9.1895 -36.7665) (width 0.25) (layer B.Cu) (net 42))
(segment (start 9.3345 -36.576) (end 9.3345 -36.6215) (width 0.25) (layer B.Cu) (net 42))
(segment (start 67.919 -7.874) (end 67.919 -11.583) (width 1) (layer B.Cu) (net 43))
(via (at 45.974 -33.401) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 43))
(segment (start 67.919 -11.583) (end 46.101 -33.401) (width 1) (layer B.Cu) (net 43) (tstamp 5C728F10))
(segment (start 46.101 -33.401) (end 45.974 -33.401) (width 0.25) (layer B.Cu) (net 43))
(via (at 33.02 -33.528) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 43))
(segment (start 45.974 -33.401) (end 33.147 -33.401) (width 1) (layer F.Cu) (net 43))
(segment (start 33.147 -33.401) (end 33.02 -33.528) (width 0.25) (layer F.Cu) (net 43))
(segment (start 9.4055 -33.528) (end 9.144 -33.2665) (width 0.25) (layer B.Cu) (net 43))
(segment (start 33.02 -33.528) (end 9.4055 -33.528) (width 1) (layer B.Cu) (net 43))
(segment (start 8.326 -33.528) (end 8.0645 -33.2665) (width 0.25) (layer B.Cu) (net 43))
(segment (start 9.4055 -33.528) (end 8.326 -33.528) (width 1) (layer B.Cu) (net 43))
(segment (start 37.465 -30.226) (end 35.179 -32.512) (width 1) (layer B.Cu) (net 44))
(segment (start 53.919 -7.874) (end 53.919 -5.913) (width 1) (layer B.Cu) (net 44))
(segment (start 52.832 -4.826) (end 45.339 -4.826) (width 1) (layer B.Cu) (net 44))
(segment (start 53.919 -5.913) (end 52.832 -4.826) (width 1) (layer B.Cu) (net 44))
(segment (start 45.339 -4.826) (end 45.339 -4.953) (width 0.25) (layer B.Cu) (net 44))
(segment (start 45.339 -4.953) (end 37.465 -12.827) (width 1) (layer B.Cu) (net 44))
(segment (start 15.367 -91.948) (end 9.779 -91.948) (width 1) (layer B.Cu) (net 44))
(via (at 35.306 -40.132) (size 1.2) (drill 0.6) (layers F.Cu B.Cu) (net 44))
(segment (start 35.306 -32.639) (end 35.179 -32.512) (width 0.25) (layer B.Cu) (net 44))
(segment (start 35.306 -40.132) (end 35.306 -32.639) (width 1) (layer B.Cu) (net 44))
(segment (start 37.465 -12.827) (end 37.465 -30.226) (width 1) (layer B.Cu) (net 44))
(segment (start 9.723 -92.004) (end 7.874 -92.004) (width 1) (layer B.Cu) (net 44))
(segment (start 9.779 -91.948) (end 9.723 -92.004) (width 0.25) (layer B.Cu) (net 44))
(via (at 35.306 -43.561) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 44))
(segment (start 35.306 -40.132) (end 35.306 -43.561) (width 1) (layer F.Cu) (net 44))
(segment (start 22.0345 -85.2805) (end 15.367 -91.948) (width 1) (layer B.Cu) (net 44))
(segment (start 22.0345 -84.6455) (end 22.0345 -85.2805) (width 1) (layer B.Cu) (net 44))
(segment (start 22.0345 -84.6455) (end 22.0345 -83.6295) (width 1) (layer B.Cu) (net 44))
(via (at 28.3845 -76.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 44))
(segment (start 22.0345 -83.6295) (end 28.3845 -77.2795) (width 1) (layer B.Cu) (net 44))
(segment (start 28.3845 -77.2795) (end 28.3845 -76.2) (width 1) (layer B.Cu) (net 44))
(segment (start 28.3845 -76.2) (end 28.3845 -75.3745) (width 1) (layer F.Cu) (net 44))
(via (at 35.3695 -65.9765) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 44))
(segment (start 28.3845 -75.3745) (end 35.3695 -68.3895) (width 1) (layer F.Cu) (net 44))
(segment (start 35.3695 -68.3895) (end 35.3695 -65.9765) (width 1) (layer F.Cu) (net 44))
(segment (start 35.3695 -43.6245) (end 35.306 -43.561) (width 0.25) (layer B.Cu) (net 44))
(segment (start 35.3695 -65.9765) (end 35.3695 -43.6245) (width 1) (layer B.Cu) (net 44))
(segment (start 50.419 -8.999) (end 44.323 -15.095) (width 1) (layer B.Cu) (net 45))
(segment (start 50.419 -7.874) (end 50.419 -8.999) (width 1) (layer B.Cu) (net 45))
(segment (start 44.323 -26.289) (end 44.323 -27.178) (width 1) (layer B.Cu) (net 45))
(segment (start 44.323 -27.178) (end 37.211 -34.29) (width 1) (layer B.Cu) (net 45))
(via (at 37.084 -40.132) (size 1.2) (drill 0.6) (layers F.Cu B.Cu) (net 45))
(segment (start 37.211 -34.29) (end 37.211 -40.005) (width 1) (layer B.Cu) (net 45))
(segment (start 37.211 -40.005) (end 37.084 -40.132) (width 0.25) (layer B.Cu) (net 45))
(segment (start 44.323 -15.095) (end 44.323 -26.289) (width 1) (layer B.Cu) (net 45))
(segment (start 14.605 -95.504) (end 7.874 -95.504) (width 1) (layer B.Cu) (net 45))
(segment (start 14.605 -95.504) (end 15.367 -95.504) (width 1) (layer B.Cu) (net 45))
(segment (start 15.367 -95.504) (end 23.9395 -86.9315) (width 1) (layer B.Cu) (net 45))
(segment (start 23.9395 -86.9315) (end 23.9395 -85.471) (width 1) (layer B.Cu) (net 45))
(segment (start 36.957 -40.259) (end 37.084 -40.132) (width 0.25) (layer F.Cu) (net 45))
(via (at 37.084 -43.561) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 45))
(segment (start 37.084 -42.995315) (end 37.084 -40.132) (width 1) (layer F.Cu) (net 45))
(segment (start 37.084 -43.561) (end 37.084 -42.995315) (width 1) (layer F.Cu) (net 45))
(via (at 37.0205 -65.913) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 45))
(segment (start 37.084 -43.561) (end 37.084 -65.8495) (width 1) (layer B.Cu) (net 45))
(segment (start 37.084 -65.8495) (end 37.0205 -65.913) (width 0.25) (layer B.Cu) (net 45))
(segment (start 37.0205 -65.913) (end 37.0205 -69.723) (width 1) (layer F.Cu) (net 45))
(via (at 30.4165 -76.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 45))
(segment (start 37.0205 -69.723) (end 30.5435 -76.2) (width 1) (layer F.Cu) (net 45))
(segment (start 30.5435 -76.2) (end 30.4165 -76.2) (width 0.25) (layer F.Cu) (net 45))
(segment (start 23.9395 -84.54224) (end 23.9395 -85.471) (width 1) (layer B.Cu) (net 45))
(segment (start 30.4165 -78.06524) (end 23.9395 -84.54224) (width 1) (layer B.Cu) (net 45))
(segment (start 30.4165 -76.2) (end 30.4165 -78.06524) (width 1) (layer B.Cu) (net 45))
(via (at 18.796 -85.217) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 46))
(segment (start 18.994 -85.019) (end 18.796 -85.217) (width 0.25) (layer B.Cu) (net 46))
(via (at 18.796 -97.282) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 46))
(segment (start 18.796 -85.217) (end 18.796 -97.282) (width 1) (layer F.Cu) (net 46))
(segment (start 10.668 -97.282) (end 18.796 -97.282) (width 1) (layer B.Cu) (net 46))
(segment (start 7.874 -100.076) (end 10.668 -97.282) (width 1) (layer B.Cu) (net 46))
(segment (start 18.994 -58.514436) (end 23.241 -62.761436) (width 1) (layer B.Cu) (net 46))
(segment (start 18.994 -57.277) (end 18.994 -58.514436) (width 1) (layer B.Cu) (net 46))
(segment (start 23.241 -62.761436) (end 23.241 -70.0405) (width 1) (layer B.Cu) (net 46))
(segment (start 18.796 -74.4855) (end 18.796 -85.217) (width 1) (layer B.Cu) (net 46))
(segment (start 23.241 -70.0405) (end 18.796 -74.4855) (width 1) (layer B.Cu) (net 46))
(segment (start 7.874 -100.076) (end 7.874 -111.4425) (width 1) (layer B.Cu) (net 46))
(segment (start 7.874 -111.4425) (end 11.684 -115.2525) (width 1) (layer B.Cu) (net 46))
(segment (start 11.684 -115.2525) (end 11.684 -126.8095) (width 1) (layer B.Cu) (net 46))
(segment (start 9.215 -129.2785) (end 7.1755 -129.2785) (width 1) (layer B.Cu) (net 46))
(segment (start 11.684 -126.8095) (end 9.215 -129.2785) (width 1) (layer B.Cu) (net 46))
(segment (start 125.2347 -110.4773) (end 128.0541 -110.4773) (width 0.25) (layer B.Cu) (net 127))
(segment (start 125.222 -110.49) (end 125.2347 -110.4773) (width 0.25) (layer B.Cu) (net 127))
(segment (start 123.8885 -109.1565) (end 125.222 -110.49) (width 0.25) (layer B.Cu) (net 127))
(segment (start 113.919 -127.889) (end 113.919 -113.411) (width 0.25) (layer B.Cu) (net 127))
(segment (start 113.919 -113.411) (end 118.1735 -109.1565) (width 0.25) (layer B.Cu) (net 127))
(segment (start 128.0541 -130.7973) (end 125.2347 -130.7973) (width 0.25) (layer B.Cu) (net 127))
(segment (start 125.2347 -130.7973) (end 125.222 -130.81) (width 0.25) (layer B.Cu) (net 127))
(segment (start 125.222 -130.81) (end 124.0155 -129.6035) (width 0.25) (layer B.Cu) (net 127))
(segment (start 124.0155 -129.6035) (end 118.0465 -129.6035) (width 0.25) (layer B.Cu) (net 127))
(segment (start 118.0465 -129.6035) (end 116.84 -130.81) (width 0.25) (layer B.Cu) (net 127))
(segment (start 118.1735 -109.1565) (end 123.8885 -109.1565) (width 0.25) (layer B.Cu) (net 127))
(segment (start 116.84 -130.81) (end 113.919 -127.889) (width 0.25) (layer B.Cu) (net 127))
(segment (start 119.38 -128.27) (end 120.467001 -129.357001) (width 0.25) (layer F.Cu) (net 128))
(segment (start 128.9304 -132.461) (end 130.5941 -130.7973) (width 0.25) (layer F.Cu) (net 128))
(segment (start 119.38 -130.81) (end 121.031 -132.461) (width 0.25) (layer F.Cu) (net 128))
(segment (start 120.467001 -129.357001) (end 129.494399 -129.357001) (width 0.25) (layer F.Cu) (net 128))
(segment (start 121.031 -132.461) (end 128.9304 -132.461) (width 0.25) (layer F.Cu) (net 128))
(segment (start 130.5941 -128.2573) (end 130.5941 -130.7973) (width 0.25) (layer F.Cu) (net 128))
(segment (start 129.494399 -129.357001) (end 130.5941 -128.2573) (width 0.25) (layer F.Cu) (net 128))
(segment (start 125.2347 -128.2573) (end 128.0541 -128.2573) (width 0.25) (layer B.Cu) (net 129))
(segment (start 125.222 -128.27) (end 125.2347 -128.2573) (width 0.25) (layer B.Cu) (net 129))
(segment (start 123.952 -127) (end 125.222 -128.27) (width 0.25) (layer B.Cu) (net 129))
(segment (start 116.84 -128.27) (end 118.11 -127) (width 0.25) (layer B.Cu) (net 129))
(segment (start 118.11 -127) (end 123.952 -127) (width 0.25) (layer B.Cu) (net 129))
(segment (start 125.222 -125.73) (end 125.2347 -125.7173) (width 0.25) (layer B.Cu) (net 130))
(segment (start 124.079 -124.587) (end 125.222 -125.73) (width 0.25) (layer B.Cu) (net 130))
(segment (start 117.983 -124.587) (end 124.079 -124.587) (width 0.25) (layer B.Cu) (net 130))
(segment (start 125.2347 -125.7173) (end 128.0541 -125.7173) (width 0.25) (layer B.Cu) (net 130))
(segment (start 116.84 -125.73) (end 117.983 -124.587) (width 0.25) (layer B.Cu) (net 130))
(segment (start 125.2347 -123.1773) (end 128.0541 -123.1773) (width 0.25) (layer B.Cu) (net 131))
(segment (start 125.222 -123.19) (end 125.2347 -123.1773) (width 0.25) (layer B.Cu) (net 131))
(segment (start 123.8885 -121.8565) (end 125.222 -123.19) (width 0.25) (layer B.Cu) (net 131))
(segment (start 116.84 -123.19) (end 118.1735 -121.8565) (width 0.25) (layer B.Cu) (net 131))
(segment (start 118.1735 -121.8565) (end 123.8885 -121.8565) (width 0.25) (layer B.Cu) (net 131))
(segment (start 118.11 -116.84) (end 123.952 -116.84) (width 0.25) (layer B.Cu) (net 132))
(segment (start 116.84 -118.11) (end 118.11 -116.84) (width 0.25) (layer B.Cu) (net 132))
(segment (start 123.952 -116.84) (end 125.222 -118.11) (width 0.25) (layer B.Cu) (net 132))
(segment (start 125.222 -118.11) (end 125.2347 -118.0973) (width 0.25) (layer B.Cu) (net 132))
(segment (start 125.2347 -118.0973) (end 128.0541 -118.0973) (width 0.25) (layer B.Cu) (net 132))
(segment (start 120.65 -119.38) (end 129.3114 -119.38) (width 0.25) (layer F.Cu) (net 133))
(segment (start 129.3114 -119.38) (end 130.5941 -118.0973) (width 0.25) (layer F.Cu) (net 133))
(segment (start 119.38 -118.11) (end 120.65 -119.38) (width 0.25) (layer F.Cu) (net 133))
(segment (start 125.222 -115.57) (end 125.2347 -115.5573) (width 0.25) (layer B.Cu) (net 134))
(segment (start 125.2347 -115.5573) (end 128.0541 -115.5573) (width 0.25) (layer B.Cu) (net 134))
(segment (start 123.952 -114.3) (end 125.222 -115.57) (width 0.25) (layer B.Cu) (net 134))
(segment (start 116.84 -115.57) (end 118.11 -114.3) (width 0.25) (layer B.Cu) (net 134))
(segment (start 118.11 -114.3) (end 123.952 -114.3) (width 0.25) (layer B.Cu) (net 134))
(segment (start 125.2347 -113.0173) (end 128.0541 -113.0173) (width 0.25) (layer B.Cu) (net 135))
(segment (start 125.222 -113.03) (end 125.2347 -113.0173) (width 0.25) (layer B.Cu) (net 135))
(segment (start 116.84 -113.03) (end 118.11 -111.76) (width 0.25) (layer B.Cu) (net 135))
(segment (start 123.952 -111.76) (end 125.222 -113.03) (width 0.25) (layer B.Cu) (net 135))
(segment (start 118.11 -111.76) (end 123.952 -111.76) (width 0.25) (layer B.Cu) (net 135))
(segment (start 120.65 -111.76) (end 129.3114 -111.76) (width 0.25) (layer F.Cu) (net 136))
(segment (start 119.38 -110.49) (end 120.65 -111.76) (width 0.25) (layer F.Cu) (net 136))
(segment (start 129.3114 -111.76) (end 130.5941 -110.4773) (width 0.25) (layer F.Cu) (net 136))
(segment (start 125.222 -107.95) (end 125.2347 -107.9373) (width 0.25) (layer B.Cu) (net 137))
(segment (start 116.84 -107.95) (end 118.11 -106.68) (width 0.25) (layer B.Cu) (net 137))
(segment (start 118.11 -106.68) (end 123.952 -106.68) (width 0.25) (layer B.Cu) (net 137))
(segment (start 123.952 -106.68) (end 125.222 -107.95) (width 0.25) (layer B.Cu) (net 137))
(segment (start 125.2347 -107.9373) (end 128.0541 -107.9373) (width 0.25) (layer B.Cu) (net 137))
(segment (start 125.222 -105.41) (end 125.2347 -105.3973) (width 0.25) (layer B.Cu) (net 138))
(segment (start 123.952 -104.14) (end 125.222 -105.41) (width 0.25) (layer B.Cu) (net 138))
(segment (start 118.11 -104.14) (end 123.952 -104.14) (width 0.25) (layer B.Cu) (net 138))
(segment (start 125.2347 -105.3973) (end 128.0541 -105.3973) (width 0.25) (layer B.Cu) (net 138))
(segment (start 116.84 -105.41) (end 118.11 -104.14) (width 0.25) (layer B.Cu) (net 138))
(segment (start 129.494399 -106.497001) (end 130.5941 -105.3973) (width 0.25) (layer F.Cu) (net 139))
(segment (start 119.38 -105.41) (end 120.45763 -105.41) (width 0.25) (layer F.Cu) (net 139))
(segment (start 120.45763 -105.41) (end 121.544631 -106.497001) (width 0.25) (layer F.Cu) (net 139))
(segment (start 121.544631 -106.497001) (end 129.494399 -106.497001) (width 0.25) (layer F.Cu) (net 139))
(segment (start 124.079 -101.727) (end 125.222 -102.87) (width 0.25) (layer B.Cu) (net 140))
(segment (start 125.222 -102.87) (end 125.2347 -102.8573) (width 0.25) (layer B.Cu) (net 140))
(segment (start 116.84 -102.87) (end 117.983 -101.727) (width 0.25) (layer B.Cu) (net 140))
(segment (start 125.2347 -102.8573) (end 128.0541 -102.8573) (width 0.25) (layer B.Cu) (net 140))
(segment (start 117.983 -101.727) (end 124.079 -101.727) (width 0.25) (layer B.Cu) (net 140))
(segment (start 120.467001 -103.957001) (end 129.494399 -103.957001) (width 0.25) (layer F.Cu) (net 141))
(segment (start 119.38 -102.87) (end 120.467001 -103.957001) (width 0.25) (layer F.Cu) (net 141))
(segment (start 129.494399 -103.957001) (end 130.5941 -102.8573) (width 0.25) (layer F.Cu) (net 141))
(segment (start 129.494399 -101.417001) (end 130.5941 -100.3173) (width 0.25) (layer F.Cu) (net 142))
(segment (start 120.467001 -101.417001) (end 129.494399 -101.417001) (width 0.25) (layer F.Cu) (net 142))
(segment (start 119.38 -100.33) (end 120.467001 -101.417001) (width 0.25) (layer F.Cu) (net 142))
(segment (start 125.2347 -97.7773) (end 128.0541 -97.7773) (width 0.25) (layer B.Cu) (net 143))
(segment (start 117.927001 -96.702999) (end 117.990501 -96.702999) (width 0.25) (layer B.Cu) (net 143))
(segment (start 116.84 -97.79) (end 117.927001 -96.702999) (width 0.25) (layer B.Cu) (net 143))
(segment (start 117.990501 -96.702999) (end 118.1735 -96.52) (width 0.25) (layer B.Cu) (net 143))
(segment (start 118.1735 -96.52) (end 123.952 -96.52) (width 0.25) (layer B.Cu) (net 143))
(segment (start 123.952 -96.52) (end 125.222 -97.79) (width 0.25) (layer B.Cu) (net 143))
(segment (start 125.222 -97.79) (end 125.2347 -97.7773) (width 0.25) (layer B.Cu) (net 143))
(segment (start 120.45763 -97.79) (end 121.544631 -98.877001) (width 0.25) (layer F.Cu) (net 144))
(segment (start 119.38 -97.79) (end 120.45763 -97.79) (width 0.25) (layer F.Cu) (net 144))
(segment (start 121.544631 -98.877001) (end 129.494399 -98.877001) (width 0.25) (layer F.Cu) (net 144))
(segment (start 129.494399 -98.877001) (end 130.5941 -97.7773) (width 0.25) (layer F.Cu) (net 144))
(segment (start 125.2347 -95.2373) (end 128.0541 -95.2373) (width 0.25) (layer B.Cu) (net 145))
(segment (start 117.927001 -94.162999) (end 117.990501 -94.162999) (width 0.25) (layer B.Cu) (net 145))
(segment (start 116.84 -95.25) (end 117.927001 -94.162999) (width 0.25) (layer B.Cu) (net 145))
(segment (start 117.990501 -94.162999) (end 118.11 -94.0435) (width 0.25) (layer B.Cu) (net 145))
(segment (start 118.11 -94.0435) (end 124.0155 -94.0435) (width 0.25) (layer B.Cu) (net 145))
(segment (start 124.0155 -94.0435) (end 125.222 -95.25) (width 0.25) (layer B.Cu) (net 145))
(segment (start 125.222 -95.25) (end 125.2347 -95.2373) (width 0.25) (layer B.Cu) (net 145))
(segment (start 125.2347 -92.6973) (end 128.0541 -92.6973) (width 0.25) (layer B.Cu) (net 146))
(segment (start 125.222 -92.71) (end 125.2347 -92.6973) (width 0.25) (layer B.Cu) (net 146))
(segment (start 124.0155 -91.5035) (end 125.222 -92.71) (width 0.25) (layer B.Cu) (net 146))
(segment (start 116.84 -92.71) (end 118.0465 -91.5035) (width 0.25) (layer B.Cu) (net 146))
(segment (start 118.0465 -91.5035) (end 124.0155 -91.5035) (width 0.25) (layer B.Cu) (net 146))
(segment (start 129.494399 -93.797001) (end 130.5941 -92.6973) (width 0.25) (layer F.Cu) (net 147))
(segment (start 121.544631 -93.797001) (end 129.494399 -93.797001) (width 0.25) (layer F.Cu) (net 147))
(segment (start 120.45763 -92.71) (end 121.544631 -93.797001) (width 0.25) (layer F.Cu) (net 147))
(segment (start 119.38 -92.71) (end 120.45763 -92.71) (width 0.25) (layer F.Cu) (net 147))
(segment (start 125.222 -90.17) (end 125.2347 -90.1573) (width 0.25) (layer B.Cu) (net 148))
(segment (start 123.952 -88.9) (end 125.222 -90.17) (width 0.25) (layer B.Cu) (net 148))
(segment (start 125.2347 -90.1573) (end 128.0541 -90.1573) (width 0.25) (layer B.Cu) (net 148))
(segment (start 118.11 -88.9) (end 123.952 -88.9) (width 0.25) (layer B.Cu) (net 148))
(segment (start 116.84 -90.17) (end 118.11 -88.9) (width 0.25) (layer B.Cu) (net 148))
(segment (start 116.84 -87.63) (end 118.11 -86.36) (width 0.25) (layer B.Cu) (net 149))
(segment (start 125.222 -87.63) (end 125.2347 -87.6173) (width 0.25) (layer B.Cu) (net 149))
(segment (start 118.11 -86.36) (end 123.952 -86.36) (width 0.25) (layer B.Cu) (net 149))
(segment (start 123.952 -86.36) (end 125.222 -87.63) (width 0.25) (layer B.Cu) (net 149))
(segment (start 125.2347 -87.6173) (end 128.0541 -87.6173) (width 0.25) (layer B.Cu) (net 149))
(segment (start 120.45763 -87.63) (end 121.544631 -88.717001) (width 0.25) (layer F.Cu) (net 150))
(segment (start 129.494399 -88.717001) (end 130.5941 -87.6173) (width 0.25) (layer F.Cu) (net 150))
(segment (start 119.38 -87.63) (end 120.45763 -87.63) (width 0.25) (layer F.Cu) (net 150))
(segment (start 121.544631 -88.717001) (end 129.494399 -88.717001) (width 0.25) (layer F.Cu) (net 150))
(segment (start 125.2347 -85.0773) (end 128.0541 -85.0773) (width 0.25) (layer B.Cu) (net 151))
(segment (start 125.222 -85.09) (end 125.2347 -85.0773) (width 0.25) (layer B.Cu) (net 151))
(segment (start 124.0155 -83.8835) (end 125.222 -85.09) (width 0.25) (layer B.Cu) (net 151))
(segment (start 116.84 -85.09) (end 118.0465 -83.8835) (width 0.25) (layer B.Cu) (net 151))
(segment (start 118.0465 -83.8835) (end 124.0155 -83.8835) (width 0.25) (layer B.Cu) (net 151))
(segment (start 129.494399 -86.177001) (end 130.5941 -85.0773) (width 0.25) (layer F.Cu) (net 152))
(segment (start 119.38 -85.09) (end 120.467001 -86.177001) (width 0.25) (layer F.Cu) (net 152))
(segment (start 120.467001 -86.177001) (end 129.494399 -86.177001) (width 0.25) (layer F.Cu) (net 152))
(segment (start 129.494399 -83.637001) (end 130.5941 -82.5373) (width 0.25) (layer F.Cu) (net 153))
(segment (start 119.38 -82.55) (end 120.45763 -82.55) (width 0.25) (layer F.Cu) (net 153))
(segment (start 121.544631 -83.637001) (end 129.494399 -83.637001) (width 0.25) (layer F.Cu) (net 153))
(segment (start 120.45763 -82.55) (end 121.544631 -83.637001) (width 0.25) (layer F.Cu) (net 153))
(segment (start 103.2345 -168.8554) (end 103.251 -168.8719) (width 0.25) (layer F.Cu) (net 154))
(segment (start 103.2599 -166.3319) (end 112.0775 -166.3319) (width 2) (layer F.Cu) (net 154))
(segment (start 103.2345 -166.3065) (end 103.2599 -166.3319) (width 0.25) (layer F.Cu) (net 154))
(segment (start 103.2345 -166.3065) (end 103.2345 -168.8554) (width 2) (layer F.Cu) (net 154))
(segment (start 103.2345 -162.4584) (end 103.2345 -166.3065) (width 2) (layer F.Cu) (net 154))
(segment (start 112.0775 -166.3319) (end 116.3574 -162.052) (width 2) (layer B.Cu) (net 154))
(segment (start 116.3574 -162.052) (end 123.317 -162.052) (width 2) (layer B.Cu) (net 154))
(segment (start 126.4539 -165.1889) (end 128.27 -165.1889) (width 2) (layer B.Cu) (net 154))
(segment (start 123.317 -162.052) (end 126.4539 -165.1889) (width 2) (layer B.Cu) (net 154))
(segment (start 97.146 -168.8719) (end 98.171 -168.8719) (width 0.25) (layer F.Cu) (net 155))
(segment (start 86.257 -168.8719) (end 97.146 -168.8719) (width 2) (layer F.Cu) (net 155))
(segment (start 83.7565 -166.3714) (end 86.257 -168.8719) (width 2) (layer F.Cu) (net 155))
(segment (start 83.7565 -164.8714) (end 83.7565 -166.3714) (width 2) (layer F.Cu) (net 155))
(segment (start 98.171 -162.5219) (end 98.2345 -162.4584) (width 0.25) (layer F.Cu) (net 155))
(segment (start 98.171 -168.8719) (end 98.171 -162.5219) (width 2) (layer F.Cu) (net 155))
(via (at 83.82 -160.274) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 155))
(segment (start 83.7565 -164.8714) (end 83.7565 -160.3375) (width 0.25) (layer F.Cu) (net 155))
(segment (start 83.7565 -160.3375) (end 83.82 -160.274) (width 0.25) (layer F.Cu) (net 155))
(via (at 83.82 -156.4005) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 155))
(segment (start 83.82 -160.274) (end 83.82 -156.4005) (width 0.25) (layer B.Cu) (net 155))
(segment (start 85.1154 -155.1051) (end 85.1154 -154.1399) (width 0.25) (layer F.Cu) (net 155))
(segment (start 83.82 -156.4005) (end 85.1154 -155.1051) (width 0.25) (layer F.Cu) (net 155))
(segment (start 107.862927 -29.327565) (end 104.052927 -29.327565) (width 0.25) (layer B.Cu) (net 156))
(segment (start 86.4108 -31.1785) (end 83.8073 -28.575) (width 0.25) (layer F.Cu) (net 156))
(segment (start 103.252928 -30.127564) (end 102.714436 -30.127564) (width 0.25) (layer F.Cu) (net 156))
(segment (start 104.052927 -29.327565) (end 103.252928 -30.127564) (width 0.25) (layer F.Cu) (net 156))
(segment (start 102.714436 -30.127564) (end 100.9015 -31.9405) (width 0.25) (layer F.Cu) (net 156))
(segment (start 87.1728 -31.9405) (end 86.4108 -31.1785) (width 0.25) (layer F.Cu) (net 156))
(segment (start 100.9015 -31.9405) (end 87.1728 -31.9405) (width 0.25) (layer F.Cu) (net 156))
(segment (start 107.442 -29.4005) (end 107.5055 -29.4005) (width 0.25) (layer B.Cu) (net 156))
(segment (start 104.013 -25.9715) (end 107.442 -29.4005) (width 0.25) (layer B.Cu) (net 156))
(segment (start 105.791 -24.1935) (end 104.013 -25.9715) (width 0.25) (layer F.Cu) (net 156))
(segment (start 105.791 -23.4315) (end 105.791 -24.1935) (width 0.25) (layer F.Cu) (net 156))
(segment (start 106.731557 -43.297565) (end 104.052927 -43.297565) (width 0.25) (layer B.Cu) (net 157))
(segment (start 107.862927 -43.297565) (end 106.731557 -43.297565) (width 0.25) (layer B.Cu) (net 157))
(segment (start 103.252928 -44.097564) (end 103.252928 -44.130572) (width 0.25) (layer F.Cu) (net 157))
(segment (start 104.052927 -43.297565) (end 103.252928 -44.097564) (width 0.25) (layer F.Cu) (net 157))
(segment (start 103.252928 -44.130572) (end 101.4095 -45.974) (width 0.25) (layer F.Cu) (net 157))
(segment (start 87.3125 -45.974) (end 83.9343 -42.5958) (width 0.25) (layer F.Cu) (net 157))
(segment (start 101.4095 -45.974) (end 87.3125 -45.974) (width 0.25) (layer F.Cu) (net 157))
(segment (start 102.362 -52.2605) (end 103.9495 -53.848) (width 0.25) (layer B.Cu) (net 157))
(segment (start 102.362 -46.7995) (end 102.362 -52.2605) (width 0.25) (layer B.Cu) (net 157))
(segment (start 103.9495 -43.18) (end 103.9495 -45.212) (width 0.25) (layer B.Cu) (net 157))
(segment (start 103.9495 -45.212) (end 102.362 -46.7995) (width 0.25) (layer B.Cu) (net 157))
(segment (start 104.4575 -54.356) (end 103.9495 -53.848) (width 0.25) (layer F.Cu) (net 157))
(segment (start 104.4575 -57.3405) (end 104.4575 -54.356) (width 0.25) (layer F.Cu) (net 157))
(segment (start 106.731557 -35.677565) (end 104.052927 -35.677565) (width 0.25) (layer B.Cu) (net 158))
(segment (start 107.862927 -35.677565) (end 106.731557 -35.677565) (width 0.25) (layer B.Cu) (net 158))
(segment (start 86.3473 -33.2232) (end 86.3473 -36.195) (width 0.25) (layer F.Cu) (net 158))
(segment (start 87.0585 -32.512) (end 86.3473 -33.2232) (width 0.25) (layer F.Cu) (net 158))
(segment (start 104.052927 -35.677565) (end 100.887362 -32.512) (width 0.25) (layer F.Cu) (net 158))
(segment (start 100.887362 -32.512) (end 87.0585 -32.512) (width 0.25) (layer F.Cu) (net 158))
(segment (start 112.903 -35.6235) (end 107.823 -35.6235) (width 0.25) (layer B.Cu) (net 158))
(segment (start 113.3475 -35.179) (end 112.903 -35.6235) (width 0.25) (layer B.Cu) (net 158))
(segment (start 113.3475 -27.94) (end 113.3475 -35.179) (width 0.25) (layer B.Cu) (net 158))
(segment (start 114.325501 -26.961999) (end 113.3475 -27.94) (width 0.25) (layer B.Cu) (net 158))
(segment (start 115.1255 -26.0985) (end 114.325501 -26.898499) (width 0.25) (layer B.Cu) (net 158))
(segment (start 114.325501 -26.898499) (end 114.325501 -26.961999) (width 0.25) (layer B.Cu) (net 158))
(segment (start 110.744 -21.717) (end 115.1255 -26.0985) (width 0.25) (layer F.Cu) (net 158))
(segment (start 105.791 -21.717) (end 110.744 -21.717) (width 0.25) (layer F.Cu) (net 158))
(segment (start 106.731557 -49.647565) (end 104.052927 -49.647565) (width 0.25) (layer B.Cu) (net 159))
(segment (start 107.862927 -49.647565) (end 106.731557 -49.647565) (width 0.25) (layer B.Cu) (net 159))
(segment (start 104.052927 -49.647565) (end 101.6 -47.194638) (width 0.25) (layer F.Cu) (net 159))
(segment (start 101.6 -47.194638) (end 101.6 -47.1805) (width 0.25) (layer F.Cu) (net 159))
(segment (start 101.6 -47.1805) (end 100.965 -46.5455) (width 0.25) (layer F.Cu) (net 159))
(segment (start 100.965 -46.5455) (end 87.4395 -46.5455) (width 0.25) (layer F.Cu) (net 159))
(segment (start 86.4743 -47.5107) (end 86.4743 -50.2158) (width 0.25) (layer F.Cu) (net 159))
(segment (start 87.4395 -46.5455) (end 86.4743 -47.5107) (width 0.25) (layer F.Cu) (net 159))
(segment (start 103.9495 -49.750992) (end 104.052927 -49.647565) (width 0.25) (layer B.Cu) (net 159))
(segment (start 111.887 -53.721) (end 107.823 -49.657) (width 0.25) (layer B.Cu) (net 159))
(segment (start 115.443 -53.721) (end 111.887 -53.721) (width 0.25) (layer B.Cu) (net 159))
(segment (start 107.823 -49.657) (end 106.045 -51.435) (width 0.25) (layer F.Cu) (net 159))
(segment (start 105.2075 -59.055) (end 104.4575 -59.055) (width 0.25) (layer F.Cu) (net 159))
(segment (start 106.045 -58.2175) (end 105.2075 -59.055) (width 0.25) (layer F.Cu) (net 159))
(segment (start 106.045 -51.435) (end 106.045 -58.2175) (width 0.25) (layer F.Cu) (net 159))
(segment (start 16.891 -108.392) (end 16.862 -108.363) (width 0.25) (layer F.Cu) (net 160))
(via (at 98.933 -63.119) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 98.933 -66.418) (end 98.708 -66.643) (width 0.25) (layer B.Cu) (net 160))
(segment (start 98.933 -63.119) (end 98.933 -66.418) (width 0.25) (layer B.Cu) (net 160))
(segment (start 55.311 -61.087) (end 52.295 -58.071) (width 0.25) (layer F.Cu) (net 160))
(segment (start 73.66 -61.087) (end 55.311 -61.087) (width 0.25) (layer F.Cu) (net 160))
(segment (start 74.7395 -62.1665) (end 73.66 -61.087) (width 0.25) (layer F.Cu) (net 160))
(segment (start 90.805 -62.1665) (end 74.7395 -62.1665) (width 0.25) (layer F.Cu) (net 160))
(segment (start 98.933 -63.119) (end 91.7575 -63.119) (width 0.25) (layer F.Cu) (net 160))
(segment (start 91.7575 -63.119) (end 90.805 -62.1665) (width 0.25) (layer F.Cu) (net 160))
(segment (start 107.3785 -63.119) (end 106.045 -63.119) (width 0.25) (layer F.Cu) (net 160))
(segment (start 108.204 -63.9445) (end 107.3785 -63.119) (width 0.25) (layer F.Cu) (net 160))
(segment (start 118.0465 -114.3635) (end 116.2685 -114.3635) (width 0.25) (layer F.Cu) (net 160))
(segment (start 119.38 -113.03) (end 118.0465 -114.3635) (width 0.25) (layer F.Cu) (net 160))
(segment (start 116.2685 -114.3635) (end 115.443 -113.538) (width 0.25) (layer F.Cu) (net 160))
(segment (start 115.443 -113.538) (end 115.443 -89.47009) (width 0.25) (layer F.Cu) (net 160))
(segment (start 106.045 -63.119) (end 98.933 -63.119) (width 0.25) (layer F.Cu) (net 160))
(segment (start 108.204 -82.23109) (end 108.204 -63.9445) (width 0.25) (layer F.Cu) (net 160))
(segment (start 133.2865 -18.2215) (end 134.522 -16.986) (width 0.25) (layer F.Cu) (net 160))
(segment (start 133.2865 -24.257) (end 133.2865 -18.2215) (width 0.25) (layer F.Cu) (net 160))
(segment (start 17.661999 -107.563001) (end 16.862 -108.363) (width 0.25) (layer F.Cu) (net 160))
(segment (start 17.987001 -107.237999) (end 17.661999 -107.563001) (width 0.25) (layer F.Cu) (net 160))
(segment (start 17.987001 -102.742999) (end 17.987001 -107.237999) (width 0.25) (layer F.Cu) (net 160))
(segment (start 19.1935 -101.5365) (end 17.987001 -102.742999) (width 0.25) (layer F.Cu) (net 160))
(segment (start 21.971 -101.5365) (end 19.1935 -101.5365) (width 0.25) (layer F.Cu) (net 160))
(segment (start 59.88601 -150.23549) (end 53.91701 -150.23549) (width 0.25) (layer F.Cu) (net 160))
(segment (start 61.9125 -148.209) (end 59.88601 -150.23549) (width 0.25) (layer F.Cu) (net 160))
(segment (start 61.9125 -147.447) (end 61.9125 -148.209) (width 0.25) (layer F.Cu) (net 160))
(segment (start 52.150001 -152.002499) (end 52.150001 -156.894999) (width 0.25) (layer F.Cu) (net 160))
(segment (start 53.91701 -150.23549) (end 52.150001 -152.002499) (width 0.25) (layer F.Cu) (net 160))
(segment (start 16.862 -108.363) (end 16.862 -112.551) (width 0.25) (layer F.Cu) (net 160))
(segment (start 52.150001 -156.894999) (end 51.824999 -157.220001) (width 0.25) (layer F.Cu) (net 160))
(segment (start 16.862 -112.551) (end 13.97 -115.443) (width 0.25) (layer F.Cu) (net 160))
(segment (start 13.97 -115.443) (end 13.97 -129.66841) (width 0.25) (layer F.Cu) (net 160))
(segment (start 13.97 -129.66841) (end 28.82759 -144.526) (width 0.25) (layer F.Cu) (net 160))
(segment (start 51.824999 -157.220001) (end 51.025 -158.02) (width 0.25) (layer F.Cu) (net 160))
(segment (start 28.82759 -144.526) (end 58.9915 -144.526) (width 0.25) (layer F.Cu) (net 160))
(segment (start 58.9915 -144.526) (end 61.9125 -147.447) (width 0.25) (layer F.Cu) (net 160))
(segment (start 21.971 -101.5365) (end 21.971 -101.473) (width 0.25) (layer F.Cu) (net 160))
(via (at 25.31 -97.5995) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 21.971 -101.473) (end 25.31 -98.134) (width 0.25) (layer F.Cu) (net 160))
(segment (start 25.31 -98.134) (end 25.31 -97.5995) (width 0.25) (layer F.Cu) (net 160))
(via (at 33.2105 -80.899) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160) (tstamp 5C7323DF))
(segment (start 31.5595 -82.55) (end 33.2105 -80.899) (width 0.25) (layer B.Cu) (net 160))
(segment (start 29.591 -82.55) (end 31.5595 -82.55) (width 0.25) (layer B.Cu) (net 160))
(segment (start 26.162 -85.979) (end 29.591 -82.55) (width 0.25) (layer B.Cu) (net 160))
(segment (start 26.162 -95.377) (end 26.162 -85.979) (width 0.25) (layer B.Cu) (net 160))
(segment (start 25.31 -97.5995) (end 25.31 -96.229) (width 0.25) (layer B.Cu) (net 160))
(segment (start 25.31 -96.229) (end 26.162 -95.377) (width 0.25) (layer B.Cu) (net 160))
(segment (start 34.3535 -79.756) (end 33.2105 -80.899) (width 0.25) (layer F.Cu) (net 160))
(segment (start 34.3535 -79.0575) (end 34.3535 -79.756) (width 0.25) (layer F.Cu) (net 160))
(segment (start 34.3535 -79.0575) (end 34.3535 -78.9305) (width 0.25) (layer F.Cu) (net 160))
(via (at 44.0055 -66.548) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 34.3535 -78.9305) (end 44.0055 -69.2785) (width 0.25) (layer F.Cu) (net 160))
(segment (start 44.0055 -69.2785) (end 44.0055 -66.548) (width 0.25) (layer F.Cu) (net 160))
(segment (start 44.0055 -65.982315) (end 45.852815 -64.135) (width 0.25) (layer B.Cu) (net 160))
(segment (start 44.0055 -66.548) (end 44.0055 -65.982315) (width 0.25) (layer B.Cu) (net 160))
(segment (start 45.852815 -64.135) (end 46.2915 -64.135) (width 0.25) (layer B.Cu) (net 160))
(segment (start 47.82101 -62.60549) (end 51.63101 -62.60549) (width 0.25) (layer B.Cu) (net 160))
(segment (start 46.2915 -64.135) (end 47.82101 -62.60549) (width 0.25) (layer B.Cu) (net 160))
(segment (start 52.295 -61.9415) (end 52.295 -58.071) (width 0.25) (layer B.Cu) (net 160))
(segment (start 51.63101 -62.60549) (end 52.295 -61.9415) (width 0.25) (layer B.Cu) (net 160))
(via (at 127.762 -49.149) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 108.839 -63.3095) (end 108.204 -63.9445) (width 0.25) (layer F.Cu) (net 160))
(segment (start 116.0145 -63.3095) (end 108.839 -63.3095) (width 0.25) (layer F.Cu) (net 160))
(segment (start 127.762 -49.149) (end 127.762 -51.562) (width 0.25) (layer F.Cu) (net 160))
(segment (start 127.762 -51.562) (end 116.0145 -63.3095) (width 0.25) (layer F.Cu) (net 160))
(via (at 127.762 -31.242) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 127.762 -49.149) (end 127.762 -31.242) (width 0.25) (layer B.Cu) (net 160))
(segment (start 127.762 -31.242) (end 127.762 -29.7815) (width 0.25) (layer F.Cu) (net 160))
(segment (start 127.762 -29.7815) (end 133.2865 -24.257) (width 0.25) (layer F.Cu) (net 160))
(via (at 115.443 -88.9635) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 115.443 -89.47009) (end 115.443 -88.9635) (width 0.25) (layer F.Cu) (net 160))
(segment (start 115.443 -88.9635) (end 115.443 -88.397815) (width 0.25) (layer B.Cu) (net 160))
(segment (start 115.443 -88.397815) (end 115.443 -87.6935) (width 0.25) (layer B.Cu) (net 160))
(segment (start 115.443 -87.6935) (end 114.808 -87.0585) (width 0.25) (layer B.Cu) (net 160))
(segment (start 114.808 -87.0585) (end 114.427 -87.0585) (width 0.25) (layer B.Cu) (net 160))
(segment (start 114.427 -87.0585) (end 113.4745 -86.106) (width 0.25) (layer B.Cu) (net 160))
(segment (start 113.4745 -86.106) (end 111.125 -83.7565) (width 0.25) (layer B.Cu) (net 160))
(via (at 108.836194 -83.109388) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 160))
(segment (start 111.125 -83.7565) (end 109.483306 -83.7565) (width 0.25) (layer B.Cu) (net 160))
(segment (start 109.483306 -83.7565) (end 108.836194 -83.109388) (width 0.25) (layer B.Cu) (net 160))
(segment (start 108.436195 -82.463285) (end 108.204 -82.23109) (width 0.25) (layer F.Cu) (net 160))
(segment (start 108.436195 -82.709389) (end 108.436195 -82.463285) (width 0.25) (layer F.Cu) (net 160))
(segment (start 108.836194 -83.109388) (end 108.436195 -82.709389) (width 0.25) (layer F.Cu) (net 160))
(segment (start 80.2005 -9.144) (end 92.964 -9.144) (width 0.5) (layer F.Cu) (net 165))
(segment (start 79.1845 -8.128) (end 80.2005 -9.144) (width 0.5) (layer F.Cu) (net 165))
(segment (start 94.343001 -7.764999) (end 92.964 -9.144) (width 0.5) (layer F.Cu) (net 165))
(segment (start 94.343001 -7.637999) (end 94.343001 -7.764999) (width 0.5) (layer F.Cu) (net 165))
(segment (start 95.123 -6.858) (end 94.343001 -7.637999) (width 0.5) (layer F.Cu) (net 165))
(segment (start 79.0194 -7.9629) (end 79.0194 -4.8895) (width 0.5) (layer F.Cu) (net 165))
(segment (start 79.1845 -8.128) (end 79.0194 -7.9629) (width 0.5) (layer F.Cu) (net 165))
(segment (start 79.0194 -3.7395) (end 77.7818 -2.5019) (width 0.5) (layer F.Cu) (net 165))
(segment (start 79.0194 -4.8895) (end 79.0194 -3.7395) (width 0.5) (layer F.Cu) (net 165))
(segment (start 25.5016 -2.5019) (end 23.3045 -4.699) (width 0.5) (layer F.Cu) (net 165))
(segment (start 77.7818 -2.5019) (end 25.5016 -2.5019) (width 0.5) (layer F.Cu) (net 165))
(segment (start 22.7838 -5.2197) (end 23.3045 -4.699) (width 0.5) (layer F.Cu) (net 165))
(segment (start 22.7838 -8.5471) (end 22.7838 -5.2197) (width 0.5) (layer F.Cu) (net 165))
(segment (start 30.7838 -9.62473) (end 30.7838 -8.5471) (width 0.25) (layer F.Cu) (net 169))
(segment (start 31.369 -14.5415) (end 31.369 -10.20993) (width 0.25) (layer F.Cu) (net 169))
(segment (start 31.369 -10.20993) (end 30.7838 -9.62473) (width 0.25) (layer F.Cu) (net 169))
(segment (start 28.829 -14.5415) (end 28.829 -13.46387) (width 0.25) (layer F.Cu) (net 170))
(segment (start 28.7838 -13.41867) (end 28.829 -13.46387) (width 0.25) (layer F.Cu) (net 170))
(segment (start 28.7838 -8.5471) (end 28.7838 -13.41867) (width 0.25) (layer F.Cu) (net 170))
(segment (start 129.3114 -114.3) (end 130.5941 -113.0173) (width 0.25) (layer F.Cu) (net 180))
(segment (start 120.65 -114.3) (end 129.3114 -114.3) (width 0.25) (layer F.Cu) (net 180))
(segment (start 144.78 -153.252) (end 144.78 -153.39) (width 0.25) (layer B.Cu) (net 185))
(via (at 123.698 -36.8935) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 193))
(segment (start 121.3485 -37.973) (end 122.6185 -37.973) (width 0.25) (layer F.Cu) (net 193))
(segment (start 122.6185 -37.973) (end 123.698 -36.8935) (width 0.25) (layer F.Cu) (net 193))
(zone (net 26) (net_name +BATT) (layer F.Cu) (tstamp 5D471C20) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 0.127 -1.4224) (xy -0.762 -3.3274) (xy -0.9525 -4.5339) (xy -1.016 -167.9194) (xy -0.381 -170.6499)
(xy 1.7145 -172.9994) (xy 4.6355 -174.0154) (xy 147.2565 -174.0154) (xy 150.0505 -173.1264) (xy 151.9555 -171.4754)
(xy 152.9715 -168.4909) (xy 153.035 -4.5974) (xy 152.4 -2.3749) (xy 150.4315 -0.0889) (xy 147.193 0.9906)
(xy 4.8895 0.9906) (xy 2.0955 0.2921) (xy 0.6985 -0.8509)
)
)
(filled_polygon
(pts
(xy 147.859504 -173.191857) (xy 148.695929 -172.981762) (xy 149.48681 -172.637877) (xy 150.210902 -172.16944) (xy 150.848766 -171.589027)
(xy 151.383265 -170.912233) (xy 151.800049 -170.157231) (xy 152.087927 -169.344287) (xy 152.241427 -168.482547) (xy 152.265001 -167.982659)
(xy 152.265 -5.030168) (xy 152.191857 -4.140496) (xy 151.981761 -3.30407) (xy 151.637877 -2.513191) (xy 151.169443 -1.789102)
(xy 150.58903 -1.151237) (xy 149.912233 -0.616735) (xy 149.157227 -0.199948) (xy 148.344287 0.087928) (xy 147.482547 0.241427)
(xy 146.98268 0.265) (xy 5.030168 0.265) (xy 4.140496 0.191857) (xy 3.30407 -0.018239) (xy 2.513191 -0.362123)
(xy 1.789102 -0.830557) (xy 1.151237 -1.41097) (xy 0.616735 -2.087767) (xy 0.199948 -2.842773) (xy -0.087928 -3.655713)
(xy -0.241427 -4.517453) (xy -0.265 -5.01732) (xy -0.265 -6.622375) (xy 1.4946 -6.622375) (xy 1.4946 -5.076825)
(xy 2.086056 -3.648924) (xy 3.178924 -2.556056) (xy 4.606825 -1.9646) (xy 6.152375 -1.9646) (xy 7.580276 -2.556056)
(xy 8.673144 -3.648924) (xy 9.2646 -5.076825) (xy 9.2646 -6.622375) (xy 8.673144 -8.050276) (xy 7.580276 -9.143144)
(xy 6.152375 -9.7346) (xy 4.606825 -9.7346) (xy 3.178924 -9.143144) (xy 2.086056 -8.050276) (xy 1.4946 -6.622375)
(xy -0.265 -6.622375) (xy -0.265 -48.8125) (xy 0.071501 -48.8125) (xy 0.071501 -40.180287) (xy 0.0715 -40.180282)
(xy 0.071501 -18.336288) (xy 0.049265 -18.2245) (xy 0.137354 -17.781646) (xy 0.18446 -17.711148) (xy 0.388212 -17.406211)
(xy 0.48298 -17.342889) (xy 4.007891 -13.817976) (xy 4.071211 -13.723211) (xy 4.165975 -13.659892) (xy 4.165976 -13.659891)
(xy 4.446645 -13.472354) (xy 4.8895 -13.384265) (xy 5.001283 -13.4065) (xy 12.143717 -13.4065) (xy 12.2555 -13.384265)
(xy 12.367283 -13.4065) (xy 12.377222 -13.408477) (xy 14.87827 -10.907428) (xy 14.920671 -10.843971) (xy 15.172063 -10.675996)
(xy 15.393748 -10.6319) (xy 15.393752 -10.6319) (xy 15.468599 -10.617012) (xy 15.543446 -10.6319) (xy 21.624199 -10.6319)
(xy 22.368797 -9.887302) (xy 21.992463 -9.73142) (xy 21.59948 -9.338437) (xy 21.3868 -8.824981) (xy 21.3868 -8.269219)
(xy 21.59948 -7.755763) (xy 21.8988 -7.456443) (xy 21.898801 -5.306865) (xy 21.881463 -5.2197) (xy 21.950148 -4.874391)
(xy 22.096376 -4.655546) (xy 22.096378 -4.655544) (xy 22.145752 -4.581651) (xy 22.219645 -4.532277) (xy 22.617076 -4.134846)
(xy 24.814177 -1.937744) (xy 24.863551 -1.863851) (xy 24.937444 -1.814477) (xy 24.937445 -1.814476) (xy 25.051359 -1.738361)
(xy 25.15629 -1.668248) (xy 25.414435 -1.6169) (xy 25.414439 -1.6169) (xy 25.5016 -1.599563) (xy 25.588761 -1.6169)
(xy 77.694639 -1.6169) (xy 77.7818 -1.599563) (xy 77.868961 -1.6169) (xy 77.868965 -1.6169) (xy 78.12711 -1.668248)
(xy 78.419849 -1.863851) (xy 78.469225 -1.937747) (xy 79.583556 -3.052077) (xy 79.657449 -3.101451) (xy 79.737983 -3.221977)
(xy 79.81822 -3.34206) (xy 79.9194 -3.34206) (xy 80.167165 -3.391343) (xy 80.377209 -3.531691) (xy 80.517557 -3.741735)
(xy 80.56684 -3.9895) (xy 80.56684 -5.7895) (xy 80.517557 -6.037265) (xy 80.377209 -6.247309) (xy 80.167165 -6.387657)
(xy 79.9194 -6.43694) (xy 79.9044 -6.43694) (xy 79.9044 -7.596322) (xy 80.567079 -8.259) (xy 84.64774 -8.259)
(xy 84.161467 -8.057579) (xy 83.763421 -7.659533) (xy 83.548 -7.139461) (xy 83.548 -6.576539) (xy 83.763421 -6.056467)
(xy 84.161467 -5.658421) (xy 84.681539 -5.443) (xy 85.244461 -5.443) (xy 85.764533 -5.658421) (xy 86.162579 -6.056467)
(xy 86.233 -6.226478) (xy 86.303421 -6.056467) (xy 86.701467 -5.658421) (xy 87.221539 -5.443) (xy 87.784461 -5.443)
(xy 88.304533 -5.658421) (xy 88.510857 -5.864745) (xy 89.22935 -5.864745) (xy 89.301028 -5.620697) (xy 89.831003 -5.43094)
(xy 90.393252 -5.458441) (xy 90.784972 -5.620697) (xy 90.85665 -5.864745) (xy 90.043 -6.678395) (xy 89.22935 -5.864745)
(xy 88.510857 -5.864745) (xy 88.702579 -6.056467) (xy 88.766473 -6.210722) (xy 88.805697 -6.116028) (xy 89.049745 -6.04435)
(xy 89.863395 -6.858) (xy 89.049745 -7.67165) (xy 88.805697 -7.599972) (xy 88.769326 -7.498391) (xy 88.702579 -7.659533)
(xy 88.304533 -8.057579) (xy 87.81826 -8.259) (xy 88.443971 -8.259) (xy 88.450191 -8.249691) (xy 88.660235 -8.109343)
(xy 88.908 -8.06006) (xy 89.290677 -8.06006) (xy 89.22935 -7.851255) (xy 90.043 -7.037605) (xy 90.85665 -7.851255)
(xy 90.784972 -8.095303) (xy 90.361612 -8.246887) (xy 90.365809 -8.249691) (xy 90.372029 -8.259) (xy 92.26774 -8.259)
(xy 91.781467 -8.057579) (xy 91.383421 -7.659533) (xy 91.319527 -7.505278) (xy 91.280303 -7.599972) (xy 91.036255 -7.67165)
(xy 90.222605 -6.858) (xy 91.036255 -6.04435) (xy 91.280303 -6.116028) (xy 91.316674 -6.217609) (xy 91.383421 -6.056467)
(xy 91.781467 -5.658421) (xy 92.301539 -5.443) (xy 92.864461 -5.443) (xy 93.384533 -5.658421) (xy 93.782579 -6.056467)
(xy 93.853 -6.226478) (xy 93.923421 -6.056467) (xy 94.321467 -5.658421) (xy 94.841539 -5.443) (xy 95.404461 -5.443)
(xy 95.924533 -5.658421) (xy 96.322579 -6.056467) (xy 96.538 -6.576539) (xy 96.538 -7.139461) (xy 96.322579 -7.659533)
(xy 95.924533 -8.057579) (xy 95.404461 -8.273) (xy 95.067946 -8.273) (xy 95.030425 -8.329154) (xy 95.030423 -8.329156)
(xy 95.014852 -8.35246) (xy 96.858 -8.35246) (xy 96.858 -7.42354) (xy 97.213483 -6.565329) (xy 97.870329 -5.908483)
(xy 98.72854 -5.553) (xy 99.65746 -5.553) (xy 100.515671 -5.908483) (xy 101.172517 -6.565329) (xy 101.528 -7.42354)
(xy 101.528 -8.35246) (xy 101.172517 -9.210671) (xy 100.935928 -9.44726) (xy 102.3426 -9.44726) (xy 102.3426 -8.62774)
(xy 102.656216 -7.870604) (xy 103.235704 -7.291116) (xy 103.99284 -6.9775) (xy 104.81236 -6.9775) (xy 105.569496 -7.291116)
(xy 106.148984 -7.870604) (xy 106.4626 -8.62774) (xy 106.4626 -9.44726) (xy 115.4826 -9.44726) (xy 115.4826 -8.62774)
(xy 115.796216 -7.870604) (xy 116.375704 -7.291116) (xy 117.13284 -6.9775) (xy 117.95236 -6.9775) (xy 118.20042 -7.08025)
(xy 128.671 -7.08025) (xy 128.671 -5.98969) (xy 128.767673 -5.756301) (xy 128.946302 -5.577673) (xy 129.179691 -5.481)
(xy 130.27025 -5.481) (xy 130.429 -5.63975) (xy 130.429 -7.239) (xy 130.683 -7.239) (xy 130.683 -5.63975)
(xy 130.84175 -5.481) (xy 131.932309 -5.481) (xy 132.165698 -5.577673) (xy 132.344327 -5.756301) (xy 132.441 -5.98969)
(xy 132.441 -7.08025) (xy 132.28225 -7.239) (xy 130.683 -7.239) (xy 130.429 -7.239) (xy 128.82975 -7.239)
(xy 128.671 -7.08025) (xy 118.20042 -7.08025) (xy 118.709496 -7.291116) (xy 119.288984 -7.870604) (xy 119.6026 -8.62774)
(xy 119.6026 -8.74231) (xy 128.671 -8.74231) (xy 128.671 -7.65175) (xy 128.82975 -7.493) (xy 130.429 -7.493)
(xy 130.429 -9.09225) (xy 130.683 -9.09225) (xy 130.683 -7.493) (xy 132.28225 -7.493) (xy 132.441 -7.65175)
(xy 132.441 -7.74095) (xy 133.751 -7.74095) (xy 133.751 -6.99105) (xy 134.037974 -6.298233) (xy 134.568233 -5.767974)
(xy 135.26105 -5.481) (xy 136.01095 -5.481) (xy 136.614504 -5.731) (xy 137.575031 -5.731) (xy 138.051945 -5.825864)
(xy 138.592769 -6.187231) (xy 138.883522 -6.622375) (xy 142.717 -6.622375) (xy 142.717 -5.076825) (xy 143.308456 -3.648924)
(xy 144.401324 -2.556056) (xy 145.829225 -1.9646) (xy 147.374775 -1.9646) (xy 148.802676 -2.556056) (xy 149.895544 -3.648924)
(xy 150.487 -5.076825) (xy 150.487 -6.622375) (xy 149.895544 -8.050276) (xy 148.802676 -9.143144) (xy 147.374775 -9.7346)
(xy 145.829225 -9.7346) (xy 144.401324 -9.143144) (xy 143.308456 -8.050276) (xy 142.717 -6.622375) (xy 138.883522 -6.622375)
(xy 138.954136 -6.728055) (xy 139.081031 -7.366) (xy 138.954136 -8.003945) (xy 138.592769 -8.544769) (xy 138.051945 -8.906136)
(xy 137.575031 -9.001) (xy 136.614504 -9.001) (xy 136.01095 -9.251) (xy 135.26105 -9.251) (xy 134.568233 -8.964026)
(xy 134.037974 -8.433767) (xy 133.751 -7.74095) (xy 132.441 -7.74095) (xy 132.441 -8.74231) (xy 132.344327 -8.975699)
(xy 132.165698 -9.154327) (xy 131.932309 -9.251) (xy 130.84175 -9.251) (xy 130.683 -9.09225) (xy 130.429 -9.09225)
(xy 130.27025 -9.251) (xy 129.179691 -9.251) (xy 128.946302 -9.154327) (xy 128.767673 -8.975699) (xy 128.671 -8.74231)
(xy 119.6026 -8.74231) (xy 119.6026 -9.44726) (xy 119.288984 -10.204396) (xy 118.709496 -10.783884) (xy 117.95236 -11.0975)
(xy 117.13284 -11.0975) (xy 116.375704 -10.783884) (xy 115.796216 -10.204396) (xy 115.4826 -9.44726) (xy 106.4626 -9.44726)
(xy 106.148984 -10.204396) (xy 105.569496 -10.783884) (xy 104.81236 -11.0975) (xy 103.99284 -11.0975) (xy 103.235704 -10.783884)
(xy 102.656216 -10.204396) (xy 102.3426 -9.44726) (xy 100.935928 -9.44726) (xy 100.515671 -9.867517) (xy 99.65746 -10.223)
(xy 98.72854 -10.223) (xy 97.870329 -9.867517) (xy 97.213483 -9.210671) (xy 96.858 -8.35246) (xy 95.014852 -8.35246)
(xy 94.98105 -8.403048) (xy 94.907157 -8.452422) (xy 93.651425 -9.708153) (xy 93.602049 -9.782049) (xy 93.30931 -9.977652)
(xy 93.051165 -10.029) (xy 93.051161 -10.029) (xy 92.964 -10.046337) (xy 92.876839 -10.029) (xy 90.456888 -10.029)
(xy 90.365809 -10.165309) (xy 90.199497 -10.276436) (xy 90.340409 -10.370591) (xy 90.480757 -10.580635) (xy 90.53004 -10.8284)
(xy 90.53004 -11.8284) (xy 90.486388 -12.047858) (xy 105.9626 -12.047858) (xy 105.9626 -11.447142) (xy 106.192484 -10.892154)
(xy 106.617254 -10.467384) (xy 107.172242 -10.2375) (xy 107.772958 -10.2375) (xy 108.327946 -10.467384) (xy 108.7226 -10.862038)
(xy 109.117254 -10.467384) (xy 109.672242 -10.2375) (xy 110.272958 -10.2375) (xy 110.827946 -10.467384) (xy 110.9726 -10.612038)
(xy 111.117254 -10.467384) (xy 111.672242 -10.2375) (xy 112.272958 -10.2375) (xy 112.827946 -10.467384) (xy 113.2226 -10.862038)
(xy 113.617254 -10.467384) (xy 114.172242 -10.2375) (xy 114.772958 -10.2375) (xy 115.327946 -10.467384) (xy 115.752716 -10.892154)
(xy 115.9826 -11.447142) (xy 115.9826 -12.047858) (xy 115.752716 -12.602846) (xy 115.715062 -12.6405) (xy 126.100022 -12.6405)
(xy 126.795177 -11.945344) (xy 126.844551 -11.871451) (xy 126.918444 -11.822077) (xy 126.918445 -11.822076) (xy 126.968176 -11.788847)
(xy 127.13729 -11.675848) (xy 127.395435 -11.6245) (xy 127.395439 -11.6245) (xy 127.4826 -11.607163) (xy 127.569761 -11.6245)
(xy 136.210993 -11.6245) (xy 136.573126 -11.4745) (xy 136.984874 -11.4745) (xy 137.36528 -11.632069) (xy 137.656431 -11.92322)
(xy 137.814 -12.303626) (xy 137.814 -12.702) (xy 141.026383 -12.702) (xy 141.10123 -12.687112) (xy 141.176077 -12.702)
(xy 141.176082 -12.702) (xy 141.397767 -12.746096) (xy 141.649159 -12.914071) (xy 141.691561 -12.97753) (xy 143.439501 -14.725469)
(xy 143.502957 -14.767869) (xy 143.670932 -15.019261) (xy 143.715028 -15.240946) (xy 143.715028 -15.24095) (xy 143.729916 -15.315797)
(xy 143.715028 -15.390644) (xy 143.715028 -16.760243) (xy 143.896 -16.760243) (xy 143.896 -15.751757) (xy 144.28193 -14.820038)
(xy 144.995038 -14.10693) (xy 145.926757 -13.721) (xy 146.935243 -13.721) (xy 147.866962 -14.10693) (xy 148.58007 -14.820038)
(xy 148.966 -15.751757) (xy 148.966 -16.760243) (xy 148.58007 -17.691962) (xy 147.866962 -18.40507) (xy 146.935243 -18.791)
(xy 145.926757 -18.791) (xy 144.995038 -18.40507) (xy 144.28193 -17.691962) (xy 143.896 -16.760243) (xy 143.715028 -16.760243)
(xy 143.715028 -22.053727) (xy 149.518973 -27.857671) (xy 149.582429 -27.900071) (xy 149.709688 -28.090527) (xy 149.750404 -28.151462)
(xy 149.7695 -28.247466) (xy 149.7945 -28.373148) (xy 149.7945 -28.373152) (xy 149.809388 -28.448) (xy 149.7945 -28.522848)
(xy 149.7945 -42.216153) (xy 149.809388 -42.291) (xy 149.7945 -42.365847) (xy 149.7945 -42.365852) (xy 149.750404 -42.587537)
(xy 149.582429 -42.838929) (xy 149.518973 -42.881329) (xy 147.318 -45.082301) (xy 147.318 -47.423154) (xy 147.332888 -47.498001)
(xy 147.318 -47.572848) (xy 147.318 -47.572852) (xy 147.273904 -47.794537) (xy 147.105929 -48.045929) (xy 147.042473 -48.088329)
(xy 146.39633 -48.734471) (xy 146.353928 -48.79793) (xy 146.212116 -48.892686) (xy 145.907 -49.197802) (xy 145.907 -49.448222)
(xy 145.658086 -50.049153) (xy 145.198153 -50.509086) (xy 144.597222 -50.758) (xy 143.946778 -50.758) (xy 143.345847 -50.509086)
(xy 142.885914 -50.049153) (xy 142.637 -49.448222) (xy 142.637 -48.797778) (xy 142.885914 -48.196847) (xy 143.345847 -47.736914)
(xy 143.946778 -47.488) (xy 144.597222 -47.488) (xy 145.198153 -47.736914) (xy 145.204529 -47.74329) (xy 145.23207 -47.702072)
(xy 145.373884 -47.607315) (xy 145.798 -47.183198) (xy 145.798 -46.21137) (xy 145.658086 -46.549153) (xy 145.198153 -47.009086)
(xy 144.597222 -47.258) (xy 143.946778 -47.258) (xy 143.345847 -47.009086) (xy 142.885914 -46.549153) (xy 142.637 -45.948222)
(xy 142.637 -45.297778) (xy 142.885914 -44.696847) (xy 143.345847 -44.236914) (xy 143.946778 -43.988) (xy 144.597222 -43.988)
(xy 145.198153 -44.236914) (xy 145.208219 -44.24698) (xy 146.792295 -42.662903) (xy 146.47972 -42.533431) (xy 146.188569 -42.24228)
(xy 146.031 -41.861874) (xy 146.031 -41.450126) (xy 146.188569 -41.06972) (xy 146.210545 -41.047744) (xy 146.201111 -41.000314)
(xy 146.215999 -40.925467) (xy 146.216 -39.979352) (xy 146.201111 -39.904501) (xy 146.260096 -39.607964) (xy 146.378707 -39.430451)
(xy 146.428071 -39.356572) (xy 146.491527 -39.314172) (xy 146.687 -39.118699) (xy 146.687001 -29.270803) (xy 141.5605 -24.144301)
(xy 141.5605 -24.208874) (xy 141.402931 -24.58928) (xy 141.11178 -24.880431) (xy 140.731374 -25.038) (xy 140.319626 -25.038)
(xy 139.957493 -24.888) (xy 135.177079 -24.888) (xy 129.9805 -30.084578) (xy 129.9805 -30.737493) (xy 130.1305 -31.099626)
(xy 130.1305 -31.511374) (xy 129.972931 -31.89178) (xy 129.68178 -32.182931) (xy 129.301374 -32.3405) (xy 128.889626 -32.3405)
(xy 128.50922 -32.182931) (xy 128.397 -32.070711) (xy 128.34828 -32.119431) (xy 127.967874 -32.277) (xy 127.556126 -32.277)
(xy 127.17572 -32.119431) (xy 126.96825 -31.911961) (xy 126.76078 -32.119431) (xy 126.380374 -32.277) (xy 125.968626 -32.277)
(xy 125.58822 -32.119431) (xy 125.297069 -31.82828) (xy 125.190911 -31.57199) (xy 124.82622 -31.420931) (xy 124.535069 -31.12978)
(xy 124.3775 -30.749374) (xy 124.3775 -30.337626) (xy 124.535069 -29.95722) (xy 124.649753 -29.842536) (xy 124.637612 -29.7815)
(xy 124.6525 -29.706653) (xy 124.6525 -29.706648) (xy 124.692824 -29.503929) (xy 124.696597 -29.484963) (xy 124.822143 -29.297071)
(xy 124.864572 -29.233571) (xy 124.928028 -29.191171) (xy 125.732 -28.387198) (xy 125.732001 -27.238803) (xy 123.129199 -24.636)
(xy 121.804348 -24.636) (xy 121.7295 -24.650888) (xy 121.654652 -24.636) (xy 121.654648 -24.636) (xy 121.481105 -24.60148)
(xy 121.432962 -24.591904) (xy 121.28051 -24.490038) (xy 121.181571 -24.423929) (xy 121.139171 -24.360473) (xy 120.071083 -23.292384)
(xy 119.567439 -23.501) (xy 118.996561 -23.501) (xy 118.469138 -23.282534) (xy 118.065466 -22.878862) (xy 118.012 -22.749784)
(xy 117.958534 -22.878862) (xy 117.554862 -23.282534) (xy 117.027439 -23.501) (xy 116.456561 -23.501) (xy 115.929138 -23.282534)
(xy 115.525466 -22.878862) (xy 115.307 -22.351439) (xy 115.307 -21.780561) (xy 115.525466 -21.253138) (xy 115.929138 -20.849466)
(xy 116.058216 -20.796) (xy 115.929138 -20.742534) (xy 115.525466 -20.338862) (xy 115.307 -19.811439) (xy 115.307 -19.240561)
(xy 115.525466 -18.713138) (xy 115.929138 -18.309466) (xy 116.456561 -18.091) (xy 117.027439 -18.091) (xy 117.554862 -18.309466)
(xy 117.958534 -18.713138) (xy 118.012 -18.842216) (xy 118.065466 -18.713138) (xy 118.469138 -18.309466) (xy 118.996561 -18.091)
(xy 119.567439 -18.091) (xy 120.094862 -18.309466) (xy 120.498534 -18.713138) (xy 120.552 -18.842216) (xy 120.605466 -18.713138)
(xy 121.009138 -18.309466) (xy 121.536561 -18.091) (xy 122.107439 -18.091) (xy 122.3573 -18.194496) (xy 122.410597 -17.926553)
(xy 122.507422 -17.781645) (xy 122.578572 -17.675161) (xy 122.642028 -17.632761) (xy 125.864288 -14.4105) (xy 111.721532 -14.4105)
(xy 112.13107 -14.820038) (xy 112.517 -15.751757) (xy 112.517 -16.760243) (xy 112.13107 -17.691962) (xy 111.417962 -18.40507)
(xy 110.486243 -18.791) (xy 109.477757 -18.791) (xy 108.546038 -18.40507) (xy 107.83293 -17.691962) (xy 107.447 -16.760243)
(xy 107.447 -15.751757) (xy 107.83293 -14.820038) (xy 108.529662 -14.123306) (xy 108.507177 -14.089656) (xy 107.783445 -13.365923)
(xy 107.70955 -13.316548) (xy 107.670095 -13.2575) (xy 107.172242 -13.2575) (xy 106.617254 -13.027616) (xy 106.192484 -12.602846)
(xy 105.9626 -12.047858) (xy 90.486388 -12.047858) (xy 90.480757 -12.076165) (xy 90.340409 -12.286209) (xy 90.228138 -12.361227)
(xy 90.260031 -12.39312) (xy 90.4176 -12.773526) (xy 90.4176 -13.185274) (xy 90.260031 -13.56568) (xy 89.96888 -13.856831)
(xy 89.588474 -14.0144) (xy 89.176726 -14.0144) (xy 88.79632 -13.856831) (xy 88.505169 -13.56568) (xy 88.3476 -13.185274)
(xy 88.3476 -12.773526) (xy 88.505169 -12.39312) (xy 88.537062 -12.361227) (xy 88.424791 -12.286209) (xy 88.284443 -12.076165)
(xy 88.23516 -11.8284) (xy 88.23516 -10.8284) (xy 88.284443 -10.580635) (xy 88.424791 -10.370591) (xy 88.591103 -10.259464)
(xy 88.450191 -10.165309) (xy 88.359112 -10.029) (xy 80.287661 -10.029) (xy 80.2005 -10.046337) (xy 80.113339 -10.029)
(xy 80.113335 -10.029) (xy 79.85519 -9.977652) (xy 79.636345 -9.831424) (xy 79.636344 -9.831423) (xy 79.562451 -9.782049)
(xy 79.513077 -9.708156) (xy 78.620346 -8.815424) (xy 78.455247 -8.650325) (xy 78.381351 -8.600949) (xy 78.185748 -8.308209)
(xy 78.1344 -8.050064) (xy 78.1344 -8.050061) (xy 78.117063 -7.9629) (xy 78.1344 -7.875739) (xy 78.1344 -6.43694)
(xy 78.1194 -6.43694) (xy 77.871635 -6.387657) (xy 77.661591 -6.247309) (xy 77.521243 -6.037265) (xy 77.47196 -5.7895)
(xy 77.47196 -3.9895) (xy 77.521243 -3.741735) (xy 77.620904 -3.592583) (xy 77.415222 -3.3869) (xy 75.90295 -3.3869)
(xy 76.388907 -3.58819) (xy 76.82071 -4.019993) (xy 77.0544 -4.58417) (xy 77.0544 -5.19483) (xy 76.82071 -5.759007)
(xy 76.388907 -6.19081) (xy 75.82473 -6.4245) (xy 75.21407 -6.4245) (xy 74.649893 -6.19081) (xy 74.21809 -5.759007)
(xy 73.9844 -5.19483) (xy 73.9844 -4.58417) (xy 74.21809 -4.019993) (xy 74.649893 -3.58819) (xy 75.13585 -3.3869)
(xy 25.868179 -3.3869) (xy 23.868654 -5.386424) (xy 23.6688 -5.586278) (xy 23.6688 -7.456443) (xy 23.7838 -7.571443)
(xy 23.992463 -7.36278) (xy 24.505919 -7.1501) (xy 25.061681 -7.1501) (xy 25.575137 -7.36278) (xy 25.7838 -7.571443)
(xy 25.992463 -7.36278) (xy 26.505919 -7.1501) (xy 27.061681 -7.1501) (xy 27.575137 -7.36278) (xy 27.7838 -7.571443)
(xy 27.992463 -7.36278) (xy 28.505919 -7.1501) (xy 29.061681 -7.1501) (xy 29.575137 -7.36278) (xy 29.7838 -7.571443)
(xy 29.992463 -7.36278) (xy 30.505919 -7.1501) (xy 31.061681 -7.1501) (xy 31.575137 -7.36278) (xy 31.7838 -7.571443)
(xy 31.992463 -7.36278) (xy 32.505919 -7.1501) (xy 33.061681 -7.1501) (xy 33.575137 -7.36278) (xy 33.96812 -7.755763)
(xy 34.1808 -8.269219) (xy 34.1808 -8.749) (xy 48.76956 -8.749) (xy 48.76956 -6.999) (xy 48.818843 -6.751235)
(xy 48.959191 -6.541191) (xy 49.169235 -6.400843) (xy 49.417 -6.35156) (xy 51.167 -6.35156) (xy 51.414765 -6.400843)
(xy 51.624809 -6.541191) (xy 51.765157 -6.751235) (xy 51.81444 -6.999) (xy 51.81444 -8.174358) (xy 52.282 -8.174358)
(xy 52.282 -7.573642) (xy 52.511884 -7.018654) (xy 52.936654 -6.593884) (xy 53.491642 -6.364) (xy 54.092358 -6.364)
(xy 54.647346 -6.593884) (xy 54.865402 -6.81194) (xy 56.409545 -6.81194) (xy 56.492884 -6.558047) (xy 57.057306 -6.35241)
(xy 57.657458 -6.378421) (xy 58.091116 -6.558047) (xy 58.174455 -6.81194) (xy 57.292 -7.694395) (xy 56.409545 -6.81194)
(xy 54.865402 -6.81194) (xy 55.072116 -7.018654) (xy 55.302 -7.573642) (xy 55.302 -8.108694) (xy 55.77041 -8.108694)
(xy 55.796421 -7.508542) (xy 55.976047 -7.074884) (xy 56.22994 -6.991545) (xy 57.112395 -7.874) (xy 57.471605 -7.874)
(xy 58.35406 -6.991545) (xy 58.607953 -7.074884) (xy 58.81359 -7.639306) (xy 58.790401 -8.174358) (xy 59.282 -8.174358)
(xy 59.282 -7.573642) (xy 59.511884 -7.018654) (xy 59.936654 -6.593884) (xy 60.491642 -6.364) (xy 61.092358 -6.364)
(xy 61.647346 -6.593884) (xy 62.072116 -7.018654) (xy 62.302 -7.573642) (xy 62.302 -8.174358) (xy 62.782 -8.174358)
(xy 62.782 -7.573642) (xy 63.011884 -7.018654) (xy 63.436654 -6.593884) (xy 63.991642 -6.364) (xy 64.592358 -6.364)
(xy 65.147346 -6.593884) (xy 65.572116 -7.018654) (xy 65.802 -7.573642) (xy 65.802 -8.174358) (xy 66.282 -8.174358)
(xy 66.282 -7.573642) (xy 66.511884 -7.018654) (xy 66.936654 -6.593884) (xy 67.491642 -6.364) (xy 68.092358 -6.364)
(xy 68.647346 -6.593884) (xy 69.072116 -7.018654) (xy 69.302 -7.573642) (xy 69.302 -8.174358) (xy 69.072116 -8.729346)
(xy 68.647346 -9.154116) (xy 68.092358 -9.384) (xy 67.491642 -9.384) (xy 66.936654 -9.154116) (xy 66.511884 -8.729346)
(xy 66.282 -8.174358) (xy 65.802 -8.174358) (xy 65.572116 -8.729346) (xy 65.147346 -9.154116) (xy 64.592358 -9.384)
(xy 63.991642 -9.384) (xy 63.436654 -9.154116) (xy 63.011884 -8.729346) (xy 62.782 -8.174358) (xy 62.302 -8.174358)
(xy 62.072116 -8.729346) (xy 61.647346 -9.154116) (xy 61.092358 -9.384) (xy 60.491642 -9.384) (xy 59.936654 -9.154116)
(xy 59.511884 -8.729346) (xy 59.282 -8.174358) (xy 58.790401 -8.174358) (xy 58.787579 -8.239458) (xy 58.607953 -8.673116)
(xy 58.35406 -8.756455) (xy 57.471605 -7.874) (xy 57.112395 -7.874) (xy 56.22994 -8.756455) (xy 55.976047 -8.673116)
(xy 55.77041 -8.108694) (xy 55.302 -8.108694) (xy 55.302 -8.174358) (xy 55.072116 -8.729346) (xy 54.865402 -8.93606)
(xy 56.409545 -8.93606) (xy 57.292 -8.053605) (xy 58.174455 -8.93606) (xy 58.091116 -9.189953) (xy 57.526694 -9.39559)
(xy 56.926542 -9.369579) (xy 56.492884 -9.189953) (xy 56.409545 -8.93606) (xy 54.865402 -8.93606) (xy 54.647346 -9.154116)
(xy 54.092358 -9.384) (xy 53.491642 -9.384) (xy 52.936654 -9.154116) (xy 52.511884 -8.729346) (xy 52.282 -8.174358)
(xy 51.81444 -8.174358) (xy 51.81444 -8.749) (xy 51.765157 -8.996765) (xy 51.624809 -9.206809) (xy 51.414765 -9.347157)
(xy 51.167 -9.39644) (xy 49.417 -9.39644) (xy 49.169235 -9.347157) (xy 48.959191 -9.206809) (xy 48.818843 -8.996765)
(xy 48.76956 -8.749) (xy 34.1808 -8.749) (xy 34.1808 -8.824981) (xy 33.96812 -9.338437) (xy 33.575137 -9.73142)
(xy 33.061681 -9.9441) (xy 32.505919 -9.9441) (xy 31.992463 -9.73142) (xy 31.7838 -9.522757) (xy 31.770214 -9.536343)
(xy 31.853473 -9.619601) (xy 31.916929 -9.662001) (xy 32.054251 -9.867517) (xy 32.084904 -9.913392) (xy 32.097686 -9.977652)
(xy 32.129 -10.135078) (xy 32.129 -10.135082) (xy 32.143888 -10.20993) (xy 32.129 -10.284778) (xy 32.129 -13.4712)
(xy 32.160337 -13.48418) (xy 32.55332 -13.877163) (xy 32.639 -14.084013) (xy 32.72468 -13.877163) (xy 33.117663 -13.48418)
(xy 33.631119 -13.2715) (xy 34.186881 -13.2715) (xy 34.700337 -13.48418) (xy 35.09332 -13.877163) (xy 35.306 -14.390619)
(xy 35.306 -14.946381) (xy 35.09332 -15.459837) (xy 34.700337 -15.85282) (xy 34.186881 -16.0655) (xy 33.631119 -16.0655)
(xy 33.117663 -15.85282) (xy 32.72468 -15.459837) (xy 32.639 -15.252987) (xy 32.55332 -15.459837) (xy 32.160337 -15.85282)
(xy 31.646881 -16.0655) (xy 31.091119 -16.0655) (xy 30.577663 -15.85282) (xy 30.18468 -15.459837) (xy 30.099 -15.252987)
(xy 30.01332 -15.459837) (xy 29.620337 -15.85282) (xy 29.106881 -16.0655) (xy 28.551119 -16.0655) (xy 28.037663 -15.85282)
(xy 27.64468 -15.459837) (xy 27.559 -15.252987) (xy 27.47332 -15.459837) (xy 27.080337 -15.85282) (xy 26.566881 -16.0655)
(xy 26.011119 -16.0655) (xy 25.497663 -15.85282) (xy 25.10468 -15.459837) (xy 25.019 -15.252987) (xy 24.93332 -15.459837)
(xy 24.540337 -15.85282) (xy 24.026881 -16.0655) (xy 23.471119 -16.0655) (xy 22.957663 -15.85282) (xy 22.56468 -15.459837)
(xy 22.479 -15.252987) (xy 22.39332 -15.459837) (xy 22.000337 -15.85282) (xy 21.486881 -16.0655) (xy 20.931119 -16.0655)
(xy 20.417663 -15.85282) (xy 20.02468 -15.459837) (xy 19.812 -14.946381) (xy 19.812 -14.390619) (xy 20.02468 -13.877163)
(xy 20.417663 -13.48418) (xy 20.931119 -13.2715) (xy 21.486881 -13.2715) (xy 22.000337 -13.48418) (xy 22.39332 -13.877163)
(xy 22.479 -14.084013) (xy 22.56468 -13.877163) (xy 22.957663 -13.48418) (xy 23.471119 -13.2715) (xy 24.026881 -13.2715)
(xy 24.540337 -13.48418) (xy 24.93332 -13.877163) (xy 25.019 -14.084013) (xy 25.10468 -13.877163) (xy 25.497663 -13.48418)
(xy 26.011119 -13.2715) (xy 26.566881 -13.2715) (xy 27.080337 -13.48418) (xy 27.47332 -13.877163) (xy 27.559 -14.084013)
(xy 27.64468 -13.877163) (xy 28.024551 -13.497292) (xy 28.008912 -13.41867) (xy 28.023801 -13.343818) (xy 28.0238 -9.7444)
(xy 27.992463 -9.73142) (xy 27.7838 -9.522757) (xy 27.575137 -9.73142) (xy 27.061681 -9.9441) (xy 26.505919 -9.9441)
(xy 25.992463 -9.73142) (xy 25.7838 -9.522757) (xy 25.575137 -9.73142) (xy 25.061681 -9.9441) (xy 24.505919 -9.9441)
(xy 24.474582 -9.93112) (xy 22.529331 -11.87637) (xy 22.486929 -11.939829) (xy 22.235537 -12.107804) (xy 22.013852 -12.1519)
(xy 22.013847 -12.1519) (xy 21.939 -12.166788) (xy 21.864153 -12.1519) (xy 15.783402 -12.1519) (xy 13.627216 -14.308085)
(xy 16.079374 -16.760243) (xy 37.851 -16.760243) (xy 37.851 -15.751757) (xy 38.23693 -14.820038) (xy 38.950038 -14.10693)
(xy 39.881757 -13.721) (xy 40.890243 -13.721) (xy 41.821962 -14.10693) (xy 42.53507 -14.820038) (xy 42.921 -15.751757)
(xy 42.921 -16.760243) (xy 74.3 -16.760243) (xy 74.3 -15.751757) (xy 74.68593 -14.820038) (xy 75.399038 -14.10693)
(xy 76.330757 -13.721) (xy 77.339243 -13.721) (xy 78.270962 -14.10693) (xy 78.98407 -14.820038) (xy 79.37 -15.751757)
(xy 79.37 -16.760243) (xy 78.98407 -17.691962) (xy 78.270962 -18.40507) (xy 77.339243 -18.791) (xy 76.330757 -18.791)
(xy 75.399038 -18.40507) (xy 74.68593 -17.691962) (xy 74.3 -16.760243) (xy 42.921 -16.760243) (xy 42.53507 -17.691962)
(xy 41.821962 -18.40507) (xy 40.890243 -18.791) (xy 39.881757 -18.791) (xy 38.950038 -18.40507) (xy 38.23693 -17.691962)
(xy 37.851 -16.760243) (xy 16.079374 -16.760243) (xy 16.669801 -17.35067) (xy 17.068862 -17.515966) (xy 17.472534 -17.919638)
(xy 17.691 -18.447061) (xy 17.691 -19.017939) (xy 17.472534 -19.545362) (xy 17.068862 -19.949034) (xy 16.541439 -20.1675)
(xy 15.970561 -20.1675) (xy 15.443138 -19.949034) (xy 15.039466 -19.545362) (xy 14.821 -19.017939) (xy 14.821 -18.712132)
(xy 11.785369 -15.6765) (xy 5.359633 -15.6765) (xy 2.3415 -18.694631) (xy 2.3415 -23.155222) (xy 6.3025 -23.155222)
(xy 6.3025 -22.504778) (xy 6.551414 -21.903847) (xy 7.011347 -21.443914) (xy 7.612278 -21.195) (xy 8.262722 -21.195)
(xy 8.863653 -21.443914) (xy 9.323586 -21.903847) (xy 9.366106 -22.0065) (xy 9.729698 -22.0065) (xy 8.563579 -20.840381)
(xy 8.262722 -20.965) (xy 7.612278 -20.965) (xy 7.011347 -20.716086) (xy 6.551414 -20.256153) (xy 6.3025 -19.655222)
(xy 6.3025 -19.004778) (xy 6.551414 -18.403847) (xy 7.011347 -17.943914) (xy 7.612278 -17.695) (xy 8.262722 -17.695)
(xy 8.863653 -17.943914) (xy 9.323586 -18.403847) (xy 9.5725 -19.004778) (xy 9.5725 -19.655222) (xy 9.559473 -19.686672)
(xy 10.335175 -20.462374) (xy 62.338 -20.462374) (xy 62.338 -20.050626) (xy 62.495569 -19.67022) (xy 62.531812 -19.633977)
(xy 62.4015 -19.319374) (xy 62.4015 -18.907626) (xy 62.559069 -18.52722) (xy 62.85022 -18.236069) (xy 63.230626 -18.0785)
(xy 63.642374 -18.0785) (xy 64.02278 -18.236069) (xy 64.155897 -18.369186) (xy 64.298722 -18.397596) (xy 64.550114 -18.565571)
(xy 64.592516 -18.62903) (xy 64.888487 -18.925) (xy 80.584199 -18.925) (xy 81.584181 -17.925017) (xy 81.626581 -17.861561)
(xy 81.877973 -17.693586) (xy 82.099658 -17.64949) (xy 82.099662 -17.64949) (xy 82.17451 -17.634602) (xy 82.249358 -17.64949)
(xy 103.361143 -17.64949) (xy 103.43599 -17.634602) (xy 103.510837 -17.64949) (xy 103.510842 -17.64949) (xy 103.732527 -17.693586)
(xy 103.983919 -17.861561) (xy 104.026321 -17.92502) (xy 104.243301 -18.142) (xy 104.409374 -18.142) (xy 104.78978 -18.299569)
(xy 105.080931 -18.59072) (xy 105.2385 -18.971126) (xy 105.2385 -19.382874) (xy 105.126786 -19.652575) (xy 105.144431 -19.67022)
(xy 105.302 -20.050626) (xy 105.302 -20.462374) (xy 105.254603 -20.5768) (xy 105.291 -20.56956) (xy 106.291 -20.56956)
(xy 106.538765 -20.618843) (xy 106.748809 -20.759191) (xy 106.880982 -20.957) (xy 110.669153 -20.957) (xy 110.744 -20.942112)
(xy 110.818847 -20.957) (xy 110.818852 -20.957) (xy 111.040537 -21.001096) (xy 111.291929 -21.169071) (xy 111.334331 -21.23253)
(xy 114.801614 -24.699812) (xy 114.984167 -24.6635) (xy 115.266833 -24.6635) (xy 115.685409 -24.74676) (xy 116.160077 -25.063923)
(xy 116.47724 -25.538591) (xy 116.588613 -26.0985) (xy 116.47724 -26.658409) (xy 116.160077 -27.133077) (xy 115.685409 -27.45024)
(xy 115.266833 -27.5335) (xy 114.984167 -27.5335) (xy 114.565591 -27.45024) (xy 114.090923 -27.133077) (xy 113.77376 -26.658409)
(xy 113.662387 -26.0985) (xy 113.726812 -25.774614) (xy 110.429199 -22.477) (xy 106.880982 -22.477) (xy 106.816001 -22.57425)
(xy 106.889157 -22.683735) (xy 106.93844 -22.9315) (xy 106.93844 -23.9315) (xy 106.889157 -24.179265) (xy 106.748809 -24.389309)
(xy 106.538765 -24.529657) (xy 106.47149 -24.543039) (xy 106.381329 -24.677973) (xy 106.338929 -24.741429) (xy 106.275473 -24.783829)
(xy 105.411688 -25.647614) (xy 105.476113 -25.9715) (xy 105.394074 -26.383939) (xy 106.0705 -26.383939) (xy 106.0705 -25.813061)
(xy 106.288966 -25.285638) (xy 106.692638 -24.881966) (xy 107.220061 -24.6635) (xy 107.790939 -24.6635) (xy 108.318362 -24.881966)
(xy 108.722034 -25.285638) (xy 108.9405 -25.813061) (xy 108.9405 -26.383939) (xy 108.722034 -26.911362) (xy 108.318362 -27.315034)
(xy 107.790939 -27.5335) (xy 107.220061 -27.5335) (xy 106.692638 -27.315034) (xy 106.288966 -26.911362) (xy 106.0705 -26.383939)
(xy 105.394074 -26.383939) (xy 105.36474 -26.531409) (xy 105.047577 -27.006077) (xy 104.572909 -27.32324) (xy 104.154333 -27.4065)
(xy 103.871667 -27.4065) (xy 103.453091 -27.32324) (xy 102.978423 -27.006077) (xy 102.66126 -26.531409) (xy 102.549887 -25.9715)
(xy 102.66126 -25.411591) (xy 102.978423 -24.936923) (xy 103.453091 -24.61976) (xy 103.871667 -24.5365) (xy 104.154333 -24.5365)
(xy 104.336886 -24.572812) (xy 104.7079 -24.201799) (xy 104.692843 -24.179265) (xy 104.64356 -23.9315) (xy 104.64356 -22.9315)
(xy 104.692843 -22.683735) (xy 104.765999 -22.57425) (xy 104.692843 -22.464765) (xy 104.64356 -22.217) (xy 104.64356 -21.2208)
(xy 104.472874 -21.2915) (xy 104.061126 -21.2915) (xy 103.68072 -21.133931) (xy 103.547603 -21.000814) (xy 103.404778 -20.972404)
(xy 103.359443 -20.942112) (xy 103.216841 -20.846829) (xy 103.216839 -20.846827) (xy 103.153386 -20.804429) (xy 103.110988 -20.740976)
(xy 101.989514 -19.6195) (xy 87.826688 -19.6195) (xy 87.972517 -19.765329) (xy 88.328 -20.62354) (xy 88.328 -21.55246)
(xy 87.972517 -22.410671) (xy 87.315671 -23.067517) (xy 86.45746 -23.423) (xy 85.52854 -23.423) (xy 84.670329 -23.067517)
(xy 84.013483 -22.410671) (xy 83.658 -21.55246) (xy 83.658 -20.62354) (xy 84.013483 -19.765329) (xy 84.159312 -19.6195)
(xy 82.801303 -19.6195) (xy 81.679831 -20.74097) (xy 81.637429 -20.804429) (xy 81.386037 -20.972404) (xy 81.164352 -21.0165)
(xy 81.164347 -21.0165) (xy 81.0895 -21.031388) (xy 81.014653 -21.0165) (xy 64.076711 -21.0165) (xy 63.95928 -21.133931)
(xy 63.578874 -21.2915) (xy 63.167126 -21.2915) (xy 62.78672 -21.133931) (xy 62.495569 -20.84278) (xy 62.338 -20.462374)
(xy 10.335175 -20.462374) (xy 11.020302 -21.1475) (xy 19.947322 -21.1475) (xy 20.304626 -20.9995) (xy 20.716374 -20.9995)
(xy 21.09678 -21.157069) (xy 21.387931 -21.44822) (xy 21.5455 -21.828626) (xy 21.5455 -22.240374) (xy 21.387931 -22.62078)
(xy 21.09678 -22.911931) (xy 20.716374 -23.0695) (xy 20.522769 -23.0695) (xy 20.405431 -23.35278) (xy 20.11428 -23.643931)
(xy 19.733874 -23.8015) (xy 19.322126 -23.8015) (xy 18.94172 -23.643931) (xy 18.824289 -23.5265) (xy 9.418711 -23.5265)
(xy 9.323586 -23.756153) (xy 8.863653 -24.216086) (xy 8.262722 -24.465) (xy 7.612278 -24.465) (xy 7.011347 -24.216086)
(xy 6.551414 -23.756153) (xy 6.3025 -23.155222) (xy 2.3415 -23.155222) (xy 2.3415 -26.655222) (xy 6.3025 -26.655222)
(xy 6.3025 -26.004778) (xy 6.551414 -25.403847) (xy 7.011347 -24.943914) (xy 7.612278 -24.695) (xy 8.262722 -24.695)
(xy 8.863653 -24.943914) (xy 9.323586 -25.403847) (xy 9.5725 -26.004778) (xy 9.5725 -26.3525) (xy 14.792887 -26.3525)
(xy 14.90426 -25.792591) (xy 15.221423 -25.317923) (xy 15.696091 -25.00076) (xy 16.114667 -24.9175) (xy 16.397333 -24.9175)
(xy 16.815909 -25.00076) (xy 17.290577 -25.317923) (xy 17.60774 -25.792591) (xy 17.719113 -26.3525) (xy 17.60774 -26.912409)
(xy 17.290577 -27.387077) (xy 16.815909 -27.70424) (xy 16.397333 -27.7875) (xy 16.114667 -27.7875) (xy 15.696091 -27.70424)
(xy 15.221423 -27.387077) (xy 14.90426 -26.912409) (xy 14.792887 -26.3525) (xy 9.5725 -26.3525) (xy 9.5725 -26.655222)
(xy 9.323586 -27.256153) (xy 8.863653 -27.716086) (xy 8.262722 -27.965) (xy 7.612278 -27.965) (xy 7.011347 -27.716086)
(xy 6.551414 -27.256153) (xy 6.3025 -26.655222) (xy 2.3415 -26.655222) (xy 2.3415 -30.155222) (xy 6.3025 -30.155222)
(xy 6.3025 -29.504778) (xy 6.551414 -28.903847) (xy 7.011347 -28.443914) (xy 7.612278 -28.195) (xy 8.262722 -28.195)
(xy 8.863653 -28.443914) (xy 9.323586 -28.903847) (xy 9.5725 -29.504778) (xy 9.5725 -30.155222) (xy 9.323586 -30.756153)
(xy 8.863653 -31.216086) (xy 8.304068 -31.447874) (xy 26.9685 -31.447874) (xy 26.9685 -31.036126) (xy 27.126069 -30.65572)
(xy 27.41722 -30.364569) (xy 27.797626 -30.207) (xy 27.8575 -30.207) (xy 27.8575 -30.083626) (xy 28.015069 -29.70322)
(xy 28.30622 -29.412069) (xy 28.686626 -29.2545) (xy 29.098374 -29.2545) (xy 29.47878 -29.412069) (xy 29.596211 -29.5295)
(xy 46.407153 -29.5295) (xy 46.482 -29.514612) (xy 46.556847 -29.5295) (xy 46.556852 -29.5295) (xy 46.778537 -29.573596)
(xy 47.029929 -29.741571) (xy 47.072331 -29.80503) (xy 48.680973 -31.413671) (xy 48.744429 -31.456071) (xy 48.912404 -31.707463)
(xy 48.9565 -31.929148) (xy 48.9565 -31.929152) (xy 48.971388 -32.003999) (xy 48.9565 -32.078846) (xy 48.9565 -40.452199)
(xy 60.060302 -51.556) (xy 60.200439 -51.556) (xy 60.727862 -51.774466) (xy 61.131534 -52.178138) (xy 61.185 -52.307216)
(xy 61.238466 -52.178138) (xy 61.642138 -51.774466) (xy 62.169561 -51.556) (xy 62.740439 -51.556) (xy 63.267862 -51.774466)
(xy 63.671534 -52.178138) (xy 63.725 -52.307216) (xy 63.778466 -52.178138) (xy 64.182138 -51.774466) (xy 64.709561 -51.556)
(xy 65.280439 -51.556) (xy 65.807862 -51.774466) (xy 66.211534 -52.178138) (xy 66.265 -52.307216) (xy 66.318466 -52.178138)
(xy 66.722138 -51.774466) (xy 67.249561 -51.556) (xy 67.820439 -51.556) (xy 68.347862 -51.774466) (xy 68.751534 -52.178138)
(xy 68.805 -52.307216) (xy 68.858466 -52.178138) (xy 69.262138 -51.774466) (xy 69.315001 -51.75257) (xy 69.315001 -51.348351)
(xy 69.300112 -51.2735) (xy 69.315001 -51.198648) (xy 69.336215 -51.092) (xy 69.359097 -50.976963) (xy 69.44654 -50.846096)
(xy 69.527072 -50.725571) (xy 69.590528 -50.683171) (xy 74.356812 -45.916886) (xy 74.292387 -45.593) (xy 74.40376 -45.033091)
(xy 74.720923 -44.558423) (xy 74.995501 -44.374956) (xy 74.9955 -43.240802) (xy 74.678699 -42.924) (xy 73.417348 -42.924)
(xy 73.3425 -42.938888) (xy 73.267652 -42.924) (xy 73.267648 -42.924) (xy 73.119649 -42.894561) (xy 73.045962 -42.879904)
(xy 72.900792 -42.782904) (xy 72.794571 -42.711929) (xy 72.752171 -42.648473) (xy 72.096028 -41.992329) (xy 72.032572 -41.949929)
(xy 71.990172 -41.886473) (xy 71.990171 -41.886472) (xy 71.864597 -41.698537) (xy 71.805612 -41.402) (xy 71.820501 -41.327148)
(xy 71.8205 -39.202847) (xy 71.805612 -39.128) (xy 71.8205 -39.053153) (xy 71.8205 -39.053149) (xy 71.864596 -38.831464)
(xy 72.032571 -38.580071) (xy 72.09603 -38.537669) (xy 72.578198 -38.0555) (xy 72.501626 -38.0555) (xy 72.12122 -37.897931)
(xy 71.830069 -37.60678) (xy 71.6725 -37.226374) (xy 71.6725 -36.814626) (xy 71.830069 -36.43422) (xy 72.12122 -36.143069)
(xy 72.501626 -35.9855) (xy 72.913374 -35.9855) (xy 73.009063 -36.025136) (xy 73.08406 -35.950139) (xy 73.08406 -35.773195)
(xy 72.786374 -35.8965) (xy 72.374626 -35.8965) (xy 71.99422 -35.738931) (xy 71.703069 -35.44778) (xy 71.5455 -35.067374)
(xy 71.5455 -34.699393) (xy 71.29572 -34.595931) (xy 71.004569 -34.30478) (xy 70.847 -33.924374) (xy 70.847 -33.736117)
(xy 70.766097 -33.615037) (xy 70.722001 -33.393352) (xy 70.722001 -33.393348) (xy 70.707113 -33.318501) (xy 70.722001 -33.243654)
(xy 70.722002 -30.831851) (xy 70.707113 -30.756999) (xy 70.766098 -30.460462) (xy 70.891666 -30.272537) (xy 70.934073 -30.20907)
(xy 70.997528 -30.16667) (xy 71.778526 -29.385671) (xy 71.778532 -29.385667) (xy 72.692671 -28.471527) (xy 72.735071 -28.408071)
(xy 72.798527 -28.365671) (xy 72.986462 -28.240096) (xy 73.034605 -28.23052) (xy 73.208148 -28.196) (xy 73.208152 -28.196)
(xy 73.283 -28.181112) (xy 73.297852 -28.184066) (xy 73.337191 -28.125191) (xy 73.547235 -27.984843) (xy 73.795 -27.93556)
(xy 74.795 -27.93556) (xy 75.042765 -27.984843) (xy 75.252809 -28.125191) (xy 75.393157 -28.335235) (xy 75.44244 -28.583)
(xy 75.44244 -29.028639) (xy 75.60724 -29.193438) (xy 75.613126 -29.191) (xy 76.024874 -29.191) (xy 76.40528 -29.348569)
(xy 76.696431 -29.63972) (xy 76.837001 -29.979086) (xy 76.837001 -26.998852) (xy 76.822112 -26.924) (xy 76.837001 -26.849148)
(xy 76.881097 -26.627463) (xy 77.049072 -26.376071) (xy 77.112528 -26.333671) (xy 77.578171 -25.868027) (xy 77.620571 -25.804571)
(xy 77.871963 -25.636596) (xy 78.093648 -25.5925) (xy 78.093652 -25.5925) (xy 78.168499 -25.577612) (xy 78.243346 -25.5925)
(xy 89.129953 -25.5925) (xy 89.2048 -25.577612) (xy 89.279647 -25.5925) (xy 89.279652 -25.5925) (xy 89.501337 -25.636596)
(xy 89.752729 -25.804571) (xy 89.795131 -25.86803) (xy 90.18404 -26.256939) (xy 94.958 -26.256939) (xy 94.958 -25.686061)
(xy 95.176466 -25.158638) (xy 95.580138 -24.754966) (xy 96.107561 -24.5365) (xy 96.678439 -24.5365) (xy 97.205862 -24.754966)
(xy 97.609534 -25.158638) (xy 97.828 -25.686061) (xy 97.828 -26.256939) (xy 97.609534 -26.784362) (xy 97.205862 -27.188034)
(xy 96.678439 -27.4065) (xy 96.107561 -27.4065) (xy 95.580138 -27.188034) (xy 95.176466 -26.784362) (xy 94.958 -26.256939)
(xy 90.18404 -26.256939) (xy 91.016988 -27.089886) (xy 91.170015 -27.0265) (xy 91.760785 -27.0265) (xy 92.306585 -27.252578)
(xy 92.724322 -27.670315) (xy 92.9504 -28.216115) (xy 92.9504 -28.806885) (xy 92.724322 -29.352685) (xy 92.613007 -29.464)
(xy 94.929887 -29.464) (xy 95.04126 -28.904091) (xy 95.358423 -28.429423) (xy 95.833091 -28.11226) (xy 96.251667 -28.029)
(xy 96.534333 -28.029) (xy 96.952909 -28.11226) (xy 97.427577 -28.429423) (xy 97.74474 -28.904091) (xy 97.856113 -29.464)
(xy 97.74474 -30.023909) (xy 97.427577 -30.498577) (xy 96.952909 -30.81574) (xy 96.534333 -30.899) (xy 96.251667 -30.899)
(xy 95.833091 -30.81574) (xy 95.358423 -30.498577) (xy 95.04126 -30.023909) (xy 94.929887 -29.464) (xy 92.613007 -29.464)
(xy 92.306585 -29.770422) (xy 91.760785 -29.9965) (xy 91.170015 -29.9965) (xy 90.624215 -29.770422) (xy 90.206478 -29.352685)
(xy 90.1954 -29.32594) (xy 90.184322 -29.352685) (xy 89.766585 -29.770422) (xy 89.220785 -29.9965) (xy 88.630015 -29.9965)
(xy 88.084215 -29.770422) (xy 87.666478 -29.352685) (xy 87.6554 -29.32594) (xy 87.644322 -29.352685) (xy 87.226585 -29.770422)
(xy 86.680785 -29.9965) (xy 86.303602 -29.9965) (xy 87.001129 -30.694027) (xy 87.001131 -30.69403) (xy 87.487602 -31.1805)
(xy 100.586699 -31.1805) (xy 102.124106 -29.643092) (xy 102.166507 -29.579635) (xy 102.229963 -29.537235) (xy 102.417898 -29.41166)
(xy 102.466041 -29.402084) (xy 102.578 -29.379814) (xy 102.578 -29.178561) (xy 102.796466 -28.651138) (xy 103.200138 -28.247466)
(xy 103.727561 -28.029) (xy 104.298439 -28.029) (xy 104.825862 -28.247466) (xy 105.229534 -28.651138) (xy 105.448 -29.178561)
(xy 105.448 -29.4005) (xy 106.042387 -29.4005) (xy 106.15376 -28.840591) (xy 106.470923 -28.365923) (xy 106.945591 -28.04876)
(xy 107.364167 -27.9655) (xy 107.646833 -27.9655) (xy 108.065409 -28.04876) (xy 108.540077 -28.365923) (xy 108.85724 -28.840591)
(xy 108.968613 -29.4005) (xy 108.911836 -29.685939) (xy 113.6905 -29.685939) (xy 113.6905 -29.115061) (xy 113.908966 -28.587638)
(xy 114.312638 -28.183966) (xy 114.840061 -27.9655) (xy 115.410939 -27.9655) (xy 115.938362 -28.183966) (xy 116.342034 -28.587638)
(xy 116.5605 -29.115061) (xy 116.5605 -29.685939) (xy 116.342034 -30.213362) (xy 115.938362 -30.617034) (xy 115.410939 -30.8355)
(xy 114.840061 -30.8355) (xy 114.312638 -30.617034) (xy 113.908966 -30.213362) (xy 113.6905 -29.685939) (xy 108.911836 -29.685939)
(xy 108.85724 -29.960409) (xy 108.540077 -30.435077) (xy 108.065409 -30.75224) (xy 107.646833 -30.8355) (xy 107.364167 -30.8355)
(xy 106.945591 -30.75224) (xy 106.470923 -30.435077) (xy 106.15376 -29.960409) (xy 106.042387 -29.4005) (xy 105.448 -29.4005)
(xy 105.448 -29.749439) (xy 105.229534 -30.276862) (xy 104.825862 -30.680534) (xy 104.298439 -30.899) (xy 103.727561 -30.899)
(xy 103.566315 -30.832209) (xy 103.549465 -30.843468) (xy 103.32778 -30.887564) (xy 103.327775 -30.887564) (xy 103.252928 -30.902452)
(xy 103.178081 -30.887564) (xy 103.029238 -30.887564) (xy 101.683482 -32.233319) (xy 103.802596 -34.352432) (xy 104.045061 -34.252)
(xy 104.615939 -34.252) (xy 105.143362 -34.470466) (xy 105.547034 -34.874138) (xy 105.7655 -35.401561) (xy 105.7655 -35.6235)
(xy 106.359887 -35.6235) (xy 106.47126 -35.063591) (xy 106.788423 -34.588923) (xy 107.263091 -34.27176) (xy 107.681667 -34.1885)
(xy 107.964333 -34.1885) (xy 108.382909 -34.27176) (xy 108.857577 -34.588923) (xy 109.17474 -35.063591) (xy 109.286113 -35.6235)
(xy 109.229336 -35.908939) (xy 114.008 -35.908939) (xy 114.008 -35.338061) (xy 114.226466 -34.810638) (xy 114.630138 -34.406966)
(xy 115.157561 -34.1885) (xy 115.728439 -34.1885) (xy 116.255862 -34.406966) (xy 116.659534 -34.810638) (xy 116.878 -35.338061)
(xy 116.878 -35.908939) (xy 116.659534 -36.436362) (xy 116.255862 -36.840034) (xy 115.728439 -37.0585) (xy 115.157561 -37.0585)
(xy 114.630138 -36.840034) (xy 114.226466 -36.436362) (xy 114.008 -35.908939) (xy 109.229336 -35.908939) (xy 109.17474 -36.183409)
(xy 108.857577 -36.658077) (xy 108.382909 -36.97524) (xy 107.964333 -37.0585) (xy 107.681667 -37.0585) (xy 107.263091 -36.97524)
(xy 106.788423 -36.658077) (xy 106.47126 -36.183409) (xy 106.359887 -35.6235) (xy 105.7655 -35.6235) (xy 105.7655 -35.972439)
(xy 105.547034 -36.499862) (xy 105.143362 -36.903534) (xy 104.615939 -37.122) (xy 104.045061 -37.122) (xy 103.517638 -36.903534)
(xy 103.113966 -36.499862) (xy 102.8955 -35.972439) (xy 102.8955 -35.59494) (xy 100.572561 -33.272) (xy 87.373302 -33.272)
(xy 87.1073 -33.538001) (xy 87.1073 -34.823168) (xy 87.226585 -34.872578) (xy 87.644322 -35.290315) (xy 87.6554 -35.31706)
(xy 87.666478 -35.290315) (xy 88.084215 -34.872578) (xy 88.630015 -34.6465) (xy 89.220785 -34.6465) (xy 89.766585 -34.872578)
(xy 90.184322 -35.290315) (xy 90.1954 -35.31706) (xy 90.206478 -35.290315) (xy 90.624215 -34.872578) (xy 91.170015 -34.6465)
(xy 91.760785 -34.6465) (xy 92.306585 -34.872578) (xy 92.724322 -35.290315) (xy 92.888634 -35.687) (xy 95.247387 -35.687)
(xy 95.35876 -35.127091) (xy 95.675923 -34.652423) (xy 96.150591 -34.33526) (xy 96.569167 -34.252) (xy 96.851833 -34.252)
(xy 97.270409 -34.33526) (xy 97.745077 -34.652423) (xy 98.06224 -35.127091) (xy 98.173613 -35.687) (xy 98.06224 -36.246909)
(xy 97.745077 -36.721577) (xy 97.270409 -37.03874) (xy 96.851833 -37.122) (xy 96.569167 -37.122) (xy 96.150591 -37.03874)
(xy 95.675923 -36.721577) (xy 95.35876 -36.246909) (xy 95.247387 -35.687) (xy 92.888634 -35.687) (xy 92.9504 -35.836115)
(xy 92.9504 -36.426885) (xy 92.724322 -36.972685) (xy 92.534133 -37.162874) (xy 118.599 -37.162874) (xy 118.599 -36.751126)
(xy 118.756569 -36.37072) (xy 119.04772 -36.079569) (xy 119.428126 -35.922) (xy 119.839874 -35.922) (xy 120.20106 -36.071608)
(xy 120.20106 -35.2505) (xy 120.250343 -35.002735) (xy 120.390691 -34.792691) (xy 120.429686 -34.766635) (xy 120.313843 -34.593265)
(xy 120.26456 -34.3455) (xy 120.26456 -33.3455) (xy 120.313843 -33.097735) (xy 120.454191 -32.887691) (xy 120.566462 -32.812673)
(xy 120.534569 -32.78078) (xy 120.377 -32.400374) (xy 120.377 -31.988626) (xy 120.534569 -31.60822) (xy 120.82572 -31.317069)
(xy 121.206126 -31.1595) (xy 121.617874 -31.1595) (xy 121.99828 -31.317069) (xy 122.289431 -31.60822) (xy 122.447 -31.988626)
(xy 122.447 -32.400374) (xy 122.406563 -32.498) (xy 142.74956 -32.498) (xy 142.74956 -30.748) (xy 142.798843 -30.500235)
(xy 142.939191 -30.290191) (xy 143.149235 -30.149843) (xy 143.397 -30.10056) (xy 145.147 -30.10056) (xy 145.394765 -30.149843)
(xy 145.604809 -30.290191) (xy 145.745157 -30.500235) (xy 145.79444 -30.748) (xy 145.79444 -32.498) (xy 145.745157 -32.745765)
(xy 145.604809 -32.955809) (xy 145.394765 -33.096157) (xy 145.147 -33.14544) (xy 143.397 -33.14544) (xy 143.149235 -33.096157)
(xy 142.939191 -32.955809) (xy 142.798843 -32.745765) (xy 142.74956 -32.498) (xy 122.406563 -32.498) (xy 122.289431 -32.78078)
(xy 122.257538 -32.812673) (xy 122.369809 -32.887691) (xy 122.510157 -33.097735) (xy 122.55944 -33.3455) (xy 122.55944 -34.3455)
(xy 122.510157 -34.593265) (xy 122.369809 -34.803309) (xy 122.330814 -34.829365) (xy 122.446657 -35.002735) (xy 122.49594 -35.2505)
(xy 122.49594 -35.448222) (xy 142.637 -35.448222) (xy 142.637 -34.797778) (xy 142.885914 -34.196847) (xy 143.345847 -33.736914)
(xy 143.946778 -33.488) (xy 144.597222 -33.488) (xy 145.198153 -33.736914) (xy 145.658086 -34.196847) (xy 145.907 -34.797778)
(xy 145.907 -35.448222) (xy 145.658086 -36.049153) (xy 145.198153 -36.509086) (xy 144.597222 -36.758) (xy 143.946778 -36.758)
(xy 143.345847 -36.509086) (xy 142.885914 -36.049153) (xy 142.637 -35.448222) (xy 122.49594 -35.448222) (xy 122.49594 -36.2505)
(xy 122.446657 -36.498265) (xy 122.306309 -36.708309) (xy 122.135479 -36.822455) (xy 122.127904 -36.860537) (xy 122.11153 -36.885043)
(xy 122.306309 -37.015191) (xy 122.384495 -37.132204) (xy 122.663 -36.853698) (xy 122.663 -36.687626) (xy 122.820569 -36.30722)
(xy 123.11172 -36.016069) (xy 123.492126 -35.8585) (xy 123.903874 -35.8585) (xy 124.28428 -36.016069) (xy 124.575431 -36.30722)
(xy 124.733 -36.687626) (xy 124.733 -37.099374) (xy 124.575431 -37.47978) (xy 124.28428 -37.770931) (xy 123.903874 -37.9285)
(xy 123.737802 -37.9285) (xy 123.208831 -38.45747) (xy 123.166429 -38.520929) (xy 122.915037 -38.688904) (xy 122.693352 -38.733)
(xy 122.693347 -38.733) (xy 122.6185 -38.747888) (xy 122.543653 -38.733) (xy 122.438482 -38.733) (xy 122.352286 -38.862)
(xy 122.446657 -39.003235) (xy 122.49594 -39.251) (xy 122.49594 -40.251) (xy 122.446657 -40.498765) (xy 122.306309 -40.708809)
(xy 122.172 -40.798552) (xy 122.172 -40.807153) (xy 122.186888 -40.882) (xy 122.172 -40.956847) (xy 122.172 -40.956852)
(xy 122.127904 -41.178537) (xy 122.003399 -41.364871) (xy 122.096265 -41.383343) (xy 122.306309 -41.523691) (xy 122.446657 -41.733735)
(xy 122.49594 -41.9815) (xy 122.49594 -42.9815) (xy 122.446657 -43.229265) (xy 122.306309 -43.439309) (xy 122.096265 -43.579657)
(xy 121.8485 -43.62894) (xy 121.148862 -43.62894) (xy 120.733826 -44.043975) (xy 120.638431 -44.27428) (xy 120.34728 -44.565431)
(xy 119.966874 -44.723) (xy 119.555126 -44.723) (xy 119.17472 -44.565431) (xy 118.883569 -44.27428) (xy 118.726 -43.893874)
(xy 118.726 -43.482126) (xy 118.883569 -43.10172) (xy 119.17472 -42.810569) (xy 119.555126 -42.653) (xy 119.966874 -42.653)
(xy 119.97276 -42.655438) (xy 120.20106 -42.427138) (xy 120.20106 -42.186695) (xy 119.903374 -42.31) (xy 119.491626 -42.31)
(xy 119.11122 -42.152431) (xy 118.820069 -41.86128) (xy 118.6625 -41.480874) (xy 118.6625 -41.069126) (xy 118.820069 -40.68872)
(xy 119.11122 -40.397569) (xy 119.491626 -40.24) (xy 119.903374 -40.24) (xy 120.225404 -40.373389) (xy 120.20106 -40.251)
(xy 120.20106 -39.251) (xy 120.250343 -39.003235) (xy 120.344714 -38.862) (xy 120.250343 -38.720765) (xy 120.20106 -38.473)
(xy 120.20106 -37.842392) (xy 119.839874 -37.992) (xy 119.428126 -37.992) (xy 119.04772 -37.834431) (xy 118.756569 -37.54328)
(xy 118.599 -37.162874) (xy 92.534133 -37.162874) (xy 92.306585 -37.390422) (xy 91.760785 -37.6165) (xy 91.170015 -37.6165)
(xy 90.624215 -37.390422) (xy 90.206478 -36.972685) (xy 90.1954 -36.94594) (xy 90.184322 -36.972685) (xy 89.766585 -37.390422)
(xy 89.220785 -37.6165) (xy 88.630015 -37.6165) (xy 88.084215 -37.390422) (xy 87.666478 -36.972685) (xy 87.6554 -36.94594)
(xy 87.644322 -36.972685) (xy 87.226585 -37.390422) (xy 86.680785 -37.6165) (xy 86.090015 -37.6165) (xy 85.544215 -37.390422)
(xy 85.126478 -36.972685) (xy 85.1154 -36.94594) (xy 85.104322 -36.972685) (xy 84.686585 -37.390422) (xy 84.140785 -37.6165)
(xy 83.550015 -37.6165) (xy 83.004215 -37.390422) (xy 82.586478 -36.972685) (xy 82.3604 -36.426885) (xy 82.3604 -35.836115)
(xy 82.586478 -35.290315) (xy 83.004215 -34.872578) (xy 83.550015 -34.6465) (xy 84.140785 -34.6465) (xy 84.686585 -34.872578)
(xy 85.104322 -35.290315) (xy 85.1154 -35.31706) (xy 85.126478 -35.290315) (xy 85.544215 -34.872578) (xy 85.587301 -34.854731)
(xy 85.5873 -33.298047) (xy 85.572412 -33.2232) (xy 85.5873 -33.148353) (xy 85.5873 -33.148349) (xy 85.631396 -32.926664)
(xy 85.799371 -32.675271) (xy 85.86283 -32.632869) (xy 86.326598 -32.1691) (xy 85.92633 -31.768831) (xy 85.926327 -31.768829)
(xy 84.150128 -29.99263) (xy 84.140785 -29.9965) (xy 83.550015 -29.9965) (xy 83.004215 -29.770422) (xy 82.586478 -29.352685)
(xy 82.3604 -28.806885) (xy 82.3604 -28.216115) (xy 82.586478 -27.670315) (xy 83.004215 -27.252578) (xy 83.342393 -27.1125)
(xy 78.483302 -27.1125) (xy 78.357 -27.238801) (xy 78.357 -38.091923) (xy 78.376404 -38.120963) (xy 78.4205 -38.342648)
(xy 78.435389 -38.4175) (xy 78.4205 -38.492352) (xy 78.4205 -44.292771) (xy 78.497591 -44.24126) (xy 78.916167 -44.158)
(xy 79.198833 -44.158) (xy 79.617409 -44.24126) (xy 80.092077 -44.558423) (xy 80.329501 -44.913753) (xy 80.329501 -41.794352)
(xy 80.314612 -41.7195) (xy 80.373597 -41.422963) (xy 80.488184 -41.251472) (xy 80.541572 -41.171571) (xy 80.605028 -41.129171)
(xy 81.578671 -40.155527) (xy 81.621071 -40.092071) (xy 81.872463 -39.924096) (xy 82.094148 -39.88) (xy 82.094152 -39.88)
(xy 82.169 -39.865112) (xy 82.243848 -39.88) (xy 89.523653 -39.88) (xy 89.5985 -39.865112) (xy 89.673347 -39.88)
(xy 89.673352 -39.88) (xy 89.895037 -39.924096) (xy 90.146429 -40.092071) (xy 90.188831 -40.15553) (xy 91.385402 -41.3521)
(xy 91.760785 -41.3521) (xy 92.306585 -41.578178) (xy 92.724322 -41.995915) (xy 92.9504 -42.541715) (xy 92.9504 -43.132485)
(xy 92.930719 -43.18) (xy 94.866387 -43.18) (xy 94.97776 -42.620091) (xy 95.294923 -42.145423) (xy 95.769591 -41.82826)
(xy 96.188167 -41.745) (xy 96.470833 -41.745) (xy 96.889409 -41.82826) (xy 97.364077 -42.145423) (xy 97.68124 -42.620091)
(xy 97.792613 -43.18) (xy 97.68124 -43.739909) (xy 97.364077 -44.214577) (xy 96.889409 -44.53174) (xy 96.470833 -44.615)
(xy 96.188167 -44.615) (xy 95.769591 -44.53174) (xy 95.294923 -44.214577) (xy 94.97776 -43.739909) (xy 94.866387 -43.18)
(xy 92.930719 -43.18) (xy 92.724322 -43.678285) (xy 92.306585 -44.096022) (xy 91.760785 -44.3221) (xy 91.170015 -44.3221)
(xy 90.624215 -44.096022) (xy 90.206478 -43.678285) (xy 90.1954 -43.65154) (xy 90.184322 -43.678285) (xy 89.766585 -44.096022)
(xy 89.220785 -44.3221) (xy 88.630015 -44.3221) (xy 88.084215 -44.096022) (xy 87.666478 -43.678285) (xy 87.6554 -43.65154)
(xy 87.644322 -43.678285) (xy 87.226585 -44.096022) (xy 86.719405 -44.306103) (xy 87.627302 -45.214) (xy 101.094699 -45.214)
(xy 102.596133 -43.712565) (xy 102.60893 -43.693413) (xy 102.5145 -43.465439) (xy 102.5145 -42.894561) (xy 102.732966 -42.367138)
(xy 103.136638 -41.963466) (xy 103.664061 -41.745) (xy 104.234939 -41.745) (xy 104.762362 -41.963466) (xy 105.166034 -42.367138)
(xy 105.3845 -42.894561) (xy 105.3845 -43.3705) (xy 106.423387 -43.3705) (xy 106.53476 -42.810591) (xy 106.851923 -42.335923)
(xy 107.326591 -42.01876) (xy 107.745167 -41.9355) (xy 108.027833 -41.9355) (xy 108.446409 -42.01876) (xy 108.921077 -42.335923)
(xy 109.23824 -42.810591) (xy 109.349613 -43.3705) (xy 109.292836 -43.655939) (xy 114.0715 -43.655939) (xy 114.0715 -43.085061)
(xy 114.289966 -42.557638) (xy 114.693638 -42.153966) (xy 115.221061 -41.9355) (xy 115.791939 -41.9355) (xy 116.319362 -42.153966)
(xy 116.723034 -42.557638) (xy 116.9415 -43.085061) (xy 116.9415 -43.655939) (xy 116.723034 -44.183362) (xy 116.319362 -44.587034)
(xy 115.791939 -44.8055) (xy 115.221061 -44.8055) (xy 114.693638 -44.587034) (xy 114.289966 -44.183362) (xy 114.0715 -43.655939)
(xy 109.292836 -43.655939) (xy 109.23824 -43.930409) (xy 108.921077 -44.405077) (xy 108.446409 -44.72224) (xy 108.027833 -44.8055)
(xy 107.745167 -44.8055) (xy 107.326591 -44.72224) (xy 106.851923 -44.405077) (xy 106.53476 -43.930409) (xy 106.423387 -43.3705)
(xy 105.3845 -43.3705) (xy 105.3845 -43.465439) (xy 105.166034 -43.992862) (xy 104.762362 -44.396534) (xy 104.234939 -44.615)
(xy 103.843287 -44.615) (xy 103.843257 -44.615045) (xy 103.800857 -44.678501) (xy 103.737401 -44.720901) (xy 101.999831 -46.45847)
(xy 101.980982 -46.48668) (xy 102.084473 -46.590171) (xy 102.147929 -46.632571) (xy 102.190329 -46.696027) (xy 102.2188 -46.738637)
(xy 103.702164 -48.222) (xy 104.234939 -48.222) (xy 104.762362 -48.440466) (xy 105.166034 -48.844138) (xy 105.3845 -49.371561)
(xy 105.3845 -49.942439) (xy 105.166034 -50.469862) (xy 104.762362 -50.873534) (xy 104.234939 -51.092) (xy 103.664061 -51.092)
(xy 103.136638 -50.873534) (xy 102.732966 -50.469862) (xy 102.5145 -49.942439) (xy 102.5145 -49.371561) (xy 102.569453 -49.238893)
(xy 101.11553 -47.784969) (xy 101.052071 -47.742567) (xy 100.981202 -47.636504) (xy 100.650199 -47.3055) (xy 87.754302 -47.3055)
(xy 87.2343 -47.825501) (xy 87.2343 -49.205893) (xy 87.644322 -49.615915) (xy 87.6554 -49.64266) (xy 87.666478 -49.615915)
(xy 88.084215 -49.198178) (xy 88.630015 -48.9721) (xy 89.220785 -48.9721) (xy 89.766585 -49.198178) (xy 90.184322 -49.615915)
(xy 90.1954 -49.64266) (xy 90.206478 -49.615915) (xy 90.624215 -49.198178) (xy 91.170015 -48.9721) (xy 91.760785 -48.9721)
(xy 92.306585 -49.198178) (xy 92.724322 -49.615915) (xy 92.741339 -49.657) (xy 94.866387 -49.657) (xy 94.97776 -49.097091)
(xy 95.294923 -48.622423) (xy 95.769591 -48.30526) (xy 96.188167 -48.222) (xy 96.470833 -48.222) (xy 96.889409 -48.30526)
(xy 97.364077 -48.622423) (xy 97.68124 -49.097091) (xy 97.792613 -49.657) (xy 97.68124 -50.216909) (xy 97.364077 -50.691577)
(xy 96.889409 -51.00874) (xy 96.470833 -51.092) (xy 96.188167 -51.092) (xy 95.769591 -51.00874) (xy 95.294923 -50.691577)
(xy 94.97776 -50.216909) (xy 94.866387 -49.657) (xy 92.741339 -49.657) (xy 92.9504 -50.161715) (xy 92.9504 -50.752485)
(xy 92.724322 -51.298285) (xy 92.306585 -51.716022) (xy 91.760785 -51.9421) (xy 91.170015 -51.9421) (xy 90.624215 -51.716022)
(xy 90.206478 -51.298285) (xy 90.1954 -51.27154) (xy 90.184322 -51.298285) (xy 89.766585 -51.716022) (xy 89.220785 -51.9421)
(xy 88.630015 -51.9421) (xy 88.084215 -51.716022) (xy 87.666478 -51.298285) (xy 87.6554 -51.27154) (xy 87.644322 -51.298285)
(xy 87.226585 -51.716022) (xy 86.680785 -51.9421) (xy 86.090015 -51.9421) (xy 85.544215 -51.716022) (xy 85.126478 -51.298285)
(xy 85.1154 -51.27154) (xy 85.104322 -51.298285) (xy 84.686585 -51.716022) (xy 84.140785 -51.9421) (xy 83.550015 -51.9421)
(xy 83.004215 -51.716022) (xy 82.586478 -51.298285) (xy 82.3604 -50.752485) (xy 82.3604 -50.161715) (xy 82.586478 -49.615915)
(xy 83.004215 -49.198178) (xy 83.550015 -48.9721) (xy 84.140785 -48.9721) (xy 84.686585 -49.198178) (xy 85.104322 -49.615915)
(xy 85.1154 -49.64266) (xy 85.126478 -49.615915) (xy 85.544215 -49.198178) (xy 85.714301 -49.127726) (xy 85.7143 -47.585547)
(xy 85.699412 -47.5107) (xy 85.7143 -47.435853) (xy 85.7143 -47.435849) (xy 85.758396 -47.214164) (xy 85.926371 -46.962771)
(xy 85.98983 -46.920369) (xy 86.586948 -46.32325) (xy 84.455457 -44.191758) (xy 84.140785 -44.3221) (xy 83.550015 -44.3221)
(xy 83.004215 -44.096022) (xy 82.586478 -43.678285) (xy 82.3604 -43.132485) (xy 82.3604 -42.541715) (xy 82.586478 -41.995915)
(xy 83.004215 -41.578178) (xy 83.434374 -41.4) (xy 82.483802 -41.4) (xy 81.8495 -42.034301) (xy 81.8495 -51.106153)
(xy 81.864388 -51.181) (xy 81.8495 -51.255847) (xy 81.8495 -51.255852) (xy 81.805404 -51.477537) (xy 81.637429 -51.728929)
(xy 81.573973 -51.771329) (xy 80.470603 -52.874698) (xy 80.4925 -52.927561) (xy 80.4925 -53.498439) (xy 80.274034 -54.025862)
(xy 80.166457 -54.133439) (xy 94.8945 -54.133439) (xy 94.8945 -53.562561) (xy 95.112966 -53.035138) (xy 95.516638 -52.631466)
(xy 96.044061 -52.413) (xy 96.614939 -52.413) (xy 97.142362 -52.631466) (xy 97.546034 -53.035138) (xy 97.7645 -53.562561)
(xy 97.7645 -53.848) (xy 102.486387 -53.848) (xy 102.59776 -53.288091) (xy 102.914923 -52.813423) (xy 103.389591 -52.49626)
(xy 103.808167 -52.413) (xy 104.090833 -52.413) (xy 104.509409 -52.49626) (xy 104.984077 -52.813423) (xy 105.285 -53.263787)
(xy 105.285 -51.509847) (xy 105.270112 -51.435) (xy 105.285 -51.360153) (xy 105.285 -51.360149) (xy 105.329096 -51.138464)
(xy 105.497071 -50.887071) (xy 105.56053 -50.844669) (xy 106.424312 -49.980886) (xy 106.359887 -49.657) (xy 106.47126 -49.097091)
(xy 106.788423 -48.622423) (xy 107.263091 -48.30526) (xy 107.681667 -48.222) (xy 107.964333 -48.222) (xy 108.382909 -48.30526)
(xy 108.857577 -48.622423) (xy 109.17474 -49.097091) (xy 109.286113 -49.657) (xy 109.229336 -49.942439) (xy 114.008 -49.942439)
(xy 114.008 -49.371561) (xy 114.226466 -48.844138) (xy 114.630138 -48.440466) (xy 115.157561 -48.222) (xy 115.728439 -48.222)
(xy 116.255862 -48.440466) (xy 116.659534 -48.844138) (xy 116.878 -49.371561) (xy 116.878 -49.942439) (xy 116.659534 -50.469862)
(xy 116.255862 -50.873534) (xy 115.728439 -51.092) (xy 115.157561 -51.092) (xy 114.630138 -50.873534) (xy 114.226466 -50.469862)
(xy 114.008 -49.942439) (xy 109.229336 -49.942439) (xy 109.17474 -50.216909) (xy 108.857577 -50.691577) (xy 108.382909 -51.00874)
(xy 107.964333 -51.092) (xy 107.681667 -51.092) (xy 107.499114 -51.055688) (xy 106.805 -51.749801) (xy 106.805 -52.709604)
(xy 107.010138 -52.504466) (xy 107.537561 -52.286) (xy 108.108439 -52.286) (xy 108.635862 -52.504466) (xy 109.039534 -52.908138)
(xy 109.258 -53.435561) (xy 109.258 -53.721) (xy 113.979887 -53.721) (xy 114.09126 -53.161091) (xy 114.408423 -52.686423)
(xy 114.883091 -52.36926) (xy 115.301667 -52.286) (xy 115.584333 -52.286) (xy 116.002909 -52.36926) (xy 116.477577 -52.686423)
(xy 116.79474 -53.161091) (xy 116.906113 -53.721) (xy 116.79474 -54.280909) (xy 116.477577 -54.755577) (xy 116.002909 -55.07274)
(xy 115.584333 -55.156) (xy 115.301667 -55.156) (xy 114.883091 -55.07274) (xy 114.408423 -54.755577) (xy 114.09126 -54.280909)
(xy 113.979887 -53.721) (xy 109.258 -53.721) (xy 109.258 -54.006439) (xy 109.039534 -54.533862) (xy 108.635862 -54.937534)
(xy 108.108439 -55.156) (xy 107.537561 -55.156) (xy 107.010138 -54.937534) (xy 106.805 -54.732396) (xy 106.805 -58.142653)
(xy 106.819888 -58.2175) (xy 106.805 -58.292347) (xy 106.805 -58.292352) (xy 106.760904 -58.514037) (xy 106.592929 -58.765429)
(xy 106.529473 -58.807829) (xy 106.032059 -59.305243) (xy 107.447 -59.305243) (xy 107.447 -58.296757) (xy 107.83293 -57.365038)
(xy 108.546038 -56.65193) (xy 109.477757 -56.266) (xy 110.486243 -56.266) (xy 111.417962 -56.65193) (xy 112.13107 -57.365038)
(xy 112.517 -58.296757) (xy 112.517 -59.305243) (xy 112.13107 -60.236962) (xy 111.417962 -60.95007) (xy 110.486243 -61.336)
(xy 109.477757 -61.336) (xy 108.546038 -60.95007) (xy 107.83293 -60.236962) (xy 107.447 -59.305243) (xy 106.032059 -59.305243)
(xy 105.797831 -59.53947) (xy 105.755429 -59.602929) (xy 105.570878 -59.726242) (xy 105.555657 -59.802765) (xy 105.415309 -60.012809)
(xy 105.205265 -60.153157) (xy 104.9575 -60.20244) (xy 103.9575 -60.20244) (xy 103.709735 -60.153157) (xy 103.499691 -60.012809)
(xy 103.359343 -59.802765) (xy 103.31006 -59.555) (xy 103.31006 -58.555) (xy 103.359343 -58.307235) (xy 103.432499 -58.19775)
(xy 103.359343 -58.088265) (xy 103.31006 -57.8405) (xy 103.31006 -56.8405) (xy 103.359343 -56.592735) (xy 103.499691 -56.382691)
(xy 103.6975 -56.250518) (xy 103.697501 -55.260987) (xy 103.389591 -55.19974) (xy 102.914923 -54.882577) (xy 102.59776 -54.407909)
(xy 102.486387 -53.848) (xy 97.7645 -53.848) (xy 97.7645 -54.133439) (xy 97.546034 -54.660862) (xy 97.142362 -55.064534)
(xy 96.614939 -55.283) (xy 96.044061 -55.283) (xy 95.516638 -55.064534) (xy 95.112966 -54.660862) (xy 94.8945 -54.133439)
(xy 80.166457 -54.133439) (xy 79.870362 -54.429534) (xy 79.342939 -54.648) (xy 78.772061 -54.648) (xy 78.244638 -54.429534)
(xy 77.840966 -54.025862) (xy 77.81907 -53.973) (xy 76.99393 -53.973) (xy 76.972034 -54.025862) (xy 76.568362 -54.429534)
(xy 76.040939 -54.648) (xy 75.470061 -54.648) (xy 74.942638 -54.429534) (xy 74.538966 -54.025862) (xy 74.51707 -53.973)
(xy 72.707802 -53.973) (xy 72.358645 -54.322157) (xy 72.46828 -54.367569) (xy 72.585711 -54.485) (xy 73.204153 -54.485)
(xy 73.279 -54.470112) (xy 73.353847 -54.485) (xy 73.353852 -54.485) (xy 73.575537 -54.529096) (xy 73.826929 -54.697071)
(xy 73.869331 -54.760529) (xy 74.096292 -54.98749) (xy 81.580643 -54.98749) (xy 81.65549 -54.972602) (xy 81.730337 -54.98749)
(xy 81.730342 -54.98749) (xy 81.952027 -55.031586) (xy 82.203419 -55.199561) (xy 82.245821 -55.26302) (xy 84.325302 -57.3425)
(xy 90.349153 -57.3425) (xy 90.424 -57.327612) (xy 90.498847 -57.3425) (xy 90.498852 -57.3425) (xy 90.720537 -57.386596)
(xy 90.971929 -57.554571) (xy 91.014331 -57.618029) (xy 91.289302 -57.893) (xy 91.455374 -57.893) (xy 91.83578 -58.050569)
(xy 92.126931 -58.34172) (xy 92.2845 -58.722126) (xy 92.2845 -59.133874) (xy 92.126931 -59.51428) (xy 91.83578 -59.805431)
(xy 91.5225 -59.935196) (xy 91.5225 -60.213374) (xy 91.364931 -60.59378) (xy 91.07378 -60.884931) (xy 90.693374 -61.0425)
(xy 90.281626 -61.0425) (xy 89.90122 -60.884931) (xy 89.610069 -60.59378) (xy 89.4525 -60.213374) (xy 89.4525 -59.801626)
(xy 89.550475 -59.565093) (xy 89.454096 -59.420851) (xy 89.444081 -59.3705) (xy 83.831346 -59.3705) (xy 83.756499 -59.385388)
(xy 83.681652 -59.3705) (xy 83.681648 -59.3705) (xy 83.459963 -59.326404) (xy 83.208571 -59.158429) (xy 83.166171 -59.094973)
(xy 82.57353 -58.502331) (xy 82.573527 -58.502329) (xy 81.028699 -56.9575) (xy 78.576532 -56.9575) (xy 78.98407 -57.365038)
(xy 79.37 -58.296757) (xy 79.37 -59.305243) (xy 78.98407 -60.236962) (xy 78.386032 -60.835) (xy 86.286544 -60.835)
(xy 86.450278 -60.725596) (xy 86.593103 -60.697186) (xy 86.72622 -60.564069) (xy 87.106626 -60.4065) (xy 87.518374 -60.4065)
(xy 87.89878 -60.564069) (xy 88.189931 -60.85522) (xy 88.3475 -61.235626) (xy 88.3475 -61.4065) (xy 90.730153 -61.4065)
(xy 90.805 -61.391612) (xy 90.879847 -61.4065) (xy 90.879852 -61.4065) (xy 91.101537 -61.450596) (xy 91.352929 -61.618571)
(xy 91.395331 -61.682029) (xy 92.072302 -62.359) (xy 98.229289 -62.359) (xy 98.34672 -62.241569) (xy 98.727126 -62.084)
(xy 99.138874 -62.084) (xy 99.51928 -62.241569) (xy 99.636711 -62.359) (xy 107.303653 -62.359) (xy 107.3785 -62.344112)
(xy 107.453347 -62.359) (xy 107.453352 -62.359) (xy 107.675037 -62.403096) (xy 107.926429 -62.571071) (xy 107.968831 -62.634529)
(xy 108.204 -62.869698) (xy 108.24867 -62.825028) (xy 108.291071 -62.761571) (xy 108.542463 -62.593596) (xy 108.764148 -62.5495)
(xy 108.764152 -62.5495) (xy 108.839 -62.534612) (xy 108.913848 -62.5495) (xy 113.672084 -62.5495) (xy 113.33272 -62.408931)
(xy 113.041569 -62.11778) (xy 112.884 -61.737374) (xy 112.884 -61.325626) (xy 113.041569 -60.94522) (xy 113.33272 -60.654069)
(xy 113.713126 -60.4965) (xy 113.87963 -60.4965) (xy 113.994069 -60.22022) (xy 114.28522 -59.929069) (xy 114.665626 -59.7715)
(xy 115.077374 -59.7715) (xy 115.45778 -59.929069) (xy 115.523705 -59.994994) (xy 124.589 -50.929698) (xy 124.589 -50.551211)
(xy 124.471569 -50.43378) (xy 124.314 -50.053374) (xy 124.314 -49.641626) (xy 124.471569 -49.26122) (xy 124.76272 -48.970069)
(xy 125.143126 -48.8125) (xy 125.167304 -48.8125) (xy 125.297069 -48.49922) (xy 125.58822 -48.208069) (xy 125.968626 -48.0505)
(xy 126.380374 -48.0505) (xy 126.76078 -48.208069) (xy 127 -48.447289) (xy 127.17572 -48.271569) (xy 127.556126 -48.114)
(xy 127.967874 -48.114) (xy 128.34828 -48.271569) (xy 128.639431 -48.56272) (xy 128.759503 -48.852601) (xy 128.917638 -48.694466)
(xy 129.445061 -48.476) (xy 129.814369 -48.476) (xy 130.3735 -47.916868) (xy 130.373501 -43.58722) (xy 130.290409 -43.64274)
(xy 129.871833 -43.726) (xy 129.589167 -43.726) (xy 129.170591 -43.64274) (xy 128.695923 -43.325577) (xy 128.37876 -42.850909)
(xy 128.267387 -42.291) (xy 128.37876 -41.731091) (xy 128.695923 -41.256423) (xy 129.170591 -40.93926) (xy 129.589167 -40.856)
(xy 129.871833 -40.856) (xy 130.290409 -40.93926) (xy 130.637233 -41.171) (xy 130.690212 -41.091711) (xy 131.065646 -40.840854)
(xy 131.5085 -40.752765) (xy 131.628384 -40.776611) (xy 131.787518 -40.392429) (xy 132.134929 -40.045018) (xy 132.376352 -39.945017)
(xy 134.055889 -38.265479) (xy 134.119211 -38.170711) (xy 134.432421 -37.961431) (xy 134.494645 -37.919854) (xy 134.937499 -37.831765)
(xy 135.049282 -37.854) (xy 138.732283 -37.854) (xy 139.063355 -37.919854) (xy 139.438789 -38.170711) (xy 139.689646 -38.546145)
(xy 139.769623 -38.948222) (xy 142.637 -38.948222) (xy 142.637 -38.297778) (xy 142.885914 -37.696847) (xy 143.345847 -37.236914)
(xy 143.946778 -36.988) (xy 144.597222 -36.988) (xy 145.198153 -37.236914) (xy 145.658086 -37.696847) (xy 145.907 -38.297778)
(xy 145.907 -38.948222) (xy 145.658086 -39.549153) (xy 145.198153 -40.009086) (xy 144.597222 -40.258) (xy 143.946778 -40.258)
(xy 143.345847 -40.009086) (xy 142.885914 -39.549153) (xy 142.637 -38.948222) (xy 139.769623 -38.948222) (xy 139.777735 -38.989)
(xy 139.689646 -39.431855) (xy 139.438789 -39.807289) (xy 139.063355 -40.058146) (xy 138.732283 -40.124) (xy 135.407632 -40.124)
(xy 133.981483 -41.550148) (xy 133.881482 -41.791571) (xy 133.534071 -42.138982) (xy 133.080157 -42.327) (xy 132.6435 -42.327)
(xy 132.6435 -46.000422) (xy 137.085077 -41.558844) (xy 137.134451 -41.484951) (xy 137.208344 -41.435577) (xy 137.208345 -41.435576)
(xy 137.422616 -41.292404) (xy 137.42719 -41.289348) (xy 137.685335 -41.238) (xy 137.685339 -41.238) (xy 137.7725 -41.220663)
(xy 137.859661 -41.238) (xy 142.868868 -41.238) (xy 142.885914 -41.196847) (xy 143.345847 -40.736914) (xy 143.946778 -40.488)
(xy 144.597222 -40.488) (xy 145.198153 -40.736914) (xy 145.658086 -41.196847) (xy 145.907 -41.797778) (xy 145.907 -42.448222)
(xy 145.658086 -43.049153) (xy 145.198153 -43.509086) (xy 144.597222 -43.758) (xy 143.946778 -43.758) (xy 143.345847 -43.509086)
(xy 142.885914 -43.049153) (xy 142.868868 -43.008) (xy 138.139079 -43.008) (xy 132.64231 -48.504768) (xy 132.577646 -48.829855)
(xy 132.503317 -48.941096) (xy 132.326789 -49.205289) (xy 132.232021 -49.268611) (xy 131.06743 -50.433202) (xy 130.947034 -50.723862)
(xy 130.929 -50.741896) (xy 130.929 -51.121088) (xy 130.951235 -51.232871) (xy 130.863146 -51.675725) (xy 130.827567 -51.728973)
(xy 130.612289 -52.051159) (xy 130.517522 -52.11448) (xy 126.990628 -55.641374) (xy 130.0925 -55.641374) (xy 130.0925 -55.229626)
(xy 130.230796 -54.89575) (xy 130.0925 -54.561874) (xy 130.0925 -54.150126) (xy 130.250069 -53.76972) (xy 130.54122 -53.478569)
(xy 130.921626 -53.321) (xy 131.333374 -53.321) (xy 131.71378 -53.478569) (xy 131.767711 -53.5325) (xy 137.408789 -53.5325)
(xy 137.52622 -53.415069) (xy 137.906626 -53.2575) (xy 138.318374 -53.2575) (xy 138.69878 -53.415069) (xy 138.989931 -53.70622)
(xy 139.1475 -54.086626) (xy 139.1475 -54.498374) (xy 138.996053 -54.864) (xy 139.1475 -55.229626) (xy 139.1475 -55.641374)
(xy 138.989931 -56.02178) (xy 138.69878 -56.312931) (xy 138.318374 -56.4705) (xy 137.906626 -56.4705) (xy 137.52622 -56.312931)
(xy 137.408789 -56.1955) (xy 131.831211 -56.1955) (xy 131.71378 -56.312931) (xy 131.333374 -56.4705) (xy 130.921626 -56.4705)
(xy 130.54122 -56.312931) (xy 130.250069 -56.02178) (xy 130.0925 -55.641374) (xy 126.990628 -55.641374) (xy 123.326759 -59.305243)
(xy 143.896 -59.305243) (xy 143.896 -58.296757) (xy 144.28193 -57.365038) (xy 144.995038 -56.65193) (xy 145.926757 -56.266)
(xy 146.935243 -56.266) (xy 147.866962 -56.65193) (xy 148.58007 -57.365038) (xy 148.966 -58.296757) (xy 148.966 -59.305243)
(xy 148.58007 -60.236962) (xy 147.866962 -60.95007) (xy 146.935243 -61.336) (xy 145.926757 -61.336) (xy 144.995038 -60.95007)
(xy 144.28193 -60.236962) (xy 143.896 -59.305243) (xy 123.326759 -59.305243) (xy 120.775001 -61.857) (xy 140.002283 -61.857)
(xy 140.333355 -61.922854) (xy 140.708789 -62.173711) (xy 140.959646 -62.549145) (xy 141.047735 -62.992) (xy 140.959646 -63.434855)
(xy 140.708789 -63.810289) (xy 140.686024 -63.8255) (xy 143.443717 -63.8255) (xy 143.5555 -63.803265) (xy 143.667283 -63.8255)
(xy 143.998355 -63.891354) (xy 144.373789 -64.142211) (xy 144.437112 -64.236981) (xy 145.503524 -65.303391) (xy 145.598289 -65.366711)
(xy 145.778655 -65.636647) (xy 145.816035 -65.692592) (xy 145.902765 -65.709843) (xy 146.112809 -65.850191) (xy 146.253157 -66.060235)
(xy 146.30244 -66.308) (xy 146.30244 -68.058) (xy 146.253157 -68.305765) (xy 146.112809 -68.515809) (xy 145.902765 -68.656157)
(xy 145.655 -68.70544) (xy 143.905 -68.70544) (xy 143.657235 -68.656157) (xy 143.447191 -68.515809) (xy 143.306843 -68.305765)
(xy 143.25756 -68.058) (xy 143.25756 -66.308) (xy 143.264247 -66.274379) (xy 143.085368 -66.0955) (xy 119.839717 -66.0955)
(xy 119.508645 -66.029646) (xy 119.133211 -65.778789) (xy 118.882354 -65.403355) (xy 118.794265 -64.9605) (xy 118.882354 -64.517645)
(xy 119.133211 -64.142211) (xy 119.381589 -63.97625) (xy 119.133211 -63.810289) (xy 119.008442 -63.623559) (xy 117.328983 -65.303018)
(xy 117.265659 -65.397789) (xy 116.890225 -65.648646) (xy 116.559153 -65.7145) (xy 116.44737 -65.736735) (xy 116.335587 -65.7145)
(xy 114.673 -65.7145) (xy 114.673 -66.880718) (xy 114.695235 -66.992501) (xy 114.607146 -67.435355) (xy 114.590297 -67.460571)
(xy 114.356289 -67.810789) (xy 114.261521 -67.874111) (xy 113.763274 -68.372358) (xy 117.3245 -68.372358) (xy 117.3245 -67.771642)
(xy 117.554384 -67.216654) (xy 117.979154 -66.791884) (xy 118.534142 -66.562) (xy 119.134858 -66.562) (xy 119.689846 -66.791884)
(xy 120.114616 -67.216654) (xy 120.3445 -67.771642) (xy 120.3445 -68.372358) (xy 120.8245 -68.372358) (xy 120.8245 -67.771642)
(xy 121.054384 -67.216654) (xy 121.479154 -66.791884) (xy 122.034142 -66.562) (xy 122.634858 -66.562) (xy 123.189846 -66.791884)
(xy 123.614616 -67.216654) (xy 123.8445 -67.771642) (xy 123.8445 -68.372358) (xy 124.3245 -68.372358) (xy 124.3245 -67.771642)
(xy 124.554384 -67.216654) (xy 124.979154 -66.791884) (xy 125.534142 -66.562) (xy 126.134858 -66.562) (xy 126.689846 -66.791884)
(xy 126.907902 -67.00994) (xy 128.452045 -67.00994) (xy 128.535384 -66.756047) (xy 129.099806 -66.55041) (xy 129.699958 -66.576421)
(xy 130.133616 -66.756047) (xy 130.216955 -67.00994) (xy 129.3345 -67.892395) (xy 128.452045 -67.00994) (xy 126.907902 -67.00994)
(xy 127.114616 -67.216654) (xy 127.3445 -67.771642) (xy 127.3445 -68.306694) (xy 127.81291 -68.306694) (xy 127.838921 -67.706542)
(xy 128.018547 -67.272884) (xy 128.27244 -67.189545) (xy 129.154895 -68.072) (xy 129.514105 -68.072) (xy 130.39656 -67.189545)
(xy 130.650453 -67.272884) (xy 130.85609 -67.837306) (xy 130.832901 -68.372358) (xy 131.3245 -68.372358) (xy 131.3245 -67.771642)
(xy 131.554384 -67.216654) (xy 131.979154 -66.791884) (xy 132.534142 -66.562) (xy 133.134858 -66.562) (xy 133.689846 -66.791884)
(xy 134.114616 -67.216654) (xy 134.3445 -67.771642) (xy 134.3445 -68.372358) (xy 134.114616 -68.927346) (xy 134.094962 -68.947)
(xy 134.81206 -68.947) (xy 134.81206 -67.197) (xy 134.861343 -66.949235) (xy 135.001691 -66.739191) (xy 135.211735 -66.598843)
(xy 135.4595 -66.54956) (xy 137.2095 -66.54956) (xy 137.457265 -66.598843) (xy 137.667309 -66.739191) (xy 137.807657 -66.949235)
(xy 137.85694 -67.197) (xy 137.85694 -68.947) (xy 137.807657 -69.194765) (xy 137.667309 -69.404809) (xy 137.457265 -69.545157)
(xy 137.2095 -69.59444) (xy 135.4595 -69.59444) (xy 135.211735 -69.545157) (xy 135.001691 -69.404809) (xy 134.861343 -69.194765)
(xy 134.81206 -68.947) (xy 134.094962 -68.947) (xy 133.689846 -69.352116) (xy 133.134858 -69.582) (xy 132.534142 -69.582)
(xy 131.979154 -69.352116) (xy 131.554384 -68.927346) (xy 131.3245 -68.372358) (xy 130.832901 -68.372358) (xy 130.830079 -68.437458)
(xy 130.650453 -68.871116) (xy 130.39656 -68.954455) (xy 129.514105 -68.072) (xy 129.154895 -68.072) (xy 128.27244 -68.954455)
(xy 128.018547 -68.871116) (xy 127.81291 -68.306694) (xy 127.3445 -68.306694) (xy 127.3445 -68.372358) (xy 127.114616 -68.927346)
(xy 126.907902 -69.13406) (xy 128.452045 -69.13406) (xy 129.3345 -68.251605) (xy 130.216955 -69.13406) (xy 130.133616 -69.387953)
(xy 129.569194 -69.59359) (xy 128.969042 -69.567579) (xy 128.535384 -69.387953) (xy 128.452045 -69.13406) (xy 126.907902 -69.13406)
(xy 126.689846 -69.352116) (xy 126.134858 -69.582) (xy 125.534142 -69.582) (xy 124.979154 -69.352116) (xy 124.554384 -68.927346)
(xy 124.3245 -68.372358) (xy 123.8445 -68.372358) (xy 123.614616 -68.927346) (xy 123.189846 -69.352116) (xy 122.634858 -69.582)
(xy 122.034142 -69.582) (xy 121.479154 -69.352116) (xy 121.054384 -68.927346) (xy 120.8245 -68.372358) (xy 120.3445 -68.372358)
(xy 120.114616 -68.927346) (xy 119.689846 -69.352116) (xy 119.134858 -69.582) (xy 118.534142 -69.582) (xy 117.979154 -69.352116)
(xy 117.554384 -68.927346) (xy 117.3245 -68.372358) (xy 113.763274 -68.372358) (xy 112.832113 -69.303518) (xy 112.768789 -69.398289)
(xy 112.393355 -69.649146) (xy 112.062283 -69.715) (xy 111.9505 -69.737235) (xy 111.838717 -69.715) (xy 110.515632 -69.715)
(xy 110.355 -69.875631) (xy 110.355 -71.008222) (xy 143.145 -71.008222) (xy 143.145 -70.357778) (xy 143.393914 -69.756847)
(xy 143.853847 -69.296914) (xy 144.454778 -69.048) (xy 145.105222 -69.048) (xy 145.706153 -69.296914) (xy 146.166086 -69.756847)
(xy 146.415 -70.357778) (xy 146.415 -71.008222) (xy 146.166086 -71.609153) (xy 145.706153 -72.069086) (xy 145.105222 -72.318)
(xy 144.454778 -72.318) (xy 143.853847 -72.069086) (xy 143.393914 -71.609153) (xy 143.145 -71.008222) (xy 110.355 -71.008222)
(xy 110.355 -72.999369) (xy 111.816108 -74.460476) (xy 112.003646 -74.741145) (xy 112.010612 -74.776166) (xy 112.489947 -75.2555)
(xy 112.697283 -75.2555) (xy 113.028355 -75.321354) (xy 113.403789 -75.572211) (xy 113.654646 -75.947645) (xy 113.742735 -76.3905)
(xy 113.654646 -76.833355) (xy 113.403789 -77.208789) (xy 113.028355 -77.459646) (xy 112.697283 -77.5255) (xy 112.131597 -77.5255)
(xy 112.019814 -77.547735) (xy 111.706304 -77.485374) (xy 111.57696 -77.459646) (xy 111.201526 -77.208789) (xy 111.138204 -77.114021)
(xy 110.052892 -76.028708) (xy 109.865354 -75.748039) (xy 109.858388 -75.71302) (xy 108.964 -74.818631) (xy 108.964 -79.961874)
(xy 132.315 -79.961874) (xy 132.315 -79.550126) (xy 132.472569 -79.16972) (xy 132.76372 -78.878569) (xy 133.144126 -78.721)
(xy 133.555874 -78.721) (xy 133.918007 -78.871) (xy 134.037522 -78.871) (xy 136.6648 -76.243721) (xy 136.6648 -75.774861)
(xy 136.883266 -75.247438) (xy 137.286938 -74.843766) (xy 137.814361 -74.6253) (xy 138.385239 -74.6253) (xy 138.912662 -74.843766)
(xy 139.244196 -75.1753) (xy 143.070139 -75.1753) (xy 143.1573 -75.157963) (xy 143.244461 -75.1753) (xy 143.244465 -75.1753)
(xy 143.50261 -75.226648) (xy 143.529128 -75.244367) (xy 143.393914 -75.109153) (xy 143.145 -74.508222) (xy 143.145 -73.857778)
(xy 143.393914 -73.256847) (xy 143.853847 -72.796914) (xy 144.454778 -72.548) (xy 145.105222 -72.548) (xy 145.706153 -72.796914)
(xy 146.166086 -73.256847) (xy 146.415 -73.857778) (xy 146.415 -74.508222) (xy 146.166086 -75.109153) (xy 145.706153 -75.569086)
(xy 145.105222 -75.818) (xy 144.454778 -75.818) (xy 143.96279 -75.614212) (xy 144.413625 -76.065046) (xy 144.454778 -76.048)
(xy 145.105222 -76.048) (xy 145.706153 -76.296914) (xy 146.166086 -76.756847) (xy 146.415 -77.357778) (xy 146.415 -78.008222)
(xy 146.166086 -78.609153) (xy 145.706153 -79.069086) (xy 145.105222 -79.318) (xy 144.454778 -79.318) (xy 143.853847 -79.069086)
(xy 143.393914 -78.609153) (xy 143.145 -78.008222) (xy 143.145 -77.357778) (xy 143.162046 -77.316625) (xy 142.790722 -76.9453)
(xy 139.244196 -76.9453) (xy 138.912662 -77.276834) (xy 138.385239 -77.4953) (xy 137.916379 -77.4953) (xy 135.091525 -80.320153)
(xy 135.042149 -80.394049) (xy 134.74941 -80.589652) (xy 134.491265 -80.641) (xy 134.491261 -80.641) (xy 134.4041 -80.658337)
(xy 134.316939 -80.641) (xy 133.918007 -80.641) (xy 133.555874 -80.791) (xy 133.144126 -80.791) (xy 132.76372 -80.633431)
(xy 132.472569 -80.34228) (xy 132.315 -79.961874) (xy 108.964 -79.961874) (xy 108.964 -81.90191) (xy 108.984124 -81.915356)
(xy 109.108876 -82.102061) (xy 109.422474 -82.231957) (xy 109.713625 -82.523108) (xy 109.871194 -82.903514) (xy 109.871194 -83.315262)
(xy 109.713625 -83.695668) (xy 109.422474 -83.986819) (xy 109.042068 -84.144388) (xy 108.731 -84.144388) (xy 108.731 -84.406874)
(xy 108.573431 -84.78728) (xy 108.28228 -85.078431) (xy 107.901874 -85.236) (xy 107.490126 -85.236) (xy 107.15625 -85.097704)
(xy 106.822374 -85.236) (xy 106.410626 -85.236) (xy 106.03022 -85.078431) (xy 105.739069 -84.78728) (xy 105.5815 -84.406874)
(xy 105.5815 -84.240801) (xy 105.560528 -84.219829) (xy 105.497072 -84.177429) (xy 105.454672 -84.113973) (xy 105.454671 -84.113972)
(xy 105.329097 -83.926037) (xy 105.270112 -83.6295) (xy 105.285001 -83.554649) (xy 105.285 -82.497852) (xy 105.285 -82.370851)
(xy 105.285001 -67.124712) (xy 105.183673 -67.023384) (xy 105.004534 -67.455862) (xy 104.600862 -67.859534) (xy 104.471784 -67.913)
(xy 104.600862 -67.966466) (xy 105.004534 -68.370138) (xy 105.223 -68.897561) (xy 105.223 -69.468439) (xy 105.004534 -69.995862)
(xy 104.600862 -70.399534) (xy 104.471784 -70.453) (xy 104.600862 -70.506466) (xy 105.004534 -70.910138) (xy 105.223 -71.437561)
(xy 105.223 -72.008439) (xy 105.004534 -72.535862) (xy 104.600862 -72.939534) (xy 104.073439 -73.158) (xy 103.502561 -73.158)
(xy 102.975138 -72.939534) (xy 102.571466 -72.535862) (xy 102.518 -72.406784) (xy 102.464534 -72.535862) (xy 102.060862 -72.939534)
(xy 101.533439 -73.158) (xy 100.962561 -73.158) (xy 100.435138 -72.939534) (xy 100.031466 -72.535862) (xy 99.978 -72.406784)
(xy 99.924534 -72.535862) (xy 99.520862 -72.939534) (xy 98.993439 -73.158) (xy 98.422561 -73.158) (xy 97.895138 -72.939534)
(xy 97.491466 -72.535862) (xy 97.438 -72.406784) (xy 97.384534 -72.535862) (xy 96.980862 -72.939534) (xy 96.453439 -73.158)
(xy 95.882561 -73.158) (xy 95.355138 -72.939534) (xy 94.951466 -72.535862) (xy 94.898 -72.406784) (xy 94.844534 -72.535862)
(xy 94.440862 -72.939534) (xy 93.913439 -73.158) (xy 93.342561 -73.158) (xy 92.815138 -72.939534) (xy 92.411466 -72.535862)
(xy 92.358 -72.406784) (xy 92.304534 -72.535862) (xy 91.900862 -72.939534) (xy 91.373439 -73.158) (xy 90.802561 -73.158)
(xy 90.275138 -72.939534) (xy 89.871466 -72.535862) (xy 89.818 -72.406784) (xy 89.764534 -72.535862) (xy 89.360862 -72.939534)
(xy 88.833439 -73.158) (xy 88.262561 -73.158) (xy 87.735138 -72.939534) (xy 87.331466 -72.535862) (xy 87.278 -72.406784)
(xy 87.224534 -72.535862) (xy 86.820862 -72.939534) (xy 86.293439 -73.158) (xy 85.722561 -73.158) (xy 85.195138 -72.939534)
(xy 84.791466 -72.535862) (xy 84.738 -72.406784) (xy 84.684534 -72.535862) (xy 84.280862 -72.939534) (xy 83.753439 -73.158)
(xy 83.182561 -73.158) (xy 82.655138 -72.939534) (xy 82.251466 -72.535862) (xy 82.198 -72.406784) (xy 82.144534 -72.535862)
(xy 81.740862 -72.939534) (xy 81.213439 -73.158) (xy 80.642561 -73.158) (xy 80.115138 -72.939534) (xy 79.711466 -72.535862)
(xy 79.493 -72.008439) (xy 79.493 -71.437561) (xy 79.711466 -70.910138) (xy 80.115138 -70.506466) (xy 80.244216 -70.453)
(xy 80.115138 -70.399534) (xy 79.711466 -69.995862) (xy 79.493 -69.468439) (xy 79.493 -68.897561) (xy 79.711466 -68.370138)
(xy 80.115138 -67.966466) (xy 80.168 -67.94457) (xy 80.168 -67.863847) (xy 80.153112 -67.789) (xy 80.168 -67.714153)
(xy 80.168 -67.714149) (xy 80.212096 -67.492464) (xy 80.380071 -67.241071) (xy 80.443529 -67.198669) (xy 81.388173 -66.254025)
(xy 81.430571 -66.190571) (xy 81.494024 -66.148173) (xy 81.494026 -66.148171) (xy 81.578238 -66.091903) (xy 81.681963 -66.022596)
(xy 81.903648 -65.9785) (xy 81.903652 -65.9785) (xy 81.978499 -65.963612) (xy 82.053346 -65.9785) (xy 90.553001 -65.9785)
(xy 90.553001 -65.719803) (xy 89.876198 -65.043) (xy 89.710126 -65.043) (xy 89.32972 -64.885431) (xy 89.038569 -64.59428)
(xy 88.881 -64.213874) (xy 88.881 -64.006) (xy 75.846032 -64.006) (xy 76.31707 -64.477038) (xy 76.703 -65.408757)
(xy 76.703 -66.417243) (xy 76.31707 -67.348962) (xy 75.603962 -68.06207) (xy 74.672243 -68.448) (xy 73.663757 -68.448)
(xy 72.732038 -68.06207) (xy 72.01893 -67.348962) (xy 71.633 -66.417243) (xy 71.633 -65.408757) (xy 72.01893 -64.477038)
(xy 72.732038 -63.76393) (xy 73.220748 -63.5615) (xy 59.250711 -63.5615) (xy 59.13328 -63.678931) (xy 58.752874 -63.8365)
(xy 58.341126 -63.8365) (xy 57.96072 -63.678931) (xy 57.669569 -63.38778) (xy 57.512 -63.007374) (xy 57.512 -62.595626)
(xy 57.669569 -62.21522) (xy 57.96072 -61.924069) (xy 58.146781 -61.847) (xy 55.385846 -61.847) (xy 55.310999 -61.861888)
(xy 55.236152 -61.847) (xy 55.236148 -61.847) (xy 55.014463 -61.802904) (xy 54.763071 -61.634929) (xy 54.720671 -61.571473)
(xy 52.633302 -59.484103) (xy 52.580439 -59.506) (xy 52.009561 -59.506) (xy 51.482138 -59.287534) (xy 51.078466 -58.883862)
(xy 51.025 -58.754784) (xy 50.971534 -58.883862) (xy 50.567862 -59.287534) (xy 50.040439 -59.506) (xy 49.469561 -59.506)
(xy 48.942138 -59.287534) (xy 48.538466 -58.883862) (xy 48.485 -58.754784) (xy 48.431534 -58.883862) (xy 48.027862 -59.287534)
(xy 47.500439 -59.506) (xy 46.929561 -59.506) (xy 46.402138 -59.287534) (xy 45.998466 -58.883862) (xy 45.78 -58.356439)
(xy 45.78 -57.785561) (xy 45.998466 -57.258138) (xy 46.402138 -56.854466) (xy 46.531216 -56.801) (xy 46.402138 -56.747534)
(xy 45.998466 -56.343862) (xy 45.78 -55.816439) (xy 45.78 -55.245561) (xy 45.998466 -54.718138) (xy 46.402138 -54.314466)
(xy 46.531216 -54.261) (xy 46.402138 -54.207534) (xy 45.998466 -53.803862) (xy 45.78 -53.276439) (xy 45.78 -52.705561)
(xy 45.998466 -52.178138) (xy 46.402138 -51.774466) (xy 46.929561 -51.556) (xy 47.500439 -51.556) (xy 48.027862 -51.774466)
(xy 48.431534 -52.178138) (xy 48.485 -52.307216) (xy 48.538466 -52.178138) (xy 48.942138 -51.774466) (xy 49.469561 -51.556)
(xy 50.040439 -51.556) (xy 50.567862 -51.774466) (xy 50.971534 -52.178138) (xy 51.025 -52.307216) (xy 51.078466 -52.178138)
(xy 51.482138 -51.774466) (xy 52.009561 -51.556) (xy 52.580439 -51.556) (xy 53.107862 -51.774466) (xy 53.511534 -52.178138)
(xy 53.565 -52.307216) (xy 53.618466 -52.178138) (xy 54.022138 -51.774466) (xy 54.549561 -51.556) (xy 55.120439 -51.556)
(xy 55.647862 -51.774466) (xy 56.051534 -52.178138) (xy 56.105 -52.307216) (xy 56.158466 -52.178138) (xy 56.562138 -51.774466)
(xy 56.951772 -51.613074) (xy 46.88653 -41.547831) (xy 46.823071 -41.505429) (xy 46.655096 -41.254036) (xy 46.611 -41.032351)
(xy 46.611 -41.032347) (xy 46.596112 -40.9575) (xy 46.611 -40.882653) (xy 46.611001 -34.340422) (xy 46.416855 -34.470146)
(xy 46.085783 -34.536) (xy 33.291058 -34.536) (xy 33.225874 -34.563) (xy 32.814126 -34.563) (xy 32.43372 -34.405431)
(xy 32.142569 -34.11428) (xy 31.985 -33.733874) (xy 31.985 -33.322126) (xy 32.024351 -33.227124) (xy 32.077854 -32.958145)
(xy 32.328711 -32.582711) (xy 32.704145 -32.331854) (xy 33.035217 -32.266) (xy 46.085783 -32.266) (xy 46.199897 -32.288699)
(xy 45.913199 -32.002) (xy 28.707211 -32.002) (xy 28.58978 -32.119431) (xy 28.209374 -32.277) (xy 27.797626 -32.277)
(xy 27.41722 -32.119431) (xy 27.126069 -31.82828) (xy 26.9685 -31.447874) (xy 8.304068 -31.447874) (xy 8.262722 -31.465)
(xy 7.612278 -31.465) (xy 7.011347 -31.216086) (xy 6.551414 -30.756153) (xy 6.3025 -30.155222) (xy 2.3415 -30.155222)
(xy 2.3415 -33.655222) (xy 6.3025 -33.655222) (xy 6.3025 -33.004778) (xy 6.551414 -32.403847) (xy 7.011347 -31.943914)
(xy 7.612278 -31.695) (xy 8.262722 -31.695) (xy 8.863653 -31.943914) (xy 9.323586 -32.403847) (xy 9.5725 -33.004778)
(xy 9.5725 -33.655222) (xy 9.323586 -34.256153) (xy 8.863653 -34.716086) (xy 8.262722 -34.965) (xy 7.612278 -34.965)
(xy 7.011347 -34.716086) (xy 6.551414 -34.256153) (xy 6.3025 -33.655222) (xy 2.3415 -33.655222) (xy 2.3415 -37.705)
(xy 6.41506 -37.705) (xy 6.41506 -35.955) (xy 6.464343 -35.707235) (xy 6.604691 -35.497191) (xy 6.814735 -35.356843)
(xy 7.0625 -35.30756) (xy 8.8125 -35.30756) (xy 9.060265 -35.356843) (xy 9.270309 -35.497191) (xy 9.410657 -35.707235)
(xy 9.45994 -35.955) (xy 9.45994 -36.576) (xy 31.862765 -36.576) (xy 31.950854 -36.133145) (xy 32.201711 -35.757711)
(xy 32.577145 -35.506854) (xy 32.908217 -35.441) (xy 39.735783 -35.441) (xy 40.066855 -35.506854) (xy 40.442289 -35.757711)
(xy 40.693146 -36.133145) (xy 40.781235 -36.576) (xy 40.693146 -37.018855) (xy 40.442289 -37.394289) (xy 40.066855 -37.645146)
(xy 39.735783 -37.711) (xy 32.908217 -37.711) (xy 32.577145 -37.645146) (xy 32.201711 -37.394289) (xy 31.950854 -37.018855)
(xy 31.862765 -36.576) (xy 9.45994 -36.576) (xy 9.45994 -37.705) (xy 9.410657 -37.952765) (xy 9.270309 -38.162809)
(xy 9.060265 -38.303157) (xy 8.8125 -38.35244) (xy 7.0625 -38.35244) (xy 6.814735 -38.303157) (xy 6.604691 -38.162809)
(xy 6.464343 -37.952765) (xy 6.41506 -37.705) (xy 2.3415 -37.705) (xy 2.3415 -39.1835) (xy 22.201339 -39.1835)
(xy 22.2885 -39.166163) (xy 22.375661 -39.1835) (xy 22.375665 -39.1835) (xy 22.63381 -39.234848) (xy 22.926549 -39.430451)
(xy 22.975925 -39.504347) (xy 23.849235 -40.377657) (xy 34.071 -40.377657) (xy 34.071 -39.886343) (xy 34.259018 -39.432429)
(xy 34.606429 -39.085018) (xy 35.060343 -38.897) (xy 35.551657 -38.897) (xy 36.005571 -39.085018) (xy 36.195 -39.274447)
(xy 36.384429 -39.085018) (xy 36.838343 -38.897) (xy 37.329657 -38.897) (xy 37.783571 -39.085018) (xy 38.130982 -39.432429)
(xy 38.319 -39.886343) (xy 38.319 -40.377657) (xy 38.219 -40.619078) (xy 38.219 -43.672783) (xy 38.153146 -44.003855)
(xy 37.902289 -44.379289) (xy 37.526854 -44.630146) (xy 37.084 -44.718235) (xy 36.641145 -44.630146) (xy 36.265711 -44.379289)
(xy 36.195 -44.273462) (xy 36.124289 -44.379289) (xy 35.748855 -44.630146) (xy 35.306 -44.718235) (xy 34.863146 -44.630146)
(xy 34.487712 -44.379289) (xy 34.236855 -44.003855) (xy 34.171001 -43.672783) (xy 34.171 -40.619078) (xy 34.071 -40.377657)
(xy 23.849235 -40.377657) (xy 24.073579 -40.602) (xy 24.351939 -40.602) (xy 24.879362 -40.820466) (xy 25.283034 -41.224138)
(xy 25.5015 -41.751561) (xy 25.5015 -42.322439) (xy 25.283034 -42.849862) (xy 24.879362 -43.253534) (xy 24.351939 -43.472)
(xy 23.883079 -43.472) (xy 17.410425 -49.944653) (xy 17.361049 -50.018549) (xy 17.06831 -50.214152) (xy 16.810165 -50.2655)
(xy 16.810161 -50.2655) (xy 16.723 -50.282837) (xy 16.635839 -50.2655) (xy 9.364739 -50.2655) (xy 8.927153 -50.703086)
(xy 8.326222 -50.952) (xy 7.675778 -50.952) (xy 7.074847 -50.703086) (xy 6.614914 -50.243153) (xy 6.366 -49.642222)
(xy 6.366 -48.991778) (xy 6.614914 -48.390847) (xy 7.074847 -47.930914) (xy 7.675778 -47.682) (xy 8.326222 -47.682)
(xy 8.927153 -47.930914) (xy 9.387086 -48.390847) (xy 9.430435 -48.4955) (xy 16.356422 -48.4955) (xy 22.6315 -42.220421)
(xy 22.6315 -41.751561) (xy 22.657416 -41.688994) (xy 21.921922 -40.9535) (xy 17.407859 -40.9535) (xy 17.481077 -41.002423)
(xy 17.79824 -41.477091) (xy 17.909613 -42.037) (xy 17.79824 -42.596909) (xy 17.481077 -43.071577) (xy 17.006409 -43.38874)
(xy 16.587833 -43.472) (xy 16.305167 -43.472) (xy 15.886591 -43.38874) (xy 15.411923 -43.071577) (xy 15.09476 -42.596909)
(xy 14.983387 -42.037) (xy 15.09476 -41.477091) (xy 15.411923 -41.002423) (xy 15.485141 -40.9535) (xy 8.949739 -40.9535)
(xy 9.387086 -41.390847) (xy 9.636 -41.991778) (xy 9.636 -42.642222) (xy 9.387086 -43.243153) (xy 8.927153 -43.703086)
(xy 8.326222 -43.952) (xy 7.675778 -43.952) (xy 7.074847 -43.703086) (xy 6.614914 -43.243153) (xy 6.366 -42.642222)
(xy 6.366 -41.991778) (xy 6.614914 -41.390847) (xy 7.052261 -40.9535) (xy 2.3415 -40.9535) (xy 2.3415 -46.142222)
(xy 6.366 -46.142222) (xy 6.366 -45.491778) (xy 6.614914 -44.890847) (xy 7.074847 -44.430914) (xy 7.675778 -44.182)
(xy 8.326222 -44.182) (xy 8.927153 -44.430914) (xy 9.387086 -44.890847) (xy 9.636 -45.491778) (xy 9.636 -46.142222)
(xy 9.387086 -46.743153) (xy 8.927153 -47.203086) (xy 8.326222 -47.452) (xy 7.675778 -47.452) (xy 7.074847 -47.203086)
(xy 6.614914 -46.743153) (xy 6.366 -46.142222) (xy 2.3415 -46.142222) (xy 2.3415 -53.142222) (xy 6.366 -53.142222)
(xy 6.366 -52.491778) (xy 6.614914 -51.890847) (xy 7.074847 -51.430914) (xy 7.675778 -51.182) (xy 8.326222 -51.182)
(xy 8.927153 -51.430914) (xy 9.387086 -51.890847) (xy 9.636 -52.491778) (xy 9.636 -53.142222) (xy 9.387086 -53.743153)
(xy 8.927153 -54.203086) (xy 8.326222 -54.452) (xy 7.675778 -54.452) (xy 7.074847 -54.203086) (xy 6.614914 -53.743153)
(xy 6.366 -53.142222) (xy 2.3415 -53.142222) (xy 2.3415 -56.642222) (xy 6.366 -56.642222) (xy 6.366 -55.991778)
(xy 6.614914 -55.390847) (xy 7.074847 -54.930914) (xy 7.675778 -54.682) (xy 8.326222 -54.682) (xy 8.927153 -54.930914)
(xy 9.387086 -55.390847) (xy 9.636 -55.991778) (xy 9.636 -56.642222) (xy 9.387086 -57.243153) (xy 8.927153 -57.703086)
(xy 8.326222 -57.952) (xy 7.675778 -57.952) (xy 7.074847 -57.703086) (xy 6.614914 -57.243153) (xy 6.366 -56.642222)
(xy 2.3415 -56.642222) (xy 2.3415 -58.152) (xy 13.90806 -58.152) (xy 13.90806 -56.402) (xy 13.957343 -56.154235)
(xy 14.097691 -55.944191) (xy 14.307735 -55.803843) (xy 14.5555 -55.75456) (xy 16.3055 -55.75456) (xy 16.553265 -55.803843)
(xy 16.763309 -55.944191) (xy 16.903657 -56.154235) (xy 16.95294 -56.402) (xy 16.95294 -57.577358) (xy 17.4205 -57.577358)
(xy 17.4205 -56.976642) (xy 17.650384 -56.421654) (xy 18.075154 -55.996884) (xy 18.630142 -55.767) (xy 19.230858 -55.767)
(xy 19.785846 -55.996884) (xy 20.003902 -56.21494) (xy 21.548045 -56.21494) (xy 21.631384 -55.961047) (xy 22.195806 -55.75541)
(xy 22.795958 -55.781421) (xy 23.229616 -55.961047) (xy 23.312955 -56.21494) (xy 22.4305 -57.097395) (xy 21.548045 -56.21494)
(xy 20.003902 -56.21494) (xy 20.210616 -56.421654) (xy 20.4405 -56.976642) (xy 20.4405 -57.511694) (xy 20.90891 -57.511694)
(xy 20.934921 -56.911542) (xy 21.114547 -56.477884) (xy 21.36844 -56.394545) (xy 22.250895 -57.277) (xy 22.610105 -57.277)
(xy 23.49256 -56.394545) (xy 23.746453 -56.477884) (xy 23.95209 -57.042306) (xy 23.928901 -57.577358) (xy 24.4205 -57.577358)
(xy 24.4205 -56.976642) (xy 24.650384 -56.421654) (xy 25.075154 -55.996884) (xy 25.630142 -55.767) (xy 26.230858 -55.767)
(xy 26.785846 -55.996884) (xy 27.210616 -56.421654) (xy 27.4405 -56.976642) (xy 27.4405 -57.577358) (xy 27.9205 -57.577358)
(xy 27.9205 -56.976642) (xy 28.150384 -56.421654) (xy 28.575154 -55.996884) (xy 29.130142 -55.767) (xy 29.730858 -55.767)
(xy 30.285846 -55.996884) (xy 30.710616 -56.421654) (xy 30.9405 -56.976642) (xy 30.9405 -57.577358) (xy 31.4205 -57.577358)
(xy 31.4205 -56.976642) (xy 31.650384 -56.421654) (xy 32.075154 -55.996884) (xy 32.630142 -55.767) (xy 33.230858 -55.767)
(xy 33.785846 -55.996884) (xy 34.210616 -56.421654) (xy 34.4405 -56.976642) (xy 34.4405 -57.577358) (xy 34.210616 -58.132346)
(xy 33.785846 -58.557116) (xy 33.230858 -58.787) (xy 32.630142 -58.787) (xy 32.075154 -58.557116) (xy 31.650384 -58.132346)
(xy 31.4205 -57.577358) (xy 30.9405 -57.577358) (xy 30.710616 -58.132346) (xy 30.285846 -58.557116) (xy 29.730858 -58.787)
(xy 29.130142 -58.787) (xy 28.575154 -58.557116) (xy 28.150384 -58.132346) (xy 27.9205 -57.577358) (xy 27.4405 -57.577358)
(xy 27.210616 -58.132346) (xy 26.785846 -58.557116) (xy 26.230858 -58.787) (xy 25.630142 -58.787) (xy 25.075154 -58.557116)
(xy 24.650384 -58.132346) (xy 24.4205 -57.577358) (xy 23.928901 -57.577358) (xy 23.926079 -57.642458) (xy 23.746453 -58.076116)
(xy 23.49256 -58.159455) (xy 22.610105 -57.277) (xy 22.250895 -57.277) (xy 21.36844 -58.159455) (xy 21.114547 -58.076116)
(xy 20.90891 -57.511694) (xy 20.4405 -57.511694) (xy 20.4405 -57.577358) (xy 20.210616 -58.132346) (xy 20.003902 -58.33906)
(xy 21.548045 -58.33906) (xy 22.4305 -57.456605) (xy 23.312955 -58.33906) (xy 23.229616 -58.592953) (xy 22.665194 -58.79859)
(xy 22.065042 -58.772579) (xy 21.631384 -58.592953) (xy 21.548045 -58.33906) (xy 20.003902 -58.33906) (xy 19.785846 -58.557116)
(xy 19.230858 -58.787) (xy 18.630142 -58.787) (xy 18.075154 -58.557116) (xy 17.650384 -58.132346) (xy 17.4205 -57.577358)
(xy 16.95294 -57.577358) (xy 16.95294 -58.152) (xy 16.903657 -58.399765) (xy 16.763309 -58.609809) (xy 16.553265 -58.750157)
(xy 16.3055 -58.79944) (xy 14.5555 -58.79944) (xy 14.307735 -58.750157) (xy 14.097691 -58.609809) (xy 13.957343 -58.399765)
(xy 13.90806 -58.152) (xy 2.3415 -58.152) (xy 2.3415 -60.692) (xy 6.47856 -60.692) (xy 6.47856 -58.942)
(xy 6.527843 -58.694235) (xy 6.668191 -58.484191) (xy 6.878235 -58.343843) (xy 7.126 -58.29456) (xy 8.876 -58.29456)
(xy 9.123765 -58.343843) (xy 9.333809 -58.484191) (xy 9.474157 -58.694235) (xy 9.52344 -58.942) (xy 9.52344 -59.305243)
(xy 37.851 -59.305243) (xy 37.851 -58.296757) (xy 38.23693 -57.365038) (xy 38.950038 -56.65193) (xy 39.881757 -56.266)
(xy 40.890243 -56.266) (xy 41.821962 -56.65193) (xy 42.53507 -57.365038) (xy 42.921 -58.296757) (xy 42.921 -59.305243)
(xy 42.53507 -60.236962) (xy 41.821962 -60.95007) (xy 40.890243 -61.336) (xy 39.881757 -61.336) (xy 38.950038 -60.95007)
(xy 38.23693 -60.236962) (xy 37.851 -59.305243) (xy 9.52344 -59.305243) (xy 9.52344 -60.692) (xy 9.474157 -60.939765)
(xy 9.333809 -61.149809) (xy 9.123765 -61.290157) (xy 8.876 -61.33944) (xy 7.126 -61.33944) (xy 6.878235 -61.290157)
(xy 6.668191 -61.149809) (xy 6.527843 -60.939765) (xy 6.47856 -60.692) (xy 2.3415 -60.692) (xy 2.3415 -67.052243)
(xy 2.418 -67.052243) (xy 2.418 -66.043757) (xy 2.80393 -65.112038) (xy 3.517038 -64.39893) (xy 4.448757 -64.013)
(xy 5.457243 -64.013) (xy 6.388962 -64.39893) (xy 7.10207 -65.112038) (xy 7.488 -66.043757) (xy 7.488 -67.052243)
(xy 7.10207 -67.983962) (xy 6.525724 -68.560308) (xy 15.932 -68.560308) (xy 15.932 -67.392692) (xy 16.378827 -66.313956)
(xy 17.204456 -65.488327) (xy 18.283192 -65.0415) (xy 19.450808 -65.0415) (xy 20.529544 -65.488327) (xy 21.355173 -66.313956)
(xy 21.802 -67.392692) (xy 21.802 -68.560308) (xy 21.355173 -69.639044) (xy 20.529544 -70.464673) (xy 19.450808 -70.9115)
(xy 18.283192 -70.9115) (xy 17.204456 -70.464673) (xy 16.378827 -69.639044) (xy 15.932 -68.560308) (xy 6.525724 -68.560308)
(xy 6.388962 -68.69707) (xy 5.457243 -69.083) (xy 4.448757 -69.083) (xy 3.517038 -68.69707) (xy 2.80393 -67.983962)
(xy 2.418 -67.052243) (xy 2.3415 -67.052243) (xy 2.3415 -81.829222) (xy 6.1755 -81.829222) (xy 6.1755 -81.178778)
(xy 6.424414 -80.577847) (xy 6.884347 -80.117914) (xy 7.485278 -79.869) (xy 8.135722 -79.869) (xy 8.346777 -79.956422)
(xy 10.263697 -78.0395) (xy 9.4455 -78.0395) (xy 9.4455 -78.329222) (xy 9.196586 -78.930153) (xy 8.736653 -79.390086)
(xy 8.135722 -79.639) (xy 7.485278 -79.639) (xy 6.884347 -79.390086) (xy 6.424414 -78.930153) (xy 6.1755 -78.329222)
(xy 6.1755 -77.678778) (xy 6.424414 -77.077847) (xy 6.884347 -76.617914) (xy 7.485278 -76.369) (xy 8.135722 -76.369)
(xy 8.507037 -76.522804) (xy 8.523648 -76.5195) (xy 8.523652 -76.5195) (xy 8.5985 -76.504612) (xy 8.673348 -76.5195)
(xy 27.290817 -76.5195) (xy 27.2495 -76.311782) (xy 27.2495 -75.486283) (xy 27.227265 -75.3745) (xy 27.2495 -75.262718)
(xy 27.2495 -75.262717) (xy 27.315354 -74.931645) (xy 27.566212 -74.556211) (xy 27.66098 -74.492889) (xy 34.2345 -67.919368)
(xy 34.234501 -65.864717) (xy 34.300355 -65.533645) (xy 34.551212 -65.158211) (xy 34.926646 -64.907354) (xy 35.3695 -64.819265)
(xy 35.812355 -64.907354) (xy 36.168426 -65.145273) (xy 36.202211 -65.094711) (xy 36.577645 -64.843854) (xy 37.0205 -64.755765)
(xy 37.463354 -64.843854) (xy 37.838789 -65.094711) (xy 38.089646 -65.470145) (xy 38.1555 -65.801217) (xy 38.1555 -69.611219)
(xy 38.177735 -69.723001) (xy 38.1555 -69.834783) (xy 38.089646 -70.165855) (xy 37.838789 -70.541289) (xy 37.744021 -70.604611)
(xy 31.829131 -76.5195) (xy 34.094289 -76.5195) (xy 34.21172 -76.402069) (xy 34.592126 -76.2445) (xy 35.003874 -76.2445)
(xy 35.38428 -76.402069) (xy 35.595705 -76.613494) (xy 43.2455 -68.963697) (xy 43.2455 -68.289532) (xy 42.837962 -68.69707)
(xy 41.906243 -69.083) (xy 40.897757 -69.083) (xy 39.966038 -68.69707) (xy 39.25293 -67.983962) (xy 38.867 -67.052243)
(xy 38.867 -66.043757) (xy 39.25293 -65.112038) (xy 39.966038 -64.39893) (xy 40.897757 -64.013) (xy 41.906243 -64.013)
(xy 42.837962 -64.39893) (xy 43.55107 -65.112038) (xy 43.729231 -65.542158) (xy 43.799626 -65.513) (xy 44.211374 -65.513)
(xy 44.59178 -65.670569) (xy 44.77275 -65.851539) (xy 44.95372 -65.670569) (xy 45.334126 -65.513) (xy 45.745874 -65.513)
(xy 46.12628 -65.670569) (xy 46.2015 -65.745789) (xy 46.40372 -65.543569) (xy 46.784126 -65.386) (xy 47.195874 -65.386)
(xy 47.57628 -65.543569) (xy 47.84725 -65.814539) (xy 47.99122 -65.670569) (xy 48.371626 -65.513) (xy 48.783374 -65.513)
(xy 49.16378 -65.670569) (xy 49.454931 -65.96172) (xy 49.610998 -66.3385) (xy 49.672374 -66.3385) (xy 50.05278 -66.496069)
(xy 50.343931 -66.78722) (xy 50.5015 -67.167626) (xy 50.5015 -67.579374) (xy 50.343931 -67.95978) (xy 50.2265 -68.077211)
(xy 50.2265 -68.560308) (xy 64.932 -68.560308) (xy 64.932 -67.392692) (xy 65.378827 -66.313956) (xy 66.204456 -65.488327)
(xy 67.283192 -65.0415) (xy 68.450808 -65.0415) (xy 69.529544 -65.488327) (xy 70.355173 -66.313956) (xy 70.802 -67.392692)
(xy 70.802 -68.560308) (xy 70.355173 -69.639044) (xy 69.529544 -70.464673) (xy 68.450808 -70.9115) (xy 67.283192 -70.9115)
(xy 66.204456 -70.464673) (xy 65.378827 -69.639044) (xy 64.932 -68.560308) (xy 50.2265 -68.560308) (xy 50.2265 -68.886154)
(xy 50.241388 -68.961001) (xy 50.2265 -69.035848) (xy 50.2265 -69.035852) (xy 50.182404 -69.257537) (xy 50.014429 -69.508929)
(xy 49.95097 -69.551331) (xy 49.620679 -69.881622) (xy 49.575438 -69.94933) (xy 49.511979 -69.991732) (xy 49.231331 -70.27238)
(xy 49.231329 -70.272383) (xy 43.24701 -76.256701) (xy 43.24701 -77.581554) (xy 43.261898 -77.656401) (xy 43.24701 -77.731248)
(xy 43.24701 -77.731252) (xy 43.202914 -77.952937) (xy 43.034939 -78.204329) (xy 42.971483 -78.246729) (xy 40.591232 -80.626979)
(xy 40.54883 -80.690438) (xy 40.481124 -80.735678) (xy 39.980425 -81.236376) (xy 39.929931 -81.35828) (xy 39.63878 -81.649431)
(xy 39.258374 -81.807) (xy 38.846626 -81.807) (xy 38.46622 -81.649431) (xy 38.44925 -81.632461) (xy 38.43228 -81.649431)
(xy 38.051874 -81.807) (xy 37.640126 -81.807) (xy 37.270529 -81.653908) (xy 37.247909 -81.676528) (xy 36.867503 -81.834097)
(xy 36.455755 -81.834097) (xy 36.151246 -81.707965) (xy 36.14628 -81.712931) (xy 35.765874 -81.8705) (xy 35.354126 -81.8705)
(xy 35.077844 -81.756061) (xy 35.07193 -81.761975) (xy 34.691524 -81.919544) (xy 34.279776 -81.919544) (xy 33.89937 -81.761975)
(xy 33.855303 -81.717908) (xy 33.79678 -81.776431) (xy 33.416374 -81.934) (xy 33.004626 -81.934) (xy 32.62422 -81.776431)
(xy 32.333069 -81.48528) (xy 32.1755 -81.104874) (xy 32.1755 -80.693126) (xy 32.333069 -80.31272) (xy 32.62422 -80.021569)
(xy 33.004626 -79.864) (xy 33.170699 -79.864) (xy 33.386698 -79.648) (xy 33.322126 -79.648) (xy 32.94172 -79.490431)
(xy 32.650569 -79.19928) (xy 32.493 -78.818874) (xy 32.493 -78.6745) (xy 11.778302 -78.6745) (xy 11.355333 -79.097468)
(xy 11.355329 -79.097474) (xy 9.395276 -81.057526) (xy 9.4455 -81.178778) (xy 9.4455 -81.829222) (xy 9.196586 -82.430153)
(xy 8.736653 -82.890086) (xy 8.135722 -83.139) (xy 7.485278 -83.139) (xy 6.884347 -82.890086) (xy 6.424414 -82.430153)
(xy 6.1755 -81.829222) (xy 2.3415 -81.829222) (xy 2.3415 -88.829222) (xy 6.1755 -88.829222) (xy 6.1755 -88.178778)
(xy 6.424414 -87.577847) (xy 6.884347 -87.117914) (xy 7.485278 -86.869) (xy 8.135722 -86.869) (xy 8.736653 -87.117914)
(xy 9.196586 -87.577847) (xy 9.4455 -88.178778) (xy 9.4455 -88.829222) (xy 9.357275 -89.042218) (xy 14.359 -89.042218)
(xy 14.424854 -88.711146) (xy 14.675711 -88.335711) (xy 15.051145 -88.084854) (xy 15.494 -87.996765) (xy 15.936854 -88.084854)
(xy 16.312289 -88.335711) (xy 16.563146 -88.711145) (xy 16.629 -89.042217) (xy 16.629 -99.171783) (xy 16.563146 -99.502855)
(xy 16.312289 -99.878289) (xy 15.936855 -100.129146) (xy 15.494 -100.217235) (xy 15.051146 -100.129146) (xy 14.675712 -99.878289)
(xy 14.424855 -99.502855) (xy 14.359001 -99.171783) (xy 14.359 -89.042218) (xy 9.357275 -89.042218) (xy 9.196586 -89.430153)
(xy 8.736653 -89.890086) (xy 8.135722 -90.139) (xy 7.485278 -90.139) (xy 6.884347 -89.890086) (xy 6.424414 -89.430153)
(xy 6.1755 -88.829222) (xy 2.3415 -88.829222) (xy 2.3415 -92.329222) (xy 6.1755 -92.329222) (xy 6.1755 -91.678778)
(xy 6.424414 -91.077847) (xy 6.884347 -90.617914) (xy 7.485278 -90.369) (xy 8.135722 -90.369) (xy 8.736653 -90.617914)
(xy 9.196586 -91.077847) (xy 9.4455 -91.678778) (xy 9.4455 -92.329222) (xy 9.196586 -92.930153) (xy 8.736653 -93.390086)
(xy 8.135722 -93.639) (xy 7.485278 -93.639) (xy 6.884347 -93.390086) (xy 6.424414 -92.930153) (xy 6.1755 -92.329222)
(xy 2.3415 -92.329222) (xy 2.3415 -96.379) (xy 6.28806 -96.379) (xy 6.28806 -94.629) (xy 6.337343 -94.381235)
(xy 6.477691 -94.171191) (xy 6.687735 -94.030843) (xy 6.9355 -93.98156) (xy 8.6855 -93.98156) (xy 8.933265 -94.030843)
(xy 9.143309 -94.171191) (xy 9.283657 -94.381235) (xy 9.33294 -94.629) (xy 9.33294 -96.379) (xy 9.283657 -96.626765)
(xy 9.143309 -96.836809) (xy 8.933265 -96.977157) (xy 8.6855 -97.02644) (xy 6.9355 -97.02644) (xy 6.687735 -96.977157)
(xy 6.477691 -96.836809) (xy 6.337343 -96.626765) (xy 6.28806 -96.379) (xy 2.3415 -96.379) (xy 2.3415 -100.60533)
(xy 2.356844 -100.595077) (xy 2.356845 -100.595076) (xy 2.422579 -100.551154) (xy 2.57569 -100.448848) (xy 2.833835 -100.3975)
(xy 2.833839 -100.3975) (xy 2.920999 -100.380163) (xy 3.008159 -100.3975) (xy 16.524422 -100.3975) (xy 17.499078 -99.422843)
(xy 17.548452 -99.34895) (xy 17.622345 -99.299576) (xy 17.622346 -99.299575) (xy 17.628056 -99.29576) (xy 17.841191 -99.153347)
(xy 18.099336 -99.101999) (xy 18.099341 -99.101999) (xy 18.1865 -99.084662) (xy 18.27366 -99.101999) (xy 20.677423 -99.101999)
(xy 20.8535 -98.925921) (xy 20.8535 -98.457061) (xy 21.071966 -97.929638) (xy 21.475638 -97.525966) (xy 21.5285 -97.50407)
(xy 21.5285 -96.961802) (xy 19.931 -95.364301) (xy 19.931 -97.393783) (xy 19.865146 -97.724855) (xy 19.614289 -98.100289)
(xy 19.238855 -98.351146) (xy 18.796 -98.439235) (xy 18.353146 -98.351146) (xy 17.977712 -98.100289) (xy 17.726855 -97.724855)
(xy 17.661001 -97.393783) (xy 17.661 -85.105218) (xy 17.726854 -84.774146) (xy 17.977711 -84.398711) (xy 18.2766 -84.199)
(xy 17.650302 -84.199) (xy 16.360831 -85.48847) (xy 16.318429 -85.551929) (xy 16.067037 -85.719904) (xy 15.845352 -85.764)
(xy 15.845347 -85.764) (xy 15.7705 -85.778888) (xy 15.695653 -85.764) (xy 9.265409 -85.764) (xy 9.196586 -85.930153)
(xy 8.736653 -86.390086) (xy 8.135722 -86.639) (xy 7.485278 -86.639) (xy 6.884347 -86.390086) (xy 6.424414 -85.930153)
(xy 6.1755 -85.329222) (xy 6.1755 -84.678778) (xy 6.424414 -84.077847) (xy 6.884347 -83.617914) (xy 7.485278 -83.369)
(xy 8.135722 -83.369) (xy 8.736653 -83.617914) (xy 9.196586 -84.077847) (xy 9.265409 -84.244) (xy 15.455699 -84.244)
(xy 16.745171 -82.954527) (xy 16.787571 -82.891071) (xy 17.038963 -82.723096) (xy 17.260648 -82.679) (xy 17.260652 -82.679)
(xy 17.335499 -82.664112) (xy 17.410346 -82.679) (xy 19.356153 -82.679) (xy 19.431 -82.664112) (xy 19.505847 -82.679)
(xy 19.505852 -82.679) (xy 19.727537 -82.723096) (xy 19.978929 -82.891071) (xy 20.021331 -82.954529) (xy 20.867976 -83.801173)
(xy 20.931429 -83.843571) (xy 20.973827 -83.907024) (xy 20.973829 -83.907026) (xy 21.099403 -84.094962) (xy 21.099404 -84.094963)
(xy 21.1435 -84.316648) (xy 21.1435 -84.316652) (xy 21.158388 -84.391499) (xy 21.1435 -84.466346) (xy 21.1435 -90.253183)
(xy 21.253923 -90.087923) (xy 21.728591 -89.77076) (xy 22.147167 -89.6875) (xy 22.429833 -89.6875) (xy 22.848409 -89.77076)
(xy 23.323077 -90.087923) (xy 23.64024 -90.562591) (xy 23.751613 -91.1225) (xy 23.64024 -91.682409) (xy 23.323077 -92.157077)
(xy 22.848409 -92.47424) (xy 22.429833 -92.5575) (xy 22.147167 -92.5575) (xy 21.728591 -92.47424) (xy 21.253923 -92.157077)
(xy 21.1435 -91.991817) (xy 21.1435 -94.427199) (xy 22.772973 -96.056671) (xy 22.836429 -96.099071) (xy 22.898834 -96.192466)
(xy 23.004404 -96.350462) (xy 23.015166 -96.404569) (xy 23.0485 -96.572148) (xy 23.0485 -96.572152) (xy 23.063388 -96.647)
(xy 23.0485 -96.721848) (xy 23.0485 -97.50407) (xy 23.101362 -97.525966) (xy 23.505034 -97.929638) (xy 23.7235 -98.457061)
(xy 23.7235 -98.645698) (xy 24.359595 -98.009604) (xy 24.275 -97.805374) (xy 24.275 -97.393626) (xy 24.432569 -97.01322)
(xy 24.72372 -96.722069) (xy 25.104126 -96.5645) (xy 25.324465 -96.5645) (xy 25.418 -96.424515) (xy 25.418 -96.245197)
(xy 25.575569 -95.864791) (xy 25.86672 -95.57364) (xy 26.247126 -95.416071) (xy 26.658874 -95.416071) (xy 27.03928 -95.57364)
(xy 27.230965 -95.765325) (xy 27.41722 -95.579069) (xy 27.797626 -95.4215) (xy 28.209374 -95.4215) (xy 28.58978 -95.579069)
(xy 28.86075 -95.850039) (xy 29.00472 -95.706069) (xy 29.385126 -95.5485) (xy 29.796874 -95.5485) (xy 30.17728 -95.706069)
(xy 30.468431 -95.99722) (xy 30.626 -96.377626) (xy 30.626 -96.789374) (xy 30.468431 -97.16978) (xy 30.351 -97.287211)
(xy 30.351 -98.489789) (xy 31.552703 -99.69149) (xy 31.784236 -99.69149) (xy 31.938873 -99.318163) (xy 32.230024 -99.027012)
(xy 32.61043 -98.869443) (xy 33.022178 -98.869443) (xy 33.402584 -99.027012) (xy 33.693735 -99.318163) (xy 33.851304 -99.698569)
(xy 33.851304 -100.110317) (xy 33.767602 -100.312391) (xy 33.770431 -100.31522) (xy 33.892284 -100.6094) (xy 64.755765 -100.6094)
(xy 64.843854 -100.166545) (xy 65.094711 -99.791111) (xy 65.470145 -99.540254) (xy 65.801217 -99.4744) (xy 85.709783 -99.4744)
(xy 86.040855 -99.540254) (xy 86.416289 -99.791111) (xy 86.667146 -100.166545) (xy 86.755235 -100.6094) (xy 86.667146 -101.052255)
(xy 86.416289 -101.427689) (xy 86.040855 -101.678546) (xy 85.709783 -101.7444) (xy 65.801217 -101.7444) (xy 65.470145 -101.678546)
(xy 65.094711 -101.427689) (xy 64.843854 -101.052255) (xy 64.755765 -100.6094) (xy 33.892284 -100.6094) (xy 33.928 -100.695626)
(xy 33.928 -101.107374) (xy 33.770431 -101.48778) (xy 33.47928 -101.778931) (xy 33.098874 -101.9365) (xy 32.687126 -101.9365)
(xy 32.30672 -101.778931) (xy 32.189289 -101.6615) (xy 31.621 -101.6615) (xy 31.621 -101.929004) (xy 31.816561 -101.848)
(xy 32.387439 -101.848) (xy 32.914862 -102.066466) (xy 33.318534 -102.470138) (xy 33.372 -102.599216) (xy 33.425466 -102.470138)
(xy 33.829138 -102.066466) (xy 34.356561 -101.848) (xy 34.927439 -101.848) (xy 35.454862 -102.066466) (xy 35.858534 -102.470138)
(xy 36.077 -102.997561) (xy 36.077 -103.568439) (xy 36.064649 -103.598257) (xy 64.5764 -103.598257) (xy 64.5764 -103.106943)
(xy 64.764418 -102.653029) (xy 65.111829 -102.305618) (xy 65.565743 -102.1176) (xy 66.057057 -102.1176) (xy 66.298478 -102.2176)
(xy 84.996622 -102.2176) (xy 85.238043 -102.1176) (xy 85.729357 -102.1176) (xy 86.183271 -102.305618) (xy 86.530682 -102.653029)
(xy 86.7187 -103.106943) (xy 86.7187 -103.598257) (xy 86.530682 -104.052171) (xy 86.183271 -104.399582) (xy 85.729357 -104.5876)
(xy 85.238043 -104.5876) (xy 84.996622 -104.4876) (xy 66.298478 -104.4876) (xy 66.057057 -104.5876) (xy 65.565743 -104.5876)
(xy 65.111829 -104.399582) (xy 64.764418 -104.052171) (xy 64.5764 -103.598257) (xy 36.064649 -103.598257) (xy 35.858534 -104.095862)
(xy 35.454862 -104.499534) (xy 35.325784 -104.553) (xy 35.454862 -104.606466) (xy 35.858534 -105.010138) (xy 36.077 -105.537561)
(xy 36.077 -105.899) (xy 36.273874 -105.899) (xy 36.652733 -106.055928) (xy 36.859587 -105.970247) (xy 37.271335 -105.970247)
(xy 37.651741 -106.127816) (xy 37.942892 -106.418967) (xy 38.100461 -106.799373) (xy 38.100461 -107.211121) (xy 37.942892 -107.591527)
(xy 37.651741 -107.882678) (xy 37.271335 -108.040247) (xy 37.105262 -108.040247) (xy 36.965039 -108.18047) (xy 36.922637 -108.243929)
(xy 36.671245 -108.411904) (xy 36.44956 -108.456) (xy 36.449555 -108.456) (xy 36.374708 -108.470888) (xy 36.369041 -108.469761)
(xy 35.241559 -109.597243) (xy 38.867 -109.597243) (xy 38.867 -108.588757) (xy 39.25293 -107.657038) (xy 39.966038 -106.94393)
(xy 40.897757 -106.558) (xy 41.906243 -106.558) (xy 42.837962 -106.94393) (xy 43.55107 -107.657038) (xy 43.903342 -108.5075)
(xy 46.61056 -108.5075) (xy 46.61056 -106.7575) (xy 46.659843 -106.509735) (xy 46.800191 -106.299691) (xy 47.010235 -106.159343)
(xy 47.258 -106.11006) (xy 49.008 -106.11006) (xy 49.255765 -106.159343) (xy 49.465809 -106.299691) (xy 49.606157 -106.509735)
(xy 49.65544 -106.7575) (xy 49.65544 -107.932858) (xy 50.123 -107.932858) (xy 50.123 -107.332142) (xy 50.352884 -106.777154)
(xy 50.777654 -106.352384) (xy 51.332642 -106.1225) (xy 51.933358 -106.1225) (xy 52.488346 -106.352384) (xy 52.706402 -106.57044)
(xy 54.250545 -106.57044) (xy 54.333884 -106.316547) (xy 54.898306 -106.11091) (xy 55.498458 -106.136921) (xy 55.932116 -106.316547)
(xy 56.015455 -106.57044) (xy 55.133 -107.452895) (xy 54.250545 -106.57044) (xy 52.706402 -106.57044) (xy 52.913116 -106.777154)
(xy 53.143 -107.332142) (xy 53.143 -107.867194) (xy 53.61141 -107.867194) (xy 53.637421 -107.267042) (xy 53.817047 -106.833384)
(xy 54.07094 -106.750045) (xy 54.953395 -107.6325) (xy 55.312605 -107.6325) (xy 56.19506 -106.750045) (xy 56.448953 -106.833384)
(xy 56.65459 -107.397806) (xy 56.628579 -107.997958) (xy 56.448953 -108.431616) (xy 56.19506 -108.514955) (xy 55.312605 -107.6325)
(xy 54.953395 -107.6325) (xy 54.07094 -108.514955) (xy 53.817047 -108.431616) (xy 53.61141 -107.867194) (xy 53.143 -107.867194)
(xy 53.143 -107.932858) (xy 52.913116 -108.487846) (xy 52.706402 -108.69456) (xy 54.250545 -108.69456) (xy 55.133 -107.812105)
(xy 56.015455 -108.69456) (xy 55.932116 -108.948453) (xy 55.367694 -109.15409) (xy 54.767542 -109.128079) (xy 54.333884 -108.948453)
(xy 54.250545 -108.69456) (xy 52.706402 -108.69456) (xy 52.488346 -108.912616) (xy 51.933358 -109.1425) (xy 51.332642 -109.1425)
(xy 50.777654 -108.912616) (xy 50.352884 -108.487846) (xy 50.123 -107.932858) (xy 49.65544 -107.932858) (xy 49.65544 -108.5075)
(xy 49.606157 -108.755265) (xy 49.465809 -108.965309) (xy 49.255765 -109.105657) (xy 49.008 -109.15494) (xy 47.258 -109.15494)
(xy 47.010235 -109.105657) (xy 46.800191 -108.965309) (xy 46.659843 -108.755265) (xy 46.61056 -108.5075) (xy 43.903342 -108.5075)
(xy 43.937 -108.588757) (xy 43.937 -109.597243) (xy 43.55107 -110.528962) (xy 42.837962 -111.24207) (xy 41.906243 -111.628)
(xy 40.897757 -111.628) (xy 39.966038 -111.24207) (xy 39.25293 -110.528962) (xy 38.867 -109.597243) (xy 35.241559 -109.597243)
(xy 34.669 -110.169801) (xy 34.669 -116.130154) (xy 34.683888 -116.205001) (xy 34.669 -116.279848) (xy 34.669 -116.279852)
(xy 34.624904 -116.501537) (xy 34.575227 -116.575884) (xy 34.499329 -116.689474) (xy 34.499327 -116.689476) (xy 34.48612 -116.709243)
(xy 36.581 -116.709243) (xy 36.581 -115.700757) (xy 36.96693 -114.769038) (xy 37.680038 -114.05593) (xy 38.611757 -113.67)
(xy 39.620243 -113.67) (xy 40.551962 -114.05593) (xy 41.26507 -114.769038) (xy 41.651 -115.700757) (xy 41.651 -116.709243)
(xy 41.26507 -117.640962) (xy 40.551962 -118.35407) (xy 39.620243 -118.74) (xy 38.611757 -118.74) (xy 37.680038 -118.35407)
(xy 36.96693 -117.640962) (xy 36.581 -116.709243) (xy 34.48612 -116.709243) (xy 34.456929 -116.752929) (xy 34.393475 -116.795327)
(xy 34.161 -117.027802) (xy 34.161 -120.003652) (xy 34.175888 -120.0785) (xy 34.161 -120.153348) (xy 34.161 -120.153352)
(xy 34.116904 -120.375037) (xy 34.116904 -120.375038) (xy 33.991329 -120.562973) (xy 33.948929 -120.626429) (xy 33.885473 -120.668829)
(xy 33.1025 -121.451801) (xy 33.1025 -121.617874) (xy 32.944931 -121.99828) (xy 32.65378 -122.289431) (xy 32.273374 -122.447)
(xy 31.861626 -122.447) (xy 31.48122 -122.289431) (xy 31.190069 -121.99828) (xy 31.0325 -121.617874) (xy 31.0325 -121.206126)
(xy 31.190069 -120.82572) (xy 31.48122 -120.534569) (xy 31.861626 -120.377) (xy 32.027699 -120.377) (xy 32.641 -119.763698)
(xy 32.641 -119.119725) (xy 32.273374 -119.272) (xy 31.861626 -119.272) (xy 31.48122 -119.114431) (xy 31.190069 -118.82328)
(xy 31.0325 -118.442874) (xy 31.0325 -118.031126) (xy 31.190069 -117.65072) (xy 31.3075 -117.533289) (xy 31.3075 -117.180477)
(xy 31.292612 -117.10563) (xy 31.3075 -117.030783) (xy 31.3075 -117.030779) (xy 31.351596 -116.809094) (xy 31.519571 -116.557701)
(xy 31.58303 -116.515299) (xy 32.641001 -115.457327) (xy 32.641 -110.030171) (xy 30.363201 -112.30797) (xy 30.320799 -112.371429)
(xy 30.069407 -112.539404) (xy 29.847722 -112.5835) (xy 29.847717 -112.5835) (xy 29.77287 -112.598388) (xy 29.698023 -112.5835)
(xy 20.317302 -112.5835) (xy 16.254 -116.646801) (xy 16.254 -124.615315) (xy 16.378827 -124.313956) (xy 17.204456 -123.488327)
(xy 18.283192 -123.0415) (xy 19.450808 -123.0415) (xy 20.529544 -123.488327) (xy 21.355173 -124.313956) (xy 21.389363 -124.3965)
(xy 22.920887 -124.3965) (xy 23.03226 -123.836591) (xy 23.349423 -123.361923) (xy 23.824091 -123.04476) (xy 24.242667 -122.9615)
(xy 24.525333 -122.9615) (xy 24.943909 -123.04476) (xy 25.418577 -123.361923) (xy 25.73574 -123.836591) (xy 25.847113 -124.3965)
(xy 25.790336 -124.681939) (xy 30.569 -124.681939) (xy 30.569 -124.111061) (xy 30.787466 -123.583638) (xy 31.191138 -123.179966)
(xy 31.718561 -122.9615) (xy 32.289439 -122.9615) (xy 32.816862 -123.179966) (xy 33.220534 -123.583638) (xy 33.439 -124.111061)
(xy 33.439 -124.681939) (xy 33.220534 -125.209362) (xy 32.816862 -125.613034) (xy 32.289439 -125.8315) (xy 31.718561 -125.8315)
(xy 31.191138 -125.613034) (xy 30.787466 -125.209362) (xy 30.569 -124.681939) (xy 25.790336 -124.681939) (xy 25.73574 -124.956409)
(xy 25.418577 -125.431077) (xy 24.943909 -125.74824) (xy 24.525333 -125.8315) (xy 24.242667 -125.8315) (xy 23.824091 -125.74824)
(xy 23.349423 -125.431077) (xy 23.03226 -124.956409) (xy 22.920887 -124.3965) (xy 21.389363 -124.3965) (xy 21.802 -125.392692)
(xy 21.802 -126.560308) (xy 21.355173 -127.639044) (xy 20.529544 -128.464673) (xy 19.450808 -128.9115) (xy 18.283192 -128.9115)
(xy 17.204456 -128.464673) (xy 16.378827 -127.639044) (xy 16.254 -127.337685) (xy 16.254 -128.717199) (xy 16.560458 -129.023657)
(xy 29.499 -129.023657) (xy 29.499 -128.532343) (xy 29.687018 -128.078429) (xy 30.034429 -127.731018) (xy 30.488343 -127.543)
(xy 30.979657 -127.543) (xy 31.221078 -127.643) (xy 34.85755 -127.643) (xy 34.606429 -127.538982) (xy 34.259018 -127.191571)
(xy 34.071 -126.737657) (xy 34.071 -126.246343) (xy 34.259018 -125.792429) (xy 34.606429 -125.445018) (xy 35.060343 -125.257)
(xy 35.551657 -125.257) (xy 35.793078 -125.357) (xy 42.709869 -125.357) (xy 58.924368 -109.1425) (xy 58.332642 -109.1425)
(xy 57.777654 -108.912616) (xy 57.352884 -108.487846) (xy 57.123 -107.932858) (xy 57.123 -107.332142) (xy 57.352884 -106.777154)
(xy 57.777654 -106.352384) (xy 58.332642 -106.1225) (xy 58.933358 -106.1225) (xy 59.488346 -106.352384) (xy 59.913116 -106.777154)
(xy 60.143 -107.332142) (xy 60.143 -107.923868) (xy 60.623 -107.443868) (xy 60.623 -107.332142) (xy 60.852884 -106.777154)
(xy 61.277654 -106.352384) (xy 61.832642 -106.1225) (xy 62.433358 -106.1225) (xy 62.988346 -106.352384) (xy 63.413116 -106.777154)
(xy 63.643 -107.332142) (xy 63.643 -107.932858) (xy 63.628144 -107.968723) (xy 64.123 -107.473867) (xy 64.123 -107.332142)
(xy 64.352884 -106.777154) (xy 64.777654 -106.352384) (xy 65.332642 -106.1225) (xy 65.933358 -106.1225) (xy 66.488346 -106.352384)
(xy 66.913116 -106.777154) (xy 67.143 -107.332142) (xy 67.143 -107.932858) (xy 66.913116 -108.487846) (xy 66.488346 -108.912616)
(xy 66.368537 -108.962243) (xy 71.633 -108.962243) (xy 71.633 -107.953757) (xy 72.01893 -107.022038) (xy 72.732038 -106.30893)
(xy 73.663757 -105.923) (xy 74.672243 -105.923) (xy 75.603962 -106.30893) (xy 76.31707 -107.022038) (xy 76.703 -107.953757)
(xy 76.703 -108.962243) (xy 76.31707 -109.893962) (xy 75.603962 -110.60707) (xy 74.672243 -110.993) (xy 73.663757 -110.993)
(xy 72.732038 -110.60707) (xy 72.01893 -109.893962) (xy 71.633 -108.962243) (xy 66.368537 -108.962243) (xy 65.933358 -109.1425)
(xy 65.664633 -109.1425) (xy 58.09789 -116.709243) (xy 73.03 -116.709243) (xy 73.03 -115.700757) (xy 73.41593 -114.769038)
(xy 74.129038 -114.05593) (xy 75.060757 -113.67) (xy 76.069243 -113.67) (xy 77.000962 -114.05593) (xy 77.71407 -114.769038)
(xy 78.1 -115.700757) (xy 78.1 -116.709243) (xy 77.71407 -117.640962) (xy 77.198674 -118.156358) (xy 84.6855 -118.156358)
(xy 84.6855 -117.555642) (xy 84.915384 -117.000654) (xy 85.340154 -116.575884) (xy 85.895142 -116.346) (xy 86.495858 -116.346)
(xy 87.050846 -116.575884) (xy 87.475616 -117.000654) (xy 87.7055 -117.555642) (xy 87.7055 -118.156358) (xy 88.1855 -118.156358)
(xy 88.1855 -117.555642) (xy 88.415384 -117.000654) (xy 88.840154 -116.575884) (xy 89.395142 -116.346) (xy 89.995858 -116.346)
(xy 90.550846 -116.575884) (xy 90.975616 -117.000654) (xy 91.2055 -117.555642) (xy 91.2055 -118.156358) (xy 91.6855 -118.156358)
(xy 91.6855 -117.555642) (xy 91.915384 -117.000654) (xy 92.340154 -116.575884) (xy 92.895142 -116.346) (xy 93.495858 -116.346)
(xy 94.050846 -116.575884) (xy 94.268902 -116.79394) (xy 95.813045 -116.79394) (xy 95.896384 -116.540047) (xy 96.460806 -116.33441)
(xy 97.060958 -116.360421) (xy 97.494616 -116.540047) (xy 97.577955 -116.79394) (xy 96.6955 -117.676395) (xy 95.813045 -116.79394)
(xy 94.268902 -116.79394) (xy 94.475616 -117.000654) (xy 94.7055 -117.555642) (xy 94.7055 -118.090694) (xy 95.17391 -118.090694)
(xy 95.199921 -117.490542) (xy 95.379547 -117.056884) (xy 95.63344 -116.973545) (xy 96.515895 -117.856) (xy 96.875105 -117.856)
(xy 97.75756 -116.973545) (xy 98.011453 -117.056884) (xy 98.21709 -117.621306) (xy 98.193901 -118.156358) (xy 98.6855 -118.156358)
(xy 98.6855 -117.555642) (xy 98.915384 -117.000654) (xy 99.116239 -116.799799) (xy 99.124 -116.760781) (xy 99.189854 -116.429709)
(xy 99.440712 -116.054275) (xy 99.535479 -115.990953) (xy 100.64754 -114.878892) (xy 100.763378 -114.801491) (xy 100.973 -114.591869)
(xy 100.973001 -93.106217) (xy 101.038855 -92.775145) (xy 101.289712 -92.399711) (xy 101.665146 -92.148854) (xy 102.108 -92.060765)
(xy 102.550855 -92.148854) (xy 102.926289 -92.399711) (xy 103.026741 -92.550048) (xy 103.17272 -92.404069) (xy 103.553126 -92.2465)
(xy 103.964874 -92.2465) (xy 104.34528 -92.404069) (xy 104.636431 -92.69522) (xy 104.794 -93.075626) (xy 104.794 -93.353227)
(xy 104.828146 -93.40433) (xy 104.894 -93.735402) (xy 104.894 -97.8535) (xy 107.683112 -97.8535) (xy 107.698 -97.778653)
(xy 107.698001 -91.387852) (xy 107.683112 -91.313) (xy 107.698001 -91.238148) (xy 107.742097 -91.016463) (xy 107.910072 -90.765071)
(xy 107.973528 -90.722671) (xy 108.583312 -90.112886) (xy 108.518887 -89.789) (xy 108.63026 -89.229091) (xy 108.947423 -88.754423)
(xy 109.422091 -88.43726) (xy 109.840667 -88.354) (xy 110.123333 -88.354) (xy 110.541909 -88.43726) (xy 111.016577 -88.754423)
(xy 111.33374 -89.229091) (xy 111.445113 -89.789) (xy 111.33374 -90.348909) (xy 111.016577 -90.823577) (xy 110.541909 -91.14074)
(xy 110.123333 -91.224) (xy 109.840667 -91.224) (xy 109.658114 -91.187688) (xy 109.218 -91.627801) (xy 109.218 -96.172227)
(xy 109.696561 -95.974) (xy 110.267439 -95.974) (xy 110.794862 -96.192466) (xy 111.198534 -96.596138) (xy 111.417 -97.123561)
(xy 111.417 -97.694439) (xy 111.395103 -97.747302) (xy 113.286 -99.638198) (xy 113.286001 -89.759297) (xy 113.203096 -89.635222)
(xy 113.174686 -89.492397) (xy 113.041569 -89.35928) (xy 112.884 -88.978874) (xy 112.884 -88.567126) (xy 113.041569 -88.18672)
(xy 113.33272 -87.895569) (xy 113.697411 -87.74451) (xy 113.803569 -87.48822) (xy 114.09472 -87.197069) (xy 114.475126 -87.0395)
(xy 114.886874 -87.0395) (xy 115.26728 -87.197069) (xy 115.5065 -87.436289) (xy 115.5065 -87.342619) (xy 115.71918 -86.829163)
(xy 116.112163 -86.43618) (xy 116.319013 -86.3505) (xy 116.112163 -86.26482) (xy 115.71918 -85.871837) (xy 115.5065 -85.358381)
(xy 115.5065 -84.802619) (xy 115.71918 -84.289163) (xy 116.112163 -83.89618) (xy 116.319013 -83.8105) (xy 116.112163 -83.72482)
(xy 115.71918 -83.331837) (xy 115.5065 -82.818381) (xy 115.5065 -82.262619) (xy 115.71918 -81.749163) (xy 116.112163 -81.35618)
(xy 116.625619 -81.1435) (xy 117.181381 -81.1435) (xy 117.694837 -81.35618) (xy 118.08782 -81.749163) (xy 118.1735 -81.956013)
(xy 118.25918 -81.749163) (xy 118.652163 -81.35618) (xy 119.165619 -81.1435) (xy 119.721381 -81.1435) (xy 120.234837 -81.35618)
(xy 120.62782 -81.749163) (xy 120.654814 -81.814333) (xy 120.754167 -81.834096) (xy 121.005559 -82.002071) (xy 121.047961 -82.06553)
(xy 121.859433 -82.877001) (xy 126.945951 -82.877001) (xy 126.873 -82.700881) (xy 126.873 -82.145119) (xy 127.08568 -81.631663)
(xy 127.478663 -81.23868) (xy 127.992119 -81.026) (xy 128.547881 -81.026) (xy 129.061337 -81.23868) (xy 129.45432 -81.631663)
(xy 129.54 -81.838513) (xy 129.62568 -81.631663) (xy 130.018663 -81.23868) (xy 130.532119 -81.026) (xy 131.087881 -81.026)
(xy 131.601337 -81.23868) (xy 131.870879 -81.508222) (xy 143.145 -81.508222) (xy 143.145 -80.857778) (xy 143.393914 -80.256847)
(xy 143.853847 -79.796914) (xy 144.454778 -79.548) (xy 145.105222 -79.548) (xy 145.706153 -79.796914) (xy 146.166086 -80.256847)
(xy 146.415 -80.857778) (xy 146.415 -81.508222) (xy 146.166086 -82.109153) (xy 145.963865 -82.311374) (xy 147.428 -82.311374)
(xy 147.428 -81.899626) (xy 147.585569 -81.51922) (xy 147.87672 -81.228069) (xy 148.257126 -81.0705) (xy 148.668874 -81.0705)
(xy 149.04928 -81.228069) (xy 149.340431 -81.51922) (xy 149.498 -81.899626) (xy 149.498 -82.123383) (xy 150.443846 -83.069228)
(xy 150.670126 -82.9755) (xy 151.081874 -82.9755) (xy 151.46228 -83.133069) (xy 151.753431 -83.42422) (xy 151.911 -83.804626)
(xy 151.911 -84.216374) (xy 151.753431 -84.59678) (xy 151.46228 -84.887931) (xy 151.081874 -85.0455) (xy 150.670126 -85.0455)
(xy 150.28972 -84.887931) (xy 150.156603 -84.754814) (xy 150.013778 -84.726404) (xy 150.013776 -84.726403) (xy 150.013777 -84.726403)
(xy 149.825841 -84.600829) (xy 149.825839 -84.600827) (xy 149.762386 -84.558429) (xy 149.719988 -84.494976) (xy 148.365514 -83.1405)
(xy 148.257126 -83.1405) (xy 147.87672 -82.982931) (xy 147.585569 -82.69178) (xy 147.428 -82.311374) (xy 145.963865 -82.311374)
(xy 145.706153 -82.569086) (xy 145.105222 -82.818) (xy 144.454778 -82.818) (xy 143.853847 -82.569086) (xy 143.393914 -82.109153)
(xy 143.145 -81.508222) (xy 131.870879 -81.508222) (xy 131.99432 -81.631663) (xy 132.207 -82.145119) (xy 132.207 -82.700881)
(xy 131.99432 -83.214337) (xy 131.601337 -83.60732) (xy 131.425148 -83.6803) (xy 136.636687 -83.6803) (xy 136.74806 -83.120391)
(xy 137.065223 -82.645723) (xy 137.539891 -82.32856) (xy 137.958467 -82.2453) (xy 138.241133 -82.2453) (xy 138.659709 -82.32856)
(xy 139.134377 -82.645723) (xy 139.45154 -83.120391) (xy 139.562913 -83.6803) (xy 139.45154 -84.240209) (xy 139.134377 -84.714877)
(xy 138.695356 -85.008222) (xy 143.145 -85.008222) (xy 143.145 -84.357778) (xy 143.393914 -83.756847) (xy 143.853847 -83.296914)
(xy 144.454778 -83.048) (xy 145.105222 -83.048) (xy 145.706153 -83.296914) (xy 146.166086 -83.756847) (xy 146.415 -84.357778)
(xy 146.415 -85.008222) (xy 146.166086 -85.609153) (xy 145.706153 -86.069086) (xy 145.105222 -86.318) (xy 144.454778 -86.318)
(xy 143.853847 -86.069086) (xy 143.393914 -85.609153) (xy 143.145 -85.008222) (xy 138.695356 -85.008222) (xy 138.659709 -85.03204)
(xy 138.241133 -85.1153) (xy 137.958467 -85.1153) (xy 137.539891 -85.03204) (xy 137.065223 -84.714877) (xy 136.74806 -84.240209)
(xy 136.636687 -83.6803) (xy 131.425148 -83.6803) (xy 131.394487 -83.693) (xy 131.601337 -83.77868) (xy 131.99432 -84.171663)
(xy 132.207 -84.685119) (xy 132.207 -85.240881) (xy 131.99432 -85.754337) (xy 131.601337 -86.14732) (xy 131.394487 -86.233)
(xy 131.601337 -86.31868) (xy 131.99432 -86.711663) (xy 132.207 -87.225119) (xy 132.207 -87.780881) (xy 131.99432 -88.294337)
(xy 131.601337 -88.68732) (xy 131.394487 -88.773) (xy 131.601337 -88.85868) (xy 131.99432 -89.251663) (xy 132.207 -89.765119)
(xy 132.207 -90.320881) (xy 131.99432 -90.834337) (xy 131.847157 -90.9815) (xy 143.19406 -90.9815) (xy 143.19406 -89.2315)
(xy 143.243343 -88.983735) (xy 143.383691 -88.773691) (xy 143.593735 -88.633343) (xy 143.8415 -88.58406) (xy 145.5915 -88.58406)
(xy 145.839265 -88.633343) (xy 146.049309 -88.773691) (xy 146.189657 -88.983735) (xy 146.23894 -89.2315) (xy 146.23894 -90.9815)
(xy 146.189657 -91.229265) (xy 146.049309 -91.439309) (xy 145.839265 -91.579657) (xy 145.5915 -91.62894) (xy 143.8415 -91.62894)
(xy 143.593735 -91.579657) (xy 143.383691 -91.439309) (xy 143.243343 -91.229265) (xy 143.19406 -90.9815) (xy 131.847157 -90.9815)
(xy 131.601337 -91.22732) (xy 131.394487 -91.313) (xy 131.601337 -91.39868) (xy 131.99432 -91.791663) (xy 132.207 -92.305119)
(xy 132.207 -92.860881) (xy 131.99432 -93.374337) (xy 131.601337 -93.76732) (xy 131.394487 -93.853) (xy 131.584538 -93.931722)
(xy 143.0815 -93.931722) (xy 143.0815 -93.281278) (xy 143.330414 -92.680347) (xy 143.790347 -92.220414) (xy 144.391278 -91.9715)
(xy 145.041722 -91.9715) (xy 145.642653 -92.220414) (xy 146.102586 -92.680347) (xy 146.3515 -93.281278) (xy 146.3515 -93.931722)
(xy 146.102586 -94.532653) (xy 145.642653 -94.992586) (xy 145.041722 -95.2415) (xy 144.391278 -95.2415) (xy 143.790347 -94.992586)
(xy 143.330414 -94.532653) (xy 143.0815 -93.931722) (xy 131.584538 -93.931722) (xy 131.601337 -93.93868) (xy 131.99432 -94.331663)
(xy 132.207 -94.845119) (xy 132.207 -95.400881) (xy 131.99432 -95.914337) (xy 131.601337 -96.30732) (xy 131.394487 -96.393)
(xy 131.601337 -96.47868) (xy 131.99432 -96.871663) (xy 132.207 -97.385119) (xy 132.207 -97.431722) (xy 143.0815 -97.431722)
(xy 143.0815 -96.781278) (xy 143.330414 -96.180347) (xy 143.790347 -95.720414) (xy 144.391278 -95.4715) (xy 145.041722 -95.4715)
(xy 145.642653 -95.720414) (xy 146.102586 -96.180347) (xy 146.3515 -96.781278) (xy 146.3515 -97.431722) (xy 146.102586 -98.032653)
(xy 145.642653 -98.492586) (xy 145.041722 -98.7415) (xy 144.391278 -98.7415) (xy 143.790347 -98.492586) (xy 143.330414 -98.032653)
(xy 143.0815 -97.431722) (xy 132.207 -97.431722) (xy 132.207 -97.940881) (xy 131.99432 -98.454337) (xy 131.601337 -98.84732)
(xy 131.394487 -98.933) (xy 131.601337 -99.01868) (xy 131.99432 -99.411663) (xy 132.207 -99.925119) (xy 132.207 -100.480881)
(xy 132.137985 -100.6475) (xy 134.045887 -100.6475) (xy 134.15726 -100.087591) (xy 134.474423 -99.612923) (xy 134.949091 -99.29576)
(xy 135.367667 -99.2125) (xy 135.650333 -99.2125) (xy 136.068909 -99.29576) (xy 136.543577 -99.612923) (xy 136.86074 -100.087591)
(xy 136.972113 -100.6475) (xy 136.915578 -100.931722) (xy 143.0815 -100.931722) (xy 143.0815 -100.281278) (xy 143.330414 -99.680347)
(xy 143.790347 -99.220414) (xy 144.391278 -98.9715) (xy 145.041722 -98.9715) (xy 145.642653 -99.220414) (xy 146.102586 -99.680347)
(xy 146.3515 -100.281278) (xy 146.3515 -100.931722) (xy 146.102586 -101.532653) (xy 145.642653 -101.992586) (xy 145.041722 -102.2415)
(xy 144.391278 -102.2415) (xy 143.790347 -101.992586) (xy 143.330414 -101.532653) (xy 143.0815 -100.931722) (xy 136.915578 -100.931722)
(xy 136.86074 -101.207409) (xy 136.543577 -101.682077) (xy 136.068909 -101.99924) (xy 135.650333 -102.0825) (xy 135.367667 -102.0825)
(xy 134.949091 -101.99924) (xy 134.474423 -101.682077) (xy 134.15726 -101.207409) (xy 134.045887 -100.6475) (xy 132.137985 -100.6475)
(xy 131.99432 -100.994337) (xy 131.601337 -101.38732) (xy 131.394487 -101.473) (xy 131.601337 -101.55868) (xy 131.99432 -101.951663)
(xy 132.207 -102.465119) (xy 132.207 -103.020881) (xy 131.99432 -103.534337) (xy 131.601337 -103.92732) (xy 131.394487 -104.013)
(xy 131.601337 -104.09868) (xy 131.934379 -104.431722) (xy 143.0815 -104.431722) (xy 143.0815 -103.781278) (xy 143.330414 -103.180347)
(xy 143.790347 -102.720414) (xy 144.391278 -102.4715) (xy 145.041722 -102.4715) (xy 145.642653 -102.720414) (xy 146.102586 -103.180347)
(xy 146.3515 -103.781278) (xy 146.3515 -104.431722) (xy 146.102586 -105.032653) (xy 145.642653 -105.492586) (xy 145.041722 -105.7415)
(xy 144.391278 -105.7415) (xy 143.790347 -105.492586) (xy 143.330414 -105.032653) (xy 143.0815 -104.431722) (xy 131.934379 -104.431722)
(xy 131.99432 -104.491663) (xy 132.207 -105.005119) (xy 132.207 -105.560881) (xy 131.99432 -106.074337) (xy 131.601337 -106.46732)
(xy 131.394487 -106.553) (xy 131.601337 -106.63868) (xy 131.99432 -107.031663) (xy 132.207 -107.545119) (xy 132.207 -108.100881)
(xy 132.019752 -108.552939) (xy 134.074 -108.552939) (xy 134.074 -107.982061) (xy 134.292466 -107.454638) (xy 134.696138 -107.050966)
(xy 135.223561 -106.8325) (xy 135.794439 -106.8325) (xy 136.321862 -107.050966) (xy 136.725534 -107.454638) (xy 136.923148 -107.931722)
(xy 143.0815 -107.931722) (xy 143.0815 -107.281278) (xy 143.330414 -106.680347) (xy 143.790347 -106.220414) (xy 144.391278 -105.9715)
(xy 145.041722 -105.9715) (xy 145.642653 -106.220414) (xy 146.102586 -106.680347) (xy 146.3515 -107.281278) (xy 146.3515 -107.931722)
(xy 146.102586 -108.532653) (xy 145.642653 -108.992586) (xy 145.041722 -109.2415) (xy 144.391278 -109.2415) (xy 143.790347 -108.992586)
(xy 143.330414 -108.532653) (xy 143.0815 -107.931722) (xy 136.923148 -107.931722) (xy 136.944 -107.982061) (xy 136.944 -108.552939)
(xy 136.725534 -109.080362) (xy 136.321862 -109.484034) (xy 135.794439 -109.7025) (xy 135.223561 -109.7025) (xy 134.696138 -109.484034)
(xy 134.292466 -109.080362) (xy 134.074 -108.552939) (xy 132.019752 -108.552939) (xy 131.99432 -108.614337) (xy 131.601337 -109.00732)
(xy 131.394487 -109.093) (xy 131.601337 -109.17868) (xy 131.99432 -109.571663) (xy 132.207 -110.085119) (xy 132.207 -110.640881)
(xy 131.99432 -111.154337) (xy 131.601337 -111.54732) (xy 131.394487 -111.633) (xy 131.601337 -111.71868) (xy 131.99432 -112.111663)
(xy 132.207 -112.625119) (xy 132.207 -113.180881) (xy 131.99432 -113.694337) (xy 131.720157 -113.9685) (xy 143.13056 -113.9685)
(xy 143.13056 -112.2185) (xy 143.179843 -111.970735) (xy 143.320191 -111.760691) (xy 143.530235 -111.620343) (xy 143.778 -111.57106)
(xy 145.528 -111.57106) (xy 145.775765 -111.620343) (xy 145.985809 -111.760691) (xy 146.126157 -111.970735) (xy 146.17544 -112.2185)
(xy 146.17544 -113.9685) (xy 146.126157 -114.216265) (xy 145.985809 -114.426309) (xy 145.775765 -114.566657) (xy 145.528 -114.61594)
(xy 143.778 -114.61594) (xy 143.530235 -114.566657) (xy 143.320191 -114.426309) (xy 143.179843 -114.216265) (xy 143.13056 -113.9685)
(xy 131.720157 -113.9685) (xy 131.601337 -114.08732) (xy 131.394487 -114.173) (xy 131.601337 -114.25868) (xy 131.99432 -114.651663)
(xy 132.207 -115.165119) (xy 132.207 -115.720881) (xy 131.99432 -116.234337) (xy 131.601337 -116.62732) (xy 131.394487 -116.713)
(xy 131.601337 -116.79868) (xy 131.99432 -117.191663) (xy 132.207 -117.705119) (xy 132.207 -118.260881) (xy 131.99432 -118.774337)
(xy 131.601337 -119.16732) (xy 131.394487 -119.253) (xy 131.601337 -119.33868) (xy 131.99432 -119.731663) (xy 132.207 -120.245119)
(xy 132.207 -120.800881) (xy 131.99432 -121.314337) (xy 131.601337 -121.70732) (xy 131.394487 -121.793) (xy 131.601337 -121.87868)
(xy 131.99432 -122.271663) (xy 132.207 -122.785119) (xy 132.207 -123.340881) (xy 131.99432 -123.854337) (xy 131.601337 -124.24732)
(xy 131.394487 -124.333) (xy 131.601337 -124.41868) (xy 131.99432 -124.811663) (xy 132.207 -125.325119) (xy 132.207 -125.880881)
(xy 131.99432 -126.394337) (xy 131.601337 -126.78732) (xy 131.394487 -126.873) (xy 131.601337 -126.95868) (xy 131.99432 -127.351663)
(xy 132.207 -127.865119) (xy 132.207 -128.420881) (xy 131.99432 -128.934337) (xy 131.601337 -129.32732) (xy 131.394487 -129.413)
(xy 131.601337 -129.49868) (xy 131.99432 -129.891663) (xy 132.207 -130.405119) (xy 132.207 -130.960881) (xy 131.99432 -131.474337)
(xy 131.601337 -131.86732) (xy 131.087881 -132.08) (xy 130.532119 -132.08) (xy 130.42894 -132.037262) (xy 129.520731 -132.94547)
(xy 129.478329 -133.008929) (xy 129.43108 -133.0405) (xy 131.673369 -133.0405) (xy 134.624 -130.089868) (xy 134.624001 -128.874259)
(xy 134.569138 -128.851534) (xy 134.165466 -128.447862) (xy 133.947 -127.920439) (xy 133.947 -127.349561) (xy 134.165466 -126.822138)
(xy 134.569138 -126.418466) (xy 135.096561 -126.2) (xy 135.667439 -126.2) (xy 136.194862 -126.418466) (xy 136.279 -126.502604)
(xy 136.279001 -121.141502) (xy 135.941909 -121.36674) (xy 135.523333 -121.45) (xy 135.240667 -121.45) (xy 134.822091 -121.36674)
(xy 134.347423 -121.049577) (xy 134.03026 -120.574909) (xy 133.918887 -120.015) (xy 134.03026 -119.455091) (xy 134.347423 -118.980423)
(xy 134.822091 -118.66326) (xy 135.240667 -118.58) (xy 135.523333 -118.58) (xy 135.564296 -118.588148) (xy 135.455854 -118.425854)
(xy 135.367765 -117.983) (xy 135.455854 -117.540146) (xy 135.706712 -117.164712) (xy 136.082146 -116.913854) (xy 136.525 -116.825765)
(xy 136.967854 -116.913854) (xy 136.975139 -116.918722) (xy 143.018 -116.918722) (xy 143.018 -116.268278) (xy 143.266914 -115.667347)
(xy 143.726847 -115.207414) (xy 144.327778 -114.9585) (xy 144.978222 -114.9585) (xy 145.579153 -115.207414) (xy 146.039086 -115.667347)
(xy 146.288 -116.268278) (xy 146.288 -116.918722) (xy 146.039086 -117.519653) (xy 145.579153 -117.979586) (xy 144.978222 -118.2285)
(xy 144.327778 -118.2285) (xy 143.726847 -117.979586) (xy 143.266914 -117.519653) (xy 143.018 -116.918722) (xy 136.975139 -116.918722)
(xy 137.248523 -117.101392) (xy 138.137521 -117.990389) (xy 138.232289 -118.053711) (xy 138.483146 -118.429145) (xy 138.549 -118.760217)
(xy 138.571235 -118.872) (xy 138.549 -118.983783) (xy 138.549 -120.418722) (xy 143.018 -120.418722) (xy 143.018 -119.768278)
(xy 143.266914 -119.167347) (xy 143.726847 -118.707414) (xy 144.327778 -118.4585) (xy 144.978222 -118.4585) (xy 145.579153 -118.707414)
(xy 146.039086 -119.167347) (xy 146.288 -119.768278) (xy 146.288 -120.418722) (xy 146.039086 -121.019653) (xy 145.579153 -121.479586)
(xy 144.978222 -121.7285) (xy 144.327778 -121.7285) (xy 143.726847 -121.479586) (xy 143.266914 -121.019653) (xy 143.018 -120.418722)
(xy 138.549 -120.418722) (xy 138.549 -126.695199) (xy 141.135171 -124.109027) (xy 141.177572 -124.04557) (xy 141.428964 -123.877595)
(xy 141.650649 -123.833499) (xy 141.650653 -123.833499) (xy 141.7255 -123.818611) (xy 141.800347 -123.833499) (xy 143.018 -123.833499)
(xy 143.018 -123.268278) (xy 143.266914 -122.667347) (xy 143.726847 -122.207414) (xy 144.327778 -121.9585) (xy 144.978222 -121.9585)
(xy 145.579153 -122.207414) (xy 146.039086 -122.667347) (xy 146.288 -123.268278) (xy 146.288 -123.918722) (xy 146.039086 -124.519653)
(xy 145.579153 -124.979586) (xy 144.978222 -125.2285) (xy 144.327778 -125.2285) (xy 144.169029 -125.162744) (xy 143.949538 -125.309403)
(xy 143.727853 -125.353499) (xy 143.727848 -125.353499) (xy 143.653001 -125.368387) (xy 143.578154 -125.353499) (xy 142.040303 -125.353499)
(xy 141.123802 -126.27) (xy 143.224394 -126.27) (xy 143.266914 -126.167347) (xy 143.726847 -125.707414) (xy 144.327778 -125.4585)
(xy 144.978222 -125.4585) (xy 145.579153 -125.707414) (xy 146.039086 -126.167347) (xy 146.288 -126.768278) (xy 146.288 -127.418722)
(xy 146.039086 -128.019653) (xy 145.579153 -128.479586) (xy 144.978222 -128.7285) (xy 144.327778 -128.7285) (xy 143.726847 -128.479586)
(xy 143.266914 -128.019653) (xy 143.171789 -127.79) (xy 141.064302 -127.79) (xy 139.084302 -129.77) (xy 143.224394 -129.77)
(xy 143.266914 -129.667347) (xy 143.726847 -129.207414) (xy 144.327778 -128.9585) (xy 144.978222 -128.9585) (xy 145.579153 -129.207414)
(xy 146.039086 -129.667347) (xy 146.288 -130.268278) (xy 146.288 -130.918722) (xy 146.039086 -131.519653) (xy 145.579153 -131.979586)
(xy 144.978222 -132.2285) (xy 144.327778 -132.2285) (xy 143.726847 -131.979586) (xy 143.266914 -131.519653) (xy 143.171789 -131.29)
(xy 138.516802 -131.29) (xy 133.368831 -136.43797) (xy 133.326429 -136.501429) (xy 133.075037 -136.669404) (xy 132.853352 -136.7135)
(xy 132.853347 -136.7135) (xy 132.7785 -136.728388) (xy 132.703653 -136.7135) (xy 121.726802 -136.7135) (xy 121.484802 -136.9555)
(xy 143.06706 -136.9555) (xy 143.06706 -135.2055) (xy 143.116343 -134.957735) (xy 143.256691 -134.747691) (xy 143.466735 -134.607343)
(xy 143.7145 -134.55806) (xy 145.4645 -134.55806) (xy 145.712265 -134.607343) (xy 145.922309 -134.747691) (xy 146.062657 -134.957735)
(xy 146.11194 -135.2055) (xy 146.11194 -136.9555) (xy 146.062657 -137.203265) (xy 145.922309 -137.413309) (xy 145.712265 -137.553657)
(xy 145.4645 -137.60294) (xy 143.7145 -137.60294) (xy 143.466735 -137.553657) (xy 143.256691 -137.413309) (xy 143.116343 -137.203265)
(xy 143.06706 -136.9555) (xy 121.484802 -136.9555) (xy 121.41 -137.030301) (xy 121.41 -139.905722) (xy 142.9545 -139.905722)
(xy 142.9545 -139.255278) (xy 143.203414 -138.654347) (xy 143.663347 -138.194414) (xy 144.264278 -137.9455) (xy 144.914722 -137.9455)
(xy 145.515653 -138.194414) (xy 145.975586 -138.654347) (xy 146.2245 -139.255278) (xy 146.2245 -139.905722) (xy 145.975586 -140.506653)
(xy 145.515653 -140.966586) (xy 144.914722 -141.2155) (xy 144.264278 -141.2155) (xy 143.663347 -140.966586) (xy 143.203414 -140.506653)
(xy 142.9545 -139.905722) (xy 121.41 -139.905722) (xy 121.41 -142.044289) (xy 121.527431 -142.16172) (xy 121.685 -142.542126)
(xy 121.685 -142.953874) (xy 121.527431 -143.33428) (xy 121.23628 -143.625431) (xy 121.164576 -143.655132) (xy 121.177 -143.685126)
(xy 121.177 -144.096874) (xy 121.019431 -144.47728) (xy 120.72828 -144.768431) (xy 120.347874 -144.926) (xy 119.936126 -144.926)
(xy 119.55572 -144.768431) (xy 119.5065 -144.719211) (xy 119.5065 -145.055412) (xy 119.363946 -145.399569) (xy 132.6415 -145.399569)
(xy 132.6415 -144.510431) (xy 132.981759 -143.688974) (xy 133.610474 -143.060259) (xy 134.431931 -142.72) (xy 135.321069 -142.72)
(xy 136.142526 -143.060259) (xy 136.487989 -143.405722) (xy 142.9545 -143.405722) (xy 142.9545 -142.755278) (xy 143.203414 -142.154347)
(xy 143.663347 -141.694414) (xy 144.264278 -141.4455) (xy 144.914722 -141.4455) (xy 145.515653 -141.694414) (xy 145.975586 -142.154347)
(xy 146.2245 -142.755278) (xy 146.2245 -143.405722) (xy 145.975586 -144.006653) (xy 145.515653 -144.466586) (xy 144.914722 -144.7155)
(xy 144.264278 -144.7155) (xy 143.663347 -144.466586) (xy 143.203414 -144.006653) (xy 142.9545 -143.405722) (xy 136.487989 -143.405722)
(xy 136.771241 -143.688974) (xy 137.1115 -144.510431) (xy 137.1115 -145.399569) (xy 136.771241 -146.221026) (xy 136.142526 -146.849741)
(xy 136.007377 -146.905722) (xy 142.9545 -146.905722) (xy 142.9545 -146.255278) (xy 143.203414 -145.654347) (xy 143.663347 -145.194414)
(xy 144.264278 -144.9455) (xy 144.914722 -144.9455) (xy 145.515653 -145.194414) (xy 145.975586 -145.654347) (xy 146.2245 -146.255278)
(xy 146.2245 -146.905722) (xy 145.975586 -147.506653) (xy 145.515653 -147.966586) (xy 144.914722 -148.2155) (xy 144.264278 -148.2155)
(xy 143.663347 -147.966586) (xy 143.203414 -147.506653) (xy 142.9545 -146.905722) (xy 136.007377 -146.905722) (xy 135.321069 -147.19)
(xy 134.431931 -147.19) (xy 133.610474 -146.849741) (xy 132.981759 -146.221026) (xy 132.6415 -145.399569) (xy 119.363946 -145.399569)
(xy 119.284228 -145.592024) (xy 118.873524 -146.002728) (xy 118.795613 -146.035) (xy 118.873524 -146.067272) (xy 119.284228 -146.477976)
(xy 119.5065 -147.014588) (xy 119.5065 -147.595412) (xy 119.284228 -148.132024) (xy 118.873524 -148.542728) (xy 118.795613 -148.575)
(xy 118.873524 -148.607272) (xy 119.284228 -149.017976) (xy 119.5065 -149.554588) (xy 119.5065 -149.573939) (xy 126.0095 -149.573939)
(xy 126.0095 -149.003061) (xy 126.227966 -148.475638) (xy 126.631638 -148.071966) (xy 127.159061 -147.8535) (xy 127.729939 -147.8535)
(xy 128.257362 -148.071966) (xy 128.661034 -148.475638) (xy 128.8795 -149.003061) (xy 128.8795 -149.2885) (xy 133.601387 -149.2885)
(xy 133.71276 -148.728591) (xy 134.029923 -148.253923) (xy 134.504591 -147.93676) (xy 134.923167 -147.8535) (xy 135.205833 -147.8535)
(xy 135.624409 -147.93676) (xy 136.099077 -148.253923) (xy 136.41624 -148.728591) (xy 136.527613 -149.2885) (xy 136.41624 -149.848409)
(xy 136.099077 -150.323077) (xy 135.975391 -150.405722) (xy 142.9545 -150.405722) (xy 142.9545 -149.755278) (xy 143.203414 -149.154347)
(xy 143.663347 -148.694414) (xy 144.264278 -148.4455) (xy 144.914722 -148.4455) (xy 145.515653 -148.694414) (xy 145.975586 -149.154347)
(xy 146.2245 -149.755278) (xy 146.2245 -150.405722) (xy 145.975586 -151.006653) (xy 145.515653 -151.466586) (xy 144.914722 -151.7155)
(xy 144.264278 -151.7155) (xy 143.663347 -151.466586) (xy 143.203414 -151.006653) (xy 142.9545 -150.405722) (xy 135.975391 -150.405722)
(xy 135.624409 -150.64024) (xy 135.205833 -150.7235) (xy 134.923167 -150.7235) (xy 134.504591 -150.64024) (xy 134.029923 -150.323077)
(xy 133.71276 -149.848409) (xy 133.601387 -149.2885) (xy 128.8795 -149.2885) (xy 128.8795 -149.573939) (xy 128.661034 -150.101362)
(xy 128.257362 -150.505034) (xy 127.729939 -150.7235) (xy 127.159061 -150.7235) (xy 126.631638 -150.505034) (xy 126.227966 -150.101362)
(xy 126.0095 -149.573939) (xy 119.5065 -149.573939) (xy 119.5065 -150.135412) (xy 119.284228 -150.672024) (xy 118.873524 -151.082728)
(xy 118.811086 -151.108591) (xy 118.815544 -151.110437) (xy 118.892748 -151.359147) (xy 118.0465 -152.205395) (xy 117.200252 -151.359147)
(xy 117.277456 -151.110437) (xy 117.282219 -151.108717) (xy 117.219476 -151.082728) (xy 116.808772 -150.672024) (xy 116.5865 -150.135412)
(xy 116.5865 -149.554588) (xy 116.808772 -149.017976) (xy 117.219476 -148.607272) (xy 117.297387 -148.575) (xy 117.219476 -148.542728)
(xy 116.808772 -148.132024) (xy 116.5865 -147.595412) (xy 116.5865 -147.014588) (xy 116.808772 -146.477976) (xy 117.219476 -146.067272)
(xy 117.297387 -146.035) (xy 117.219476 -146.002728) (xy 116.808772 -145.592024) (xy 116.5865 -145.055412) (xy 116.5865 -144.875383)
(xy 116.583596 -144.871037) (xy 116.524611 -144.5745) (xy 116.583596 -144.277963) (xy 116.59033 -144.267884) (xy 116.442097 -144.046037)
(xy 116.398001 -143.824352) (xy 116.398001 -143.824348) (xy 116.383113 -143.749501) (xy 116.398001 -143.674654) (xy 116.398002 -135.316304)
(xy 112.79953 -131.717831) (xy 112.736071 -131.675429) (xy 112.568096 -131.424036) (xy 112.524 -131.202351) (xy 112.524 -131.202347)
(xy 112.509112 -131.1275) (xy 112.524 -131.052653) (xy 112.524001 -110.136031) (xy 112.052962 -110.60707) (xy 111.121243 -110.993)
(xy 110.112757 -110.993) (xy 109.181038 -110.60707) (xy 108.46793 -109.893962) (xy 108.082 -108.962243) (xy 108.082 -107.953757)
(xy 108.46793 -107.022038) (xy 109.181038 -106.30893) (xy 110.112757 -105.923) (xy 111.121243 -105.923) (xy 112.052962 -106.30893)
(xy 112.524001 -106.779969) (xy 112.524001 -102.994303) (xy 107.97353 -98.443831) (xy 107.910071 -98.401429) (xy 107.742096 -98.150036)
(xy 107.698 -97.928351) (xy 107.698 -97.928347) (xy 107.683112 -97.8535) (xy 104.894 -97.8535) (xy 104.894 -116.433448)
(xy 105.028309 -116.523191) (xy 105.168657 -116.733235) (xy 105.21794 -116.981) (xy 105.21794 -118.731) (xy 105.168657 -118.978765)
(xy 105.028309 -119.188809) (xy 104.818265 -119.329157) (xy 104.5705 -119.37844) (xy 102.8205 -119.37844) (xy 102.572735 -119.329157)
(xy 102.362691 -119.188809) (xy 102.222343 -118.978765) (xy 102.17306 -118.731) (xy 102.17306 -116.981) (xy 102.222343 -116.733235)
(xy 102.362691 -116.523191) (xy 102.572735 -116.382843) (xy 102.624001 -116.372646) (xy 102.624001 -116.15113) (xy 102.133023 -116.642108)
(xy 102.017191 -116.719505) (xy 101.551893 -117.184802) (xy 101.7055 -117.555642) (xy 101.7055 -118.156358) (xy 101.475616 -118.711346)
(xy 101.050846 -119.136116) (xy 100.495858 -119.366) (xy 99.895142 -119.366) (xy 99.340154 -119.136116) (xy 98.915384 -118.711346)
(xy 98.6855 -118.156358) (xy 98.193901 -118.156358) (xy 98.191079 -118.221458) (xy 98.011453 -118.655116) (xy 97.75756 -118.738455)
(xy 96.875105 -117.856) (xy 96.515895 -117.856) (xy 95.63344 -118.738455) (xy 95.379547 -118.655116) (xy 95.17391 -118.090694)
(xy 94.7055 -118.090694) (xy 94.7055 -118.156358) (xy 94.475616 -118.711346) (xy 94.268902 -118.91806) (xy 95.813045 -118.91806)
(xy 96.6955 -118.035605) (xy 97.577955 -118.91806) (xy 97.494616 -119.171953) (xy 96.930194 -119.37759) (xy 96.330042 -119.351579)
(xy 95.896384 -119.171953) (xy 95.813045 -118.91806) (xy 94.268902 -118.91806) (xy 94.050846 -119.136116) (xy 93.495858 -119.366)
(xy 92.895142 -119.366) (xy 92.340154 -119.136116) (xy 91.915384 -118.711346) (xy 91.6855 -118.156358) (xy 91.2055 -118.156358)
(xy 90.975616 -118.711346) (xy 90.550846 -119.136116) (xy 89.995858 -119.366) (xy 89.395142 -119.366) (xy 88.840154 -119.136116)
(xy 88.415384 -118.711346) (xy 88.1855 -118.156358) (xy 87.7055 -118.156358) (xy 87.475616 -118.711346) (xy 87.050846 -119.136116)
(xy 86.495858 -119.366) (xy 85.895142 -119.366) (xy 85.340154 -119.136116) (xy 84.915384 -118.711346) (xy 84.6855 -118.156358)
(xy 77.198674 -118.156358) (xy 77.000962 -118.35407) (xy 76.069243 -118.74) (xy 75.060757 -118.74) (xy 74.129038 -118.35407)
(xy 73.41593 -117.640962) (xy 73.03 -116.709243) (xy 58.09789 -116.709243) (xy 48.246824 -126.560308) (xy 64.932 -126.560308)
(xy 64.932 -125.392692) (xy 65.378827 -124.313956) (xy 66.204456 -123.488327) (xy 67.283192 -123.0415) (xy 68.450808 -123.0415)
(xy 69.529544 -123.488327) (xy 70.355173 -124.313956) (xy 70.802 -125.392692) (xy 70.802 -126.560308) (xy 70.355173 -127.639044)
(xy 69.529544 -128.464673) (xy 68.450808 -128.9115) (xy 67.283192 -128.9115) (xy 66.204456 -128.464673) (xy 65.378827 -127.639044)
(xy 64.932 -126.560308) (xy 48.246824 -126.560308) (xy 45.305613 -129.501518) (xy 45.242289 -129.596289) (xy 44.866855 -129.847146)
(xy 44.535783 -129.913) (xy 44.424 -129.935235) (xy 44.312217 -129.913) (xy 31.221078 -129.913) (xy 30.979657 -130.013)
(xy 30.488343 -130.013) (xy 30.034429 -129.824982) (xy 29.687018 -129.477571) (xy 29.499 -129.023657) (xy 16.560458 -129.023657)
(xy 29.715302 -142.1785) (xy 59.678653 -142.1785) (xy 59.7535 -142.163612) (xy 59.828347 -142.1785) (xy 59.828352 -142.1785)
(xy 60.050037 -142.222596) (xy 60.301429 -142.390571) (xy 60.343831 -142.45403) (xy 65.334474 -147.444672) (xy 65.39793 -147.487072)
(xy 65.514193 -147.661071) (xy 65.565905 -147.738463) (xy 65.5926 -147.872671) (xy 65.610001 -147.960149) (xy 65.610001 -147.960153)
(xy 65.624889 -148.035001) (xy 65.610001 -148.109849) (xy 65.610001 -151.658077) (xy 65.979561 -151.505) (xy 66.550439 -151.505)
(xy 67.077862 -151.723466) (xy 67.481534 -152.127138) (xy 67.535 -152.256216) (xy 67.588466 -152.127138) (xy 67.992138 -151.723466)
(xy 68.519561 -151.505) (xy 69.090439 -151.505) (xy 69.617862 -151.723466) (xy 70.021534 -152.127138) (xy 70.24 -152.654561)
(xy 70.24 -153.225439) (xy 70.021534 -153.752862) (xy 69.617862 -154.156534) (xy 69.488784 -154.21) (xy 69.617862 -154.263466)
(xy 70.021534 -154.667138) (xy 70.24 -155.194561) (xy 70.24 -155.765439) (xy 70.021534 -156.292862) (xy 69.617862 -156.696534)
(xy 69.090439 -156.915) (xy 68.519561 -156.915) (xy 67.992138 -156.696534) (xy 67.588466 -156.292862) (xy 67.535 -156.163784)
(xy 67.481534 -156.292862) (xy 67.077862 -156.696534) (xy 66.550439 -156.915) (xy 65.979561 -156.915) (xy 65.452138 -156.696534)
(xy 65.048466 -156.292862) (xy 64.995 -156.163784) (xy 64.941534 -156.292862) (xy 64.537862 -156.696534) (xy 64.010439 -156.915)
(xy 63.439561 -156.915) (xy 63.244 -156.833996) (xy 63.244 -156.911199) (xy 67.243802 -160.911) (xy 74.15784 -160.911)
(xy 74.129038 -160.89907) (xy 73.41593 -160.185962) (xy 73.03 -159.254243) (xy 73.03 -158.245757) (xy 73.41593 -157.314038)
(xy 74.129038 -156.60093) (xy 75.060757 -156.215) (xy 76.069243 -156.215) (xy 77.000962 -156.60093) (xy 77.71407 -157.314038)
(xy 78.1 -158.245757) (xy 78.1 -159.254243) (xy 77.776177 -160.036021) (xy 81.13417 -156.678028) (xy 81.176571 -156.614571)
(xy 81.240027 -156.572171) (xy 81.427962 -156.446596) (xy 81.458212 -156.440579) (xy 81.649648 -156.4025) (xy 81.649652 -156.4025)
(xy 81.7245 -156.387612) (xy 81.799348 -156.4025) (xy 82.785 -156.4025) (xy 82.785 -156.194626) (xy 82.942569 -155.81422)
(xy 83.23372 -155.523069) (xy 83.614126 -155.3655) (xy 83.780199 -155.3655) (xy 84.113691 -155.032008) (xy 84.017243 -154.887665)
(xy 83.96796 -154.6399) (xy 83.96796 -153.6399) (xy 84.017243 -153.392135) (xy 84.157591 -153.182091) (xy 84.367635 -153.041743)
(xy 84.6154 -152.99246) (xy 85.6154 -152.99246) (xy 85.854 -153.03992) (xy 85.854 -152.410306) (xy 85.6281 -152.45524)
(xy 84.6281 -152.45524) (xy 84.380335 -152.405957) (xy 84.170291 -152.265609) (xy 84.038118 -152.0678) (xy 82.974311 -152.0678)
(xy 82.85688 -152.185231) (xy 82.476474 -152.3428) (xy 82.064726 -152.3428) (xy 81.68432 -152.185231) (xy 81.393169 -151.89408)
(xy 81.2356 -151.513674) (xy 81.2356 -151.101926) (xy 81.393169 -150.72152) (xy 81.68432 -150.430369) (xy 82.064726 -150.2728)
(xy 82.476474 -150.2728) (xy 82.85688 -150.430369) (xy 82.974311 -150.5478) (xy 84.038118 -150.5478) (xy 84.170291 -150.349991)
(xy 84.380335 -150.209643) (xy 84.6281 -150.16036) (xy 85.6281 -150.16036) (xy 85.854001 -150.205294) (xy 85.854001 -149.622237)
(xy 85.812365 -149.650057) (xy 85.5646 -149.69934) (xy 84.5646 -149.69934) (xy 84.316835 -149.650057) (xy 84.106791 -149.509709)
(xy 83.966443 -149.299665) (xy 83.91716 -149.0519) (xy 83.91716 -148.0519) (xy 83.966443 -147.804135) (xy 84.106791 -147.594091)
(xy 84.316835 -147.453743) (xy 84.5646 -147.40446) (xy 85.5646 -147.40446) (xy 85.812365 -147.453743) (xy 85.854001 -147.481563)
(xy 85.854001 -146.502308) (xy 85.837765 -146.513157) (xy 85.59 -146.56244) (xy 84.59 -146.56244) (xy 84.342235 -146.513157)
(xy 84.132191 -146.372809) (xy 83.991843 -146.162765) (xy 83.94256 -145.915) (xy 83.94256 -144.915) (xy 83.991843 -144.667235)
(xy 84.132191 -144.457191) (xy 84.342235 -144.316843) (xy 84.59 -144.26756) (xy 85.59 -144.26756) (xy 85.837765 -144.316843)
(xy 86.047809 -144.457191) (xy 86.188157 -144.667235) (xy 86.201856 -144.736105) (xy 86.335037 -144.762596) (xy 86.586429 -144.930571)
(xy 86.628831 -144.99403) (xy 87.098473 -145.463671) (xy 87.161929 -145.506071) (xy 87.329904 -145.757463) (xy 87.374 -145.979148)
(xy 87.374 -145.979153) (xy 87.388888 -146.054) (xy 87.374 -146.128847) (xy 87.374 -152.60775) (xy 116.574657 -152.60775)
(xy 116.601452 -152.027544) (xy 116.771937 -151.615956) (xy 117.020647 -151.538752) (xy 117.866895 -152.385) (xy 118.226105 -152.385)
(xy 119.072353 -151.538752) (xy 119.321063 -151.615956) (xy 119.518343 -152.16225) (xy 119.491548 -152.742456) (xy 119.321063 -153.154044)
(xy 119.072353 -153.231248) (xy 118.226105 -152.385) (xy 117.866895 -152.385) (xy 117.020647 -153.231248) (xy 116.771937 -153.154044)
(xy 116.574657 -152.60775) (xy 87.374 -152.60775) (xy 87.374 -155.704698) (xy 87.436802 -155.7675) (xy 90.553699 -155.7675)
(xy 91.320672 -155.000526) (xy 91.363072 -154.93707) (xy 91.614464 -154.769095) (xy 91.836149 -154.724999) (xy 91.836153 -154.724999)
(xy 91.911 -154.710111) (xy 91.985847 -154.724999) (xy 92.926152 -154.724999) (xy 93.000999 -154.710111) (xy 93.075846 -154.724999)
(xy 93.075851 -154.724999) (xy 93.297536 -154.769095) (xy 93.548928 -154.93707) (xy 93.59133 -155.000529) (xy 93.806213 -155.215412)
(xy 116.5865 -155.215412) (xy 116.5865 -154.634588) (xy 116.808772 -154.097976) (xy 117.219476 -153.687272) (xy 117.281914 -153.661409)
(xy 117.277456 -153.659563) (xy 117.200252 -153.410853) (xy 118.0465 -152.564605) (xy 118.892748 -153.410853) (xy 118.815544 -153.659563)
(xy 118.810781 -153.661283) (xy 118.873524 -153.687272) (xy 119.091974 -153.905722) (xy 142.9545 -153.905722) (xy 142.9545 -153.255278)
(xy 143.203414 -152.654347) (xy 143.663347 -152.194414) (xy 144.264278 -151.9455) (xy 144.914722 -151.9455) (xy 145.515653 -152.194414)
(xy 145.975586 -152.654347) (xy 146.2245 -153.255278) (xy 146.2245 -153.905722) (xy 145.975586 -154.506653) (xy 145.515653 -154.966586)
(xy 144.914722 -155.2155) (xy 144.264278 -155.2155) (xy 143.663347 -154.966586) (xy 143.203414 -154.506653) (xy 142.9545 -153.905722)
(xy 119.091974 -153.905722) (xy 119.284228 -154.097976) (xy 119.5065 -154.634588) (xy 119.5065 -155.215412) (xy 119.284228 -155.752024)
(xy 118.873524 -156.162728) (xy 118.735257 -156.22) (xy 119.321069 -156.22) (xy 120.142526 -156.560259) (xy 120.771241 -157.188974)
(xy 121.1115 -158.010431) (xy 121.1115 -158.899569) (xy 120.771241 -159.721026) (xy 120.142526 -160.349741) (xy 119.321069 -160.69)
(xy 118.431931 -160.69) (xy 117.610474 -160.349741) (xy 116.981759 -159.721026) (xy 116.6415 -158.899569) (xy 116.6415 -158.010431)
(xy 116.981759 -157.188974) (xy 117.610474 -156.560259) (xy 118.033586 -156.385) (xy 117.756088 -156.385) (xy 117.219476 -156.162728)
(xy 116.808772 -155.752024) (xy 116.5865 -155.215412) (xy 93.806213 -155.215412) (xy 93.95647 -155.365669) (xy 94.019929 -155.408071)
(xy 94.187904 -155.659463) (xy 94.232 -155.881148) (xy 94.232 -155.881152) (xy 94.246888 -155.955999) (xy 94.232 -156.030846)
(xy 94.232 -158.103654) (xy 94.246888 -158.178501) (xy 94.232 -158.253348) (xy 94.232 -158.253352) (xy 94.187904 -158.475037)
(xy 94.019929 -158.726429) (xy 93.956473 -158.768829) (xy 93.917058 -158.808243) (xy 93.930735 -158.877) (xy 93.842646 -159.319855)
(xy 93.591789 -159.695289) (xy 93.216355 -159.946146) (xy 92.885283 -160.012) (xy 84.831752 -160.012) (xy 84.855 -160.068126)
(xy 84.855 -160.479874) (xy 84.697431 -160.86028) (xy 84.5165 -161.041211) (xy 84.5165 -163.07556) (xy 85.0065 -163.07556)
(xy 85.254265 -163.124843) (xy 85.464309 -163.265191) (xy 85.604657 -163.475235) (xy 85.65394 -163.723) (xy 85.65394 -165.34795)
(xy 86.9515 -165.34795) (xy 86.9515 -164.59805) (xy 87.238474 -163.905233) (xy 87.768733 -163.374974) (xy 88.46155 -163.088)
(xy 89.21145 -163.088) (xy 89.56972 -163.2364) (xy 91.372431 -163.2364) (xy 91.849345 -163.331264) (xy 92.390169 -163.692631)
(xy 92.751536 -164.233455) (xy 92.878431 -164.8714) (xy 92.751536 -165.509345) (xy 92.390169 -166.050169) (xy 91.849345 -166.411536)
(xy 91.372431 -166.5064) (xy 89.968893 -166.5064) (xy 89.904267 -166.571026) (xy 89.21145 -166.858) (xy 88.46155 -166.858)
(xy 87.768733 -166.571026) (xy 87.238474 -166.040767) (xy 86.9515 -165.34795) (xy 85.65394 -165.34795) (xy 85.65394 -165.956602)
(xy 86.934239 -167.2369) (xy 96.536 -167.2369) (xy 96.536001 -162.360869) (xy 96.630865 -161.883955) (xy 96.832062 -161.582842)
(xy 96.861343 -161.435635) (xy 97.001691 -161.225591) (xy 97.211735 -161.085243) (xy 97.448744 -161.038099) (xy 97.533056 -160.981764)
(xy 98.171 -160.854869) (xy 98.808945 -160.981764) (xy 98.890055 -161.03596) (xy 99.0095 -161.03596) (xy 99.257265 -161.085243)
(xy 99.467309 -161.225591) (xy 99.607657 -161.435635) (xy 99.65694 -161.6834) (xy 99.65694 -161.802845) (xy 99.711136 -161.883955)
(xy 99.806 -162.360869) (xy 99.806 -166.3319) (xy 101.592869 -166.3319) (xy 101.5995 -166.298563) (xy 101.5995 -166.14547)
(xy 101.599501 -166.145465) (xy 101.5995 -162.29737) (xy 101.694364 -161.820456) (xy 102.055731 -161.279631) (xy 102.596555 -160.918264)
(xy 103.2345 -160.791369) (xy 103.872444 -160.918264) (xy 104.413269 -161.279631) (xy 104.774636 -161.820455) (xy 104.8695 -162.297369)
(xy 104.8695 -164.6969) (xy 112.238531 -164.6969) (xy 112.715445 -164.791764) (xy 113.256269 -165.153131) (xy 113.617636 -165.693955)
(xy 113.67005 -165.957461) (xy 118.242096 -165.957461) (xy 118.402959 -165.569077) (xy 118.778866 -165.154111) (xy 119.284959 -164.914586)
(xy 119.507 -165.035871) (xy 119.507 -166.1795) (xy 119.761 -166.1795) (xy 119.761 -165.035871) (xy 119.983041 -164.914586)
(xy 120.489134 -165.154111) (xy 120.865041 -165.569077) (xy 121.025904 -165.957461) (xy 120.903915 -166.1795) (xy 119.761 -166.1795)
(xy 119.507 -166.1795) (xy 118.364085 -166.1795) (xy 118.242096 -165.957461) (xy 113.67005 -165.957461) (xy 113.744531 -166.3319)
(xy 113.680156 -166.655539) (xy 118.242096 -166.655539) (xy 118.364085 -166.4335) (xy 119.507 -166.4335) (xy 119.507 -167.577129)
(xy 119.761 -167.577129) (xy 119.761 -166.4335) (xy 120.903915 -166.4335) (xy 120.927814 -166.477) (xy 126.30906 -166.477)
(xy 126.30906 -163.977) (xy 126.358343 -163.729235) (xy 126.498691 -163.519191) (xy 126.708735 -163.378843) (xy 126.9565 -163.32956)
(xy 129.4565 -163.32956) (xy 129.704265 -163.378843) (xy 129.914309 -163.519191) (xy 130.054657 -163.729235) (xy 130.087366 -163.89368)
(xy 132.132785 -163.89368) (xy 132.262033 -163.600877) (xy 132.962306 -163.332612) (xy 133.711935 -163.35275) (xy 134.310967 -163.600877)
(xy 134.440215 -163.89368) (xy 133.2865 -165.047395) (xy 132.132785 -163.89368) (xy 130.087366 -163.89368) (xy 130.10394 -163.977)
(xy 130.10394 -165.551194) (xy 131.392112 -165.551194) (xy 131.41225 -164.801565) (xy 131.660377 -164.202533) (xy 131.95318 -164.073285)
(xy 133.106895 -165.227) (xy 133.466105 -165.227) (xy 134.61982 -164.073285) (xy 134.912623 -164.202533) (xy 135.180888 -164.902806)
(xy 135.16075 -165.652435) (xy 134.912623 -166.251467) (xy 134.61982 -166.380715) (xy 133.466105 -165.227) (xy 133.106895 -165.227)
(xy 131.95318 -166.380715) (xy 131.660377 -166.251467) (xy 131.392112 -165.551194) (xy 130.10394 -165.551194) (xy 130.10394 -166.477)
(xy 130.087367 -166.56032) (xy 132.132785 -166.56032) (xy 133.2865 -165.406605) (xy 134.440215 -166.56032) (xy 134.310967 -166.853123)
(xy 134.154209 -166.913175) (xy 142.7354 -166.913175) (xy 142.7354 -165.367625) (xy 143.326856 -163.939724) (xy 144.419724 -162.846856)
(xy 145.847625 -162.2554) (xy 147.393175 -162.2554) (xy 148.821076 -162.846856) (xy 149.913944 -163.939724) (xy 150.5054 -165.367625)
(xy 150.5054 -166.913175) (xy 149.913944 -168.341076) (xy 148.821076 -169.433944) (xy 147.393175 -170.0254) (xy 145.847625 -170.0254)
(xy 144.419724 -169.433944) (xy 143.326856 -168.341076) (xy 142.7354 -166.913175) (xy 134.154209 -166.913175) (xy 133.610694 -167.121388)
(xy 132.861065 -167.10125) (xy 132.262033 -166.853123) (xy 132.132785 -166.56032) (xy 130.087367 -166.56032) (xy 130.054657 -166.724765)
(xy 129.914309 -166.934809) (xy 129.704265 -167.075157) (xy 129.4565 -167.12444) (xy 126.9565 -167.12444) (xy 126.708735 -167.075157)
(xy 126.498691 -166.934809) (xy 126.358343 -166.724765) (xy 126.30906 -166.477) (xy 120.927814 -166.477) (xy 121.025904 -166.655539)
(xy 120.865041 -167.043923) (xy 120.489134 -167.458889) (xy 119.983041 -167.698414) (xy 119.761 -167.577129) (xy 119.507 -167.577129)
(xy 119.284959 -167.698414) (xy 118.778866 -167.458889) (xy 118.402959 -167.043923) (xy 118.242096 -166.655539) (xy 113.680156 -166.655539)
(xy 113.617636 -166.969845) (xy 113.256269 -167.510669) (xy 112.715445 -167.872036) (xy 112.238531 -167.9669) (xy 104.8695 -167.9669)
(xy 104.8695 -169.016431) (xy 104.774636 -169.493345) (xy 104.413269 -170.034169) (xy 103.872445 -170.395536) (xy 103.2345 -170.522431)
(xy 102.596556 -170.395536) (xy 102.055732 -170.034169) (xy 101.694365 -169.493345) (xy 101.599501 -169.016431) (xy 101.5995 -166.365237)
(xy 101.592869 -166.3319) (xy 99.806 -166.3319) (xy 99.806 -169.032931) (xy 99.711136 -169.509845) (xy 99.582369 -169.702559)
(xy 99.544157 -169.894665) (xy 99.403809 -170.104709) (xy 99.193765 -170.245057) (xy 99.001658 -170.283269) (xy 98.808944 -170.412036)
(xy 98.171 -170.538931) (xy 97.6585 -170.436989) (xy 97.307031 -170.5069) (xy 86.418029 -170.5069) (xy 86.256999 -170.538931)
(xy 86.095969 -170.5069) (xy 85.619055 -170.412036) (xy 85.078231 -170.050669) (xy 84.987014 -169.914153) (xy 82.714248 -167.641386)
(xy 82.577732 -167.550169) (xy 82.216365 -167.009345) (xy 82.172928 -166.790972) (xy 82.166699 -166.75966) (xy 82.048691 -166.680809)
(xy 81.908343 -166.470765) (xy 81.85906 -166.223) (xy 81.85906 -163.723) (xy 81.908343 -163.475235) (xy 82.048691 -163.265191)
(xy 82.258735 -163.124843) (xy 82.5065 -163.07556) (xy 82.9965 -163.07556) (xy 82.996501 -160.914212) (xy 82.942569 -160.86028)
(xy 82.785 -160.479874) (xy 82.785 -160.068126) (xy 82.793128 -160.048504) (xy 78.859613 -163.982018) (xy 78.796289 -164.076789)
(xy 78.420855 -164.327646) (xy 78.089783 -164.3935) (xy 77.978 -164.415735) (xy 77.866217 -164.3935) (xy 37.513281 -164.3935)
(xy 37.401499 -164.415735) (xy 37.289717 -164.3935) (xy 36.958645 -164.327646) (xy 36.583211 -164.076789) (xy 36.519889 -163.982021)
(xy 31.216982 -158.679113) (xy 31.122211 -158.615789) (xy 30.896302 -158.277691) (xy 30.871354 -158.240354) (xy 30.783265 -157.7975)
(xy 30.8055 -157.685717) (xy 30.805501 -151.3165) (xy 26.438609 -151.3165) (xy 21.947252 -155.807856) (xy 21.981034 -155.841638)
(xy 22.1995 -156.369061) (xy 22.1995 -156.6545) (xy 26.921387 -156.6545) (xy 27.03276 -156.094591) (xy 27.349923 -155.619923)
(xy 27.824591 -155.30276) (xy 28.243167 -155.2195) (xy 28.525833 -155.2195) (xy 28.944409 -155.30276) (xy 29.419077 -155.619923)
(xy 29.73624 -156.094591) (xy 29.847613 -156.6545) (xy 29.73624 -157.214409) (xy 29.419077 -157.689077) (xy 28.944409 -158.00624)
(xy 28.525833 -158.0895) (xy 28.243167 -158.0895) (xy 27.824591 -158.00624) (xy 27.349923 -157.689077) (xy 27.03276 -157.214409)
(xy 26.921387 -156.6545) (xy 22.1995 -156.6545) (xy 22.1995 -156.939939) (xy 21.981034 -157.467362) (xy 21.839302 -157.609094)
(xy 21.968209 -157.738) (xy 25.764839 -157.738) (xy 25.852 -157.720663) (xy 25.939161 -157.738) (xy 25.939165 -157.738)
(xy 26.19731 -157.789348) (xy 26.490049 -157.984951) (xy 26.539425 -158.058847) (xy 28.006579 -159.526) (xy 28.565358 -159.526)
(xy 29.120346 -159.755884) (xy 29.545116 -160.180654) (xy 29.775 -160.735642) (xy 29.775 -161.336358) (xy 29.545116 -161.891346)
(xy 29.120346 -162.316116) (xy 28.565358 -162.546) (xy 27.964642 -162.546) (xy 27.409654 -162.316116) (xy 27.015 -161.921462)
(xy 26.620346 -162.316116) (xy 26.065358 -162.546) (xy 25.464642 -162.546) (xy 24.909654 -162.316116) (xy 24.765 -162.171462)
(xy 24.620346 -162.316116) (xy 24.065358 -162.546) (xy 23.464642 -162.546) (xy 22.909654 -162.316116) (xy 22.515 -161.921462)
(xy 22.120346 -162.316116) (xy 21.565358 -162.546) (xy 20.964642 -162.546) (xy 20.409654 -162.316116) (xy 19.984884 -161.891346)
(xy 19.755 -161.336358) (xy 19.755 -160.735642) (xy 19.984884 -160.180654) (xy 20.409654 -159.755884) (xy 20.964642 -159.526)
(xy 21.565358 -159.526) (xy 22.120346 -159.755884) (xy 22.515 -160.150538) (xy 22.909654 -159.755884) (xy 23.464642 -159.526)
(xy 24.065358 -159.526) (xy 24.620346 -159.755884) (xy 24.765 -159.900538) (xy 24.909654 -159.755884) (xy 25.464642 -159.526)
(xy 25.503422 -159.526) (xy 25.485422 -159.508) (xy 21.688791 -159.508) (xy 21.60163 -159.525337) (xy 21.514469 -159.508)
(xy 21.514465 -159.508) (xy 21.25632 -159.456652) (xy 21.037475 -159.310424) (xy 21.037474 -159.310423) (xy 20.963581 -159.261049)
(xy 20.914207 -159.187156) (xy 20.200345 -158.473293) (xy 20.126452 -158.423919) (xy 20.077078 -158.350026) (xy 20.077076 -158.350024)
(xy 19.930848 -158.131179) (xy 19.862163 -157.78587) (xy 19.862878 -157.782274) (xy 19.547966 -157.467362) (xy 19.3295 -156.939939)
(xy 19.3295 -156.369061) (xy 19.547966 -155.841638) (xy 19.8512 -155.538404) (xy 19.867348 -155.457221) (xy 20.013576 -155.238376)
(xy 20.013578 -155.238374) (xy 20.062952 -155.164481) (xy 20.136845 -155.115107) (xy 25.384607 -149.867344) (xy 25.433981 -149.793451)
(xy 25.507874 -149.744077) (xy 25.507875 -149.744076) (xy 25.574827 -149.69934) (xy 25.72672 -149.597848) (xy 25.984865 -149.5465)
(xy 25.984869 -149.5465) (xy 26.072029 -149.529163) (xy 26.159189 -149.5465) (xy 29.450368 -149.5465) (xy 22.838369 -142.9345)
(xy 22.020079 -142.9345) (xy 16.04809 -148.906488) (xy 16.167 -149.193561) (xy 16.167 -149.764439) (xy 15.948534 -150.291862)
(xy 15.544862 -150.695534) (xy 15.017439 -150.914) (xy 14.446561 -150.914) (xy 13.919138 -150.695534) (xy 13.515466 -150.291862)
(xy 13.297 -149.764439) (xy 13.297 -149.193561) (xy 13.318896 -149.140698) (xy 10.013199 -145.835) (xy 8.376409 -145.835)
(xy 8.307586 -146.001153) (xy 7.847653 -146.461086) (xy 7.246722 -146.71) (xy 6.596278 -146.71) (xy 5.995347 -146.461086)
(xy 5.535414 -146.001153) (xy 5.2865 -145.400222) (xy 5.2865 -144.749778) (xy 5.535414 -144.148847) (xy 5.995347 -143.688914)
(xy 6.596278 -143.44) (xy 7.246722 -143.44) (xy 7.847653 -143.688914) (xy 8.307586 -144.148847) (xy 8.376409 -144.315)
(xy 10.253153 -144.315) (xy 10.328 -144.300112) (xy 10.402847 -144.315) (xy 10.402852 -144.315) (xy 10.624537 -144.359096)
(xy 10.875929 -144.527071) (xy 10.918331 -144.59053) (xy 14.389612 -148.06181) (xy 20.966077 -141.485344) (xy 21.015451 -141.411451)
(xy 21.089344 -141.362077) (xy 21.089345 -141.362076) (xy 21.183609 -141.299091) (xy 21.195208 -141.29134) (xy 16.580892 -136.677023)
(xy 16.393354 -136.396354) (xy 16.305265 -135.9535) (xy 16.393354 -135.510646) (xy 16.541187 -135.289398) (xy 16.394569 -135.14278)
(xy 16.237 -134.762374) (xy 16.237 -134.596302) (xy 12.72353 -131.082831) (xy 12.660071 -131.040429) (xy 12.492096 -130.789036)
(xy 12.448 -130.567351) (xy 12.448 -130.567347) (xy 12.433112 -130.4925) (xy 12.448 -130.417653) (xy 12.448001 -123.695303)
(xy 11.791199 -123.0385) (xy 8.283239 -123.0385) (xy 7.847653 -123.474086) (xy 7.246722 -123.723) (xy 6.596278 -123.723)
(xy 5.995347 -123.474086) (xy 5.535414 -123.014153) (xy 5.2865 -122.413222) (xy 5.2865 -121.762778) (xy 5.535414 -121.161847)
(xy 5.995347 -120.701914) (xy 6.596278 -120.453) (xy 7.246722 -120.453) (xy 7.847653 -120.701914) (xy 8.307586 -121.161847)
(xy 8.455317 -121.5185) (xy 12.031153 -121.5185) (xy 12.106 -121.503612) (xy 12.180847 -121.5185) (xy 12.180852 -121.5185)
(xy 12.402537 -121.562596) (xy 12.653929 -121.730571) (xy 12.696331 -121.794029) (xy 13.21 -122.307698) (xy 13.21 -115.517847)
(xy 13.195112 -115.443) (xy 13.21 -115.368153) (xy 13.21 -115.368149) (xy 13.254096 -115.146464) (xy 13.422071 -114.895071)
(xy 13.48553 -114.852669) (xy 16.102001 -112.236197) (xy 16.102 -109.60143) (xy 16.049138 -109.579534) (xy 15.645466 -109.175862)
(xy 15.592 -109.046784) (xy 15.538534 -109.175862) (xy 15.134862 -109.579534) (xy 14.607439 -109.798) (xy 14.036561 -109.798)
(xy 13.509138 -109.579534) (xy 13.105466 -109.175862) (xy 13.052 -109.046784) (xy 12.998534 -109.175862) (xy 12.594862 -109.579534)
(xy 12.067439 -109.798) (xy 11.496561 -109.798) (xy 10.969138 -109.579534) (xy 10.565466 -109.175862) (xy 10.347 -108.648439)
(xy 10.347 -108.077561) (xy 10.565466 -107.550138) (xy 10.969138 -107.146466) (xy 11.098216 -107.093) (xy 10.969138 -107.039534)
(xy 10.565466 -106.635862) (xy 10.347 -106.108439) (xy 10.347 -105.537561) (xy 10.565466 -105.010138) (xy 10.969138 -104.606466)
(xy 11.098216 -104.553) (xy 10.969138 -104.499534) (xy 10.565466 -104.095862) (xy 10.347 -103.568439) (xy 10.347 -102.997561)
(xy 10.565466 -102.470138) (xy 10.868104 -102.1675) (xy 3.287579 -102.1675) (xy 2.3415 -103.113578) (xy 2.3415 -109.597243)
(xy 2.418 -109.597243) (xy 2.418 -108.588757) (xy 2.80393 -107.657038) (xy 3.517038 -106.94393) (xy 4.448757 -106.558)
(xy 5.457243 -106.558) (xy 6.388962 -106.94393) (xy 7.10207 -107.657038) (xy 7.488 -108.588757) (xy 7.488 -109.597243)
(xy 7.10207 -110.528962) (xy 6.388962 -111.24207) (xy 5.457243 -111.628) (xy 4.448757 -111.628) (xy 3.517038 -111.24207)
(xy 2.80393 -110.528962) (xy 2.418 -109.597243) (xy 2.3415 -109.597243) (xy 2.3415 -115.413222) (xy 5.2865 -115.413222)
(xy 5.2865 -114.762778) (xy 5.535414 -114.161847) (xy 5.995347 -113.701914) (xy 6.596278 -113.453) (xy 7.246722 -113.453)
(xy 7.847653 -113.701914) (xy 8.307586 -114.161847) (xy 8.5565 -114.762778) (xy 8.5565 -115.413222) (xy 8.307586 -116.014153)
(xy 7.847653 -116.474086) (xy 7.246722 -116.723) (xy 6.596278 -116.723) (xy 5.995347 -116.474086) (xy 5.535414 -116.014153)
(xy 5.2865 -115.413222) (xy 2.3415 -115.413222) (xy 2.3415 -118.913222) (xy 5.2865 -118.913222) (xy 5.2865 -118.262778)
(xy 5.535414 -117.661847) (xy 5.995347 -117.201914) (xy 6.596278 -116.953) (xy 7.246722 -116.953) (xy 7.847653 -117.201914)
(xy 8.307586 -117.661847) (xy 8.5565 -118.262778) (xy 8.5565 -118.913222) (xy 8.307586 -119.514153) (xy 7.847653 -119.974086)
(xy 7.246722 -120.223) (xy 6.596278 -120.223) (xy 5.995347 -119.974086) (xy 5.535414 -119.514153) (xy 5.2865 -118.913222)
(xy 2.3415 -118.913222) (xy 2.3415 -125.913222) (xy 5.2865 -125.913222) (xy 5.2865 -125.262778) (xy 5.535414 -124.661847)
(xy 5.995347 -124.201914) (xy 6.596278 -123.953) (xy 7.246722 -123.953) (xy 7.847653 -124.201914) (xy 8.307586 -124.661847)
(xy 8.5565 -125.262778) (xy 8.5565 -125.913222) (xy 8.307586 -126.514153) (xy 7.847653 -126.974086) (xy 7.246722 -127.223)
(xy 6.596278 -127.223) (xy 5.995347 -126.974086) (xy 5.535414 -126.514153) (xy 5.2865 -125.913222) (xy 2.3415 -125.913222)
(xy 2.3415 -129.413222) (xy 5.2865 -129.413222) (xy 5.2865 -128.762778) (xy 5.535414 -128.161847) (xy 5.995347 -127.701914)
(xy 6.596278 -127.453) (xy 7.246722 -127.453) (xy 7.847653 -127.701914) (xy 8.307586 -128.161847) (xy 8.5565 -128.762778)
(xy 8.5565 -129.413222) (xy 8.307586 -130.014153) (xy 7.847653 -130.474086) (xy 7.246722 -130.723) (xy 6.596278 -130.723)
(xy 5.995347 -130.474086) (xy 5.535414 -130.014153) (xy 5.2865 -129.413222) (xy 2.3415 -129.413222) (xy 2.3415 -131.429783)
(xy 2.275646 -131.760855) (xy 2.024789 -132.136289) (xy 1.649354 -132.387146) (xy 1.2065 -132.475235) (xy 0.763645 -132.387146)
(xy 0.388211 -132.136289) (xy 0.137354 -131.760854) (xy 0.0715 -131.429782) (xy 0.071501 -114.065) (xy -0.265 -114.065)
(xy -0.265 -133.463) (xy 5.39906 -133.463) (xy 5.39906 -131.713) (xy 5.448343 -131.465235) (xy 5.588691 -131.255191)
(xy 5.798735 -131.114843) (xy 6.0465 -131.06556) (xy 7.7965 -131.06556) (xy 8.044265 -131.114843) (xy 8.254309 -131.255191)
(xy 8.394657 -131.465235) (xy 8.44394 -131.713) (xy 8.44394 -133.463) (xy 8.394657 -133.710765) (xy 8.254309 -133.920809)
(xy 8.044265 -134.061157) (xy 7.7965 -134.11044) (xy 6.0465 -134.11044) (xy 5.798735 -134.061157) (xy 5.588691 -133.920809)
(xy 5.448343 -133.710765) (xy 5.39906 -133.463) (xy -0.265 -133.463) (xy -0.265 -138.400222) (xy 5.2865 -138.400222)
(xy 5.2865 -137.749778) (xy 5.535414 -137.148847) (xy 5.995347 -136.688914) (xy 6.596278 -136.44) (xy 7.246722 -136.44)
(xy 7.847653 -136.688914) (xy 8.307586 -137.148847) (xy 8.5565 -137.749778) (xy 8.5565 -138.400222) (xy 8.307586 -139.001153)
(xy 7.847653 -139.461086) (xy 7.246722 -139.71) (xy 6.596278 -139.71) (xy 5.995347 -139.461086) (xy 5.535414 -139.001153)
(xy 5.2865 -138.400222) (xy -0.265 -138.400222) (xy -0.265 -141.900222) (xy 5.2865 -141.900222) (xy 5.2865 -141.249778)
(xy 5.535414 -140.648847) (xy 5.995347 -140.188914) (xy 6.596278 -139.94) (xy 7.246722 -139.94) (xy 7.847653 -140.188914)
(xy 8.307586 -140.648847) (xy 8.5565 -141.249778) (xy 8.5565 -141.859) (xy 13.268887 -141.859) (xy 13.38026 -141.299091)
(xy 13.697423 -140.824423) (xy 14.172091 -140.50726) (xy 14.590667 -140.424) (xy 14.873333 -140.424) (xy 15.291909 -140.50726)
(xy 15.766577 -140.824423) (xy 16.08374 -141.299091) (xy 16.195113 -141.859) (xy 16.08374 -142.418909) (xy 15.766577 -142.893577)
(xy 15.291909 -143.21074) (xy 14.873333 -143.294) (xy 14.590667 -143.294) (xy 14.172091 -143.21074) (xy 13.697423 -142.893577)
(xy 13.38026 -142.418909) (xy 13.268887 -141.859) (xy 8.5565 -141.859) (xy 8.5565 -141.900222) (xy 8.307586 -142.501153)
(xy 7.847653 -142.961086) (xy 7.246722 -143.21) (xy 6.596278 -143.21) (xy 5.995347 -142.961086) (xy 5.535414 -142.501153)
(xy 5.2865 -141.900222) (xy -0.265 -141.900222) (xy -0.265 -148.900222) (xy 5.2865 -148.900222) (xy 5.2865 -148.249778)
(xy 5.535414 -147.648847) (xy 5.995347 -147.188914) (xy 6.596278 -146.94) (xy 7.246722 -146.94) (xy 7.847653 -147.188914)
(xy 8.307586 -147.648847) (xy 8.5565 -148.249778) (xy 8.5565 -148.900222) (xy 8.307586 -149.501153) (xy 7.847653 -149.961086)
(xy 7.246722 -150.21) (xy 6.596278 -150.21) (xy 5.995347 -149.961086) (xy 5.535414 -149.501153) (xy 5.2865 -148.900222)
(xy -0.265 -148.900222) (xy -0.265 -152.400222) (xy 5.2865 -152.400222) (xy 5.2865 -151.749778) (xy 5.535414 -151.148847)
(xy 5.995347 -150.688914) (xy 6.596278 -150.44) (xy 7.246722 -150.44) (xy 7.847653 -150.688914) (xy 8.307586 -151.148847)
(xy 8.5565 -151.749778) (xy 8.5565 -152.400222) (xy 8.307586 -153.001153) (xy 7.847653 -153.461086) (xy 7.246722 -153.71)
(xy 6.596278 -153.71) (xy 5.995347 -153.461086) (xy 5.535414 -153.001153) (xy 5.2865 -152.400222) (xy -0.265 -152.400222)
(xy -0.265 -156.45) (xy 5.39906 -156.45) (xy 5.39906 -154.7) (xy 5.448343 -154.452235) (xy 5.588691 -154.242191)
(xy 5.798735 -154.101843) (xy 6.0465 -154.05256) (xy 7.7965 -154.05256) (xy 8.044265 -154.101843) (xy 8.254309 -154.242191)
(xy 8.394657 -154.452235) (xy 8.44394 -154.7) (xy 8.44394 -156.45) (xy 8.394657 -156.697765) (xy 8.254309 -156.907809)
(xy 8.044265 -157.048157) (xy 7.7965 -157.09744) (xy 6.0465 -157.09744) (xy 5.798735 -157.048157) (xy 5.588691 -156.907809)
(xy 5.448343 -156.697765) (xy 5.39906 -156.45) (xy -0.265 -156.45) (xy -0.265 -167.000275) (xy 1.4946 -167.000275)
(xy 1.4946 -165.454725) (xy 2.086056 -164.026824) (xy 3.178924 -162.933956) (xy 4.606825 -162.3425) (xy 6.152375 -162.3425)
(xy 7.580276 -162.933956) (xy 8.673144 -164.026824) (xy 8.726551 -164.15576) (xy 16.135 -164.15576) (xy 16.135 -163.33624)
(xy 16.448616 -162.579104) (xy 17.028104 -161.999616) (xy 17.78524 -161.686) (xy 18.60476 -161.686) (xy 19.361896 -161.999616)
(xy 19.941384 -162.579104) (xy 20.255 -163.33624) (xy 20.255 -164.15576) (xy 29.275 -164.15576) (xy 29.275 -163.33624)
(xy 29.588616 -162.579104) (xy 30.168104 -161.999616) (xy 30.92524 -161.686) (xy 31.74476 -161.686) (xy 32.501896 -161.999616)
(xy 33.081384 -162.579104) (xy 33.395 -163.33624) (xy 33.395 -164.15576) (xy 33.081384 -164.912896) (xy 32.501896 -165.492384)
(xy 31.74476 -165.806) (xy 30.92524 -165.806) (xy 30.168104 -165.492384) (xy 29.588616 -164.912896) (xy 29.275 -164.15576)
(xy 20.255 -164.15576) (xy 19.941384 -164.912896) (xy 19.361896 -165.492384) (xy 18.60476 -165.806) (xy 17.78524 -165.806)
(xy 17.028104 -165.492384) (xy 16.448616 -164.912896) (xy 16.135 -164.15576) (xy 8.726551 -164.15576) (xy 9.2646 -165.454725)
(xy 9.2646 -167.000275) (xy 8.673144 -168.428176) (xy 7.580276 -169.521044) (xy 6.152375 -170.1125) (xy 4.606825 -170.1125)
(xy 3.178924 -169.521044) (xy 2.086056 -168.428176) (xy 1.4946 -167.000275) (xy -0.265 -167.000275) (xy -0.265 -167.969843)
(xy -0.191857 -168.859504) (xy 0.018238 -169.695929) (xy 0.362123 -170.48681) (xy 0.83056 -171.210902) (xy 1.410973 -171.848766)
(xy 2.087767 -172.383265) (xy 2.842769 -172.800049) (xy 3.655713 -173.087927) (xy 4.517453 -173.241427) (xy 5.01732 -173.265)
(xy 146.969843 -173.265)
)
)
)
(zone (net 18) (net_name GND) (layer B.Cu) (tstamp 5D471C1D) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy -0.6985 -168.0845) (xy -0.381 -170.1165) (xy 1.016 -172.0215) (xy 3.8735 -173.5455) (xy 6.2865 -173.736)
(xy 147.2565 -173.5455) (xy 150.241 -172.466) (xy 152.0825 -170.561) (xy 152.5905 -168.2115) (xy 152.527 -3.81)
(xy 151.765 -1.905) (xy 149.86 -0.1905) (xy 147.32 0.6985) (xy 145.4785 0.635) (xy 4.2545 0.762)
(xy 1.905 -0.254) (xy 0.381 -2.032) (xy -0.635 -4.1275)
)
)
(filled_polygon
(pts
(xy 147.859504 -173.191857) (xy 147.863873 -173.19076) (xy 149.606495 -172.560449) (xy 150.210902 -172.16944) (xy 150.848766 -171.589027)
(xy 151.383265 -170.912233) (xy 151.800049 -170.157231) (xy 152.087927 -169.344287) (xy 152.241427 -168.482547) (xy 152.265001 -167.982659)
(xy 152.265 -5.030168) (xy 152.191857 -4.140496) (xy 151.981761 -3.30407) (xy 151.637877 -2.513191) (xy 151.169443 -1.789102)
(xy 150.58903 -1.151237) (xy 149.912233 -0.616735) (xy 149.157227 -0.199948) (xy 148.344287 0.087928) (xy 147.482547 0.241427)
(xy 146.98268 0.265) (xy 5.030168 0.265) (xy 4.140496 0.191857) (xy 3.30407 -0.018239) (xy 2.513191 -0.362123)
(xy 1.789102 -0.830557) (xy 1.151237 -1.41097) (xy 0.616735 -2.087767) (xy 0.199948 -2.842773) (xy -0.087928 -3.655713)
(xy -0.241427 -4.517453) (xy -0.265 -5.01732) (xy -0.265 -6.622375) (xy 1.4946 -6.622375) (xy 1.4946 -5.076825)
(xy 2.086056 -3.648924) (xy 3.178924 -2.556056) (xy 4.606825 -1.9646) (xy 6.152375 -1.9646) (xy 7.580276 -2.556056)
(xy 8.673144 -3.648924) (xy 9.2646 -5.076825) (xy 9.2646 -6.622375) (xy 8.673144 -8.050276) (xy 7.898439 -8.824981)
(xy 21.3868 -8.824981) (xy 21.3868 -8.269219) (xy 21.59948 -7.755763) (xy 21.992463 -7.36278) (xy 22.505919 -7.1501)
(xy 23.061681 -7.1501) (xy 23.575137 -7.36278) (xy 23.7838 -7.571443) (xy 23.992463 -7.36278) (xy 24.505919 -7.1501)
(xy 25.061681 -7.1501) (xy 25.575137 -7.36278) (xy 25.779244 -7.566887) (xy 25.983192 -7.566887) (xy 26.052657 -7.324703)
(xy 26.576102 -7.137956) (xy 27.131168 -7.165738) (xy 27.514943 -7.324703) (xy 27.584408 -7.566887) (xy 26.7838 -8.367495)
(xy 25.983192 -7.566887) (xy 25.779244 -7.566887) (xy 25.96812 -7.755763) (xy 26.077906 -8.020811) (xy 26.604195 -8.5471)
(xy 26.963405 -8.5471) (xy 27.489694 -8.020811) (xy 27.59948 -7.755763) (xy 27.992463 -7.36278) (xy 28.505919 -7.1501)
(xy 29.061681 -7.1501) (xy 29.575137 -7.36278) (xy 29.7838 -7.571443) (xy 29.992463 -7.36278) (xy 30.505919 -7.1501)
(xy 31.061681 -7.1501) (xy 31.575137 -7.36278) (xy 31.7838 -7.571443) (xy 31.992463 -7.36278) (xy 32.505919 -7.1501)
(xy 33.061681 -7.1501) (xy 33.575137 -7.36278) (xy 33.96812 -7.755763) (xy 34.1808 -8.269219) (xy 34.1808 -8.824981)
(xy 33.96812 -9.338437) (xy 33.575137 -9.73142) (xy 33.061681 -9.9441) (xy 32.505919 -9.9441) (xy 31.992463 -9.73142)
(xy 31.7838 -9.522757) (xy 31.575137 -9.73142) (xy 31.061681 -9.9441) (xy 30.505919 -9.9441) (xy 29.992463 -9.73142)
(xy 29.7838 -9.522757) (xy 29.575137 -9.73142) (xy 29.061681 -9.9441) (xy 28.505919 -9.9441) (xy 27.992463 -9.73142)
(xy 27.59948 -9.338437) (xy 27.489694 -9.073389) (xy 26.963405 -8.5471) (xy 26.604195 -8.5471) (xy 26.077906 -9.073389)
(xy 25.96812 -9.338437) (xy 25.779244 -9.527313) (xy 25.983192 -9.527313) (xy 26.7838 -8.726705) (xy 27.584408 -9.527313)
(xy 27.514943 -9.769497) (xy 26.991498 -9.956244) (xy 26.436432 -9.928462) (xy 26.052657 -9.769497) (xy 25.983192 -9.527313)
(xy 25.779244 -9.527313) (xy 25.575137 -9.73142) (xy 25.061681 -9.9441) (xy 24.505919 -9.9441) (xy 23.992463 -9.73142)
(xy 23.7838 -9.522757) (xy 23.575137 -9.73142) (xy 23.061681 -9.9441) (xy 22.505919 -9.9441) (xy 21.992463 -9.73142)
(xy 21.59948 -9.338437) (xy 21.3868 -8.824981) (xy 7.898439 -8.824981) (xy 7.580276 -9.143144) (xy 6.152375 -9.7346)
(xy 4.606825 -9.7346) (xy 3.178924 -9.143144) (xy 2.086056 -8.050276) (xy 1.4946 -6.622375) (xy -0.265 -6.622375)
(xy -0.265 -13.688287) (xy 20.408392 -13.688287) (xy 20.477857 -13.446103) (xy 21.001302 -13.259356) (xy 21.556368 -13.287138)
(xy 21.940143 -13.446103) (xy 22.009608 -13.688287) (xy 21.209 -14.488895) (xy 20.408392 -13.688287) (xy -0.265 -13.688287)
(xy -0.265 -14.876198) (xy 19.799856 -14.876198) (xy 19.827638 -14.321132) (xy 19.986603 -13.937357) (xy 20.228787 -13.867892)
(xy 21.029395 -14.6685) (xy 21.388605 -14.6685) (xy 22.189213 -13.867892) (xy 22.431397 -13.937357) (xy 22.481535 -14.077893)
(xy 22.56468 -13.877163) (xy 22.957663 -13.48418) (xy 23.471119 -13.2715) (xy 24.026881 -13.2715) (xy 24.540337 -13.48418)
(xy 24.93332 -13.877163) (xy 25.019 -14.084013) (xy 25.10468 -13.877163) (xy 25.497663 -13.48418) (xy 26.011119 -13.2715)
(xy 26.566881 -13.2715) (xy 27.080337 -13.48418) (xy 27.47332 -13.877163) (xy 27.559 -14.084013) (xy 27.64468 -13.877163)
(xy 28.037663 -13.48418) (xy 28.551119 -13.2715) (xy 29.106881 -13.2715) (xy 29.620337 -13.48418) (xy 30.01332 -13.877163)
(xy 30.099 -14.084013) (xy 30.18468 -13.877163) (xy 30.577663 -13.48418) (xy 31.091119 -13.2715) (xy 31.646881 -13.2715)
(xy 32.160337 -13.48418) (xy 32.55332 -13.877163) (xy 32.639 -14.084013) (xy 32.72468 -13.877163) (xy 33.117663 -13.48418)
(xy 33.631119 -13.2715) (xy 34.186881 -13.2715) (xy 34.700337 -13.48418) (xy 35.09332 -13.877163) (xy 35.306 -14.390619)
(xy 35.306 -14.946381) (xy 35.09332 -15.459837) (xy 34.700337 -15.85282) (xy 34.186881 -16.0655) (xy 33.631119 -16.0655)
(xy 33.117663 -15.85282) (xy 32.72468 -15.459837) (xy 32.639 -15.252987) (xy 32.55332 -15.459837) (xy 32.160337 -15.85282)
(xy 31.646881 -16.0655) (xy 31.091119 -16.0655) (xy 30.577663 -15.85282) (xy 30.18468 -15.459837) (xy 30.099 -15.252987)
(xy 30.01332 -15.459837) (xy 29.620337 -15.85282) (xy 29.106881 -16.0655) (xy 28.551119 -16.0655) (xy 28.037663 -15.85282)
(xy 27.64468 -15.459837) (xy 27.559 -15.252987) (xy 27.47332 -15.459837) (xy 27.080337 -15.85282) (xy 26.566881 -16.0655)
(xy 26.011119 -16.0655) (xy 25.497663 -15.85282) (xy 25.10468 -15.459837) (xy 25.019 -15.252987) (xy 24.93332 -15.459837)
(xy 24.540337 -15.85282) (xy 24.026881 -16.0655) (xy 23.471119 -16.0655) (xy 22.957663 -15.85282) (xy 22.56468 -15.459837)
(xy 22.485572 -15.268853) (xy 22.431397 -15.399643) (xy 22.189213 -15.469108) (xy 21.388605 -14.6685) (xy 21.029395 -14.6685)
(xy 20.228787 -15.469108) (xy 19.986603 -15.399643) (xy 19.799856 -14.876198) (xy -0.265 -14.876198) (xy -0.265 -15.648713)
(xy 20.408392 -15.648713) (xy 21.209 -14.848105) (xy 22.009608 -15.648713) (xy 21.940143 -15.890897) (xy 21.416698 -16.077644)
(xy 20.861632 -16.049862) (xy 20.477857 -15.890897) (xy 20.408392 -15.648713) (xy -0.265 -15.648713) (xy -0.265 -19.655222)
(xy 6.3025 -19.655222) (xy 6.3025 -19.004778) (xy 6.551414 -18.403847) (xy 7.011347 -17.943914) (xy 7.612278 -17.695)
(xy 8.262722 -17.695) (xy 8.863653 -17.943914) (xy 9.323586 -18.403847) (xy 9.5725 -19.004778) (xy 9.5725 -19.655222)
(xy 9.323586 -20.256153) (xy 8.863653 -20.716086) (xy 8.262722 -20.965) (xy 7.612278 -20.965) (xy 7.011347 -20.716086)
(xy 6.551414 -20.256153) (xy 6.3025 -19.655222) (xy -0.265 -19.655222) (xy -0.265 -23.155222) (xy 6.3025 -23.155222)
(xy 6.3025 -22.504778) (xy 6.551414 -21.903847) (xy 7.011347 -21.443914) (xy 7.612278 -21.195) (xy 8.262722 -21.195)
(xy 8.863653 -21.443914) (xy 9.323586 -21.903847) (xy 9.5725 -22.504778) (xy 9.5725 -23.155222) (xy 9.323586 -23.756153)
(xy 8.863653 -24.216086) (xy 8.262722 -24.465) (xy 7.612278 -24.465) (xy 7.011347 -24.216086) (xy 6.551414 -23.756153)
(xy 6.3025 -23.155222) (xy -0.265 -23.155222) (xy -0.265 -26.655222) (xy 6.3025 -26.655222) (xy 6.3025 -26.004778)
(xy 6.551414 -25.403847) (xy 7.011347 -24.943914) (xy 7.612278 -24.695) (xy 8.262722 -24.695) (xy 8.863653 -24.943914)
(xy 9.323586 -25.403847) (xy 9.392409 -25.57) (xy 11.772699 -25.57) (xy 14.696002 -22.646696) (xy 14.696001 -19.607346)
(xy 14.681113 -19.532499) (xy 14.696001 -19.457652) (xy 14.696001 -19.457648) (xy 14.740097 -19.235963) (xy 14.845789 -19.077784)
(xy 14.821 -19.017939) (xy 14.821 -18.447061) (xy 15.039466 -17.919638) (xy 15.443138 -17.515966) (xy 15.970561 -17.2975)
(xy 16.541439 -17.2975) (xy 17.068862 -17.515966) (xy 17.472534 -17.919638) (xy 17.691 -18.447061) (xy 17.691 -19.017939)
(xy 17.472534 -19.545362) (xy 17.068862 -19.949034) (xy 16.541439 -20.1675) (xy 16.216001 -20.1675) (xy 16.216001 -22.886651)
(xy 16.230889 -22.961499) (xy 16.228726 -22.972374) (xy 18.493 -22.972374) (xy 18.493 -22.560626) (xy 18.650569 -22.18022)
(xy 18.94172 -21.889069) (xy 19.322126 -21.7315) (xy 19.515731 -21.7315) (xy 19.633069 -21.44822) (xy 19.92422 -21.157069)
(xy 20.304626 -20.9995) (xy 20.716374 -20.9995) (xy 21.09678 -21.157069) (xy 21.387931 -21.44822) (xy 21.5455 -21.828626)
(xy 21.5455 -21.994699) (xy 28.805302 -29.2545) (xy 29.098374 -29.2545) (xy 29.47878 -29.412069) (xy 29.769931 -29.70322)
(xy 29.9275 -30.083626) (xy 29.9275 -30.495374) (xy 29.769931 -30.87578) (xy 29.47878 -31.166931) (xy 29.098374 -31.3245)
(xy 29.0385 -31.3245) (xy 29.0385 -31.447874) (xy 28.880931 -31.82828) (xy 28.58978 -32.119431) (xy 28.209374 -32.277)
(xy 27.797626 -32.277) (xy 27.41722 -32.119431) (xy 27.126069 -31.82828) (xy 26.9685 -31.447874) (xy 26.9685 -31.281802)
(xy 19.488199 -23.8015) (xy 19.322126 -23.8015) (xy 18.94172 -23.643931) (xy 18.650569 -23.35278) (xy 18.493 -22.972374)
(xy 16.228726 -22.972374) (xy 16.216001 -23.036347) (xy 16.216001 -23.036351) (xy 16.17273 -23.253889) (xy 16.171905 -23.258037)
(xy 16.04633 -23.445972) (xy 16.00393 -23.509428) (xy 15.940474 -23.551828) (xy 13.488843 -26.003459) (xy 14.864086 -26.003459)
(xy 15.103611 -25.497366) (xy 15.518577 -25.121459) (xy 15.906961 -24.960596) (xy 16.129 -25.082585) (xy 16.129 -26.2255)
(xy 16.383 -26.2255) (xy 16.383 -25.082585) (xy 16.605039 -24.960596) (xy 16.993423 -25.121459) (xy 17.408389 -25.497366)
(xy 17.647914 -26.003459) (xy 17.526629 -26.2255) (xy 16.383 -26.2255) (xy 16.129 -26.2255) (xy 14.985371 -26.2255)
(xy 14.864086 -26.003459) (xy 13.488843 -26.003459) (xy 12.790761 -26.701541) (xy 14.864086 -26.701541) (xy 14.985371 -26.4795)
(xy 16.129 -26.4795) (xy 16.129 -27.622415) (xy 16.383 -27.622415) (xy 16.383 -26.4795) (xy 17.526629 -26.4795)
(xy 17.647914 -26.701541) (xy 17.408389 -27.207634) (xy 16.993423 -27.583541) (xy 16.605039 -27.744404) (xy 16.383 -27.622415)
(xy 16.129 -27.622415) (xy 15.906961 -27.744404) (xy 15.518577 -27.583541) (xy 15.103611 -27.207634) (xy 14.864086 -26.701541)
(xy 12.790761 -26.701541) (xy 12.677831 -26.81447) (xy 12.635429 -26.877929) (xy 12.384037 -27.045904) (xy 12.162352 -27.09)
(xy 12.162347 -27.09) (xy 12.0875 -27.104888) (xy 12.012653 -27.09) (xy 9.392409 -27.09) (xy 9.323586 -27.256153)
(xy 8.863653 -27.716086) (xy 8.262722 -27.965) (xy 7.612278 -27.965) (xy 7.011347 -27.716086) (xy 6.551414 -27.256153)
(xy 6.3025 -26.655222) (xy -0.265 -26.655222) (xy -0.265 -28.677468) (xy 6.964573 -28.677468) (xy 7.063236 -28.410613)
(xy 7.672961 -28.184092) (xy 8.32296 -28.208144) (xy 8.811764 -28.410613) (xy 8.910427 -28.677468) (xy 7.9375 -29.650395)
(xy 6.964573 -28.677468) (xy -0.265 -28.677468) (xy -0.265 -30.094539) (xy 6.291592 -30.094539) (xy 6.315644 -29.44454)
(xy 6.518113 -28.955736) (xy 6.784968 -28.857073) (xy 7.757895 -29.83) (xy 8.117105 -29.83) (xy 9.090032 -28.857073)
(xy 9.356887 -28.955736) (xy 9.583408 -29.565461) (xy 9.559356 -30.21546) (xy 9.356887 -30.704264) (xy 9.090032 -30.802927)
(xy 8.117105 -29.83) (xy 7.757895 -29.83) (xy 6.784968 -30.802927) (xy 6.518113 -30.704264) (xy 6.291592 -30.094539)
(xy -0.265 -30.094539) (xy -0.265 -30.982532) (xy 6.964573 -30.982532) (xy 7.9375 -30.009605) (xy 8.910427 -30.982532)
(xy 8.811764 -31.249387) (xy 8.202039 -31.475908) (xy 7.55204 -31.451856) (xy 7.063236 -31.249387) (xy 6.964573 -30.982532)
(xy -0.265 -30.982532) (xy -0.265 -48.8125) (xy -0.144618 -48.8125) (xy -0.023538 -48.731597) (xy 0.198147 -48.687501)
(xy 0.198151 -48.687501) (xy 0.272998 -48.672613) (xy 0.347845 -48.687501) (xy 1.164698 -48.687501) (xy 6.26767 -43.584528)
(xy 6.310071 -43.521071) (xy 6.561463 -43.353096) (xy 6.697748 -43.325987) (xy 6.614914 -43.243153) (xy 6.366 -42.642222)
(xy 6.366 -41.991778) (xy 6.614914 -41.390847) (xy 7.074847 -40.930914) (xy 7.675778 -40.682) (xy 8.326222 -40.682)
(xy 8.927153 -40.930914) (xy 9.387086 -41.390847) (xy 9.636 -41.991778) (xy 9.636 -42.438698) (xy 11.305 -40.769697)
(xy 11.305001 -39.762351) (xy 11.290112 -39.6875) (xy 11.349097 -39.390963) (xy 11.450636 -39.239) (xy 11.517072 -39.139571)
(xy 11.580528 -39.097171) (xy 12.966698 -37.711) (xy 9.818901 -37.711) (xy 9.632355 -37.835646) (xy 9.42578 -37.876736)
(xy 9.410657 -37.952765) (xy 9.270309 -38.162809) (xy 9.060265 -38.303157) (xy 8.8125 -38.35244) (xy 7.0625 -38.35244)
(xy 6.814735 -38.303157) (xy 6.604691 -38.162809) (xy 6.464343 -37.952765) (xy 6.41506 -37.705) (xy 6.41506 -35.955)
(xy 6.464343 -35.707235) (xy 6.604691 -35.497191) (xy 6.814735 -35.356843) (xy 7.0625 -35.30756) (xy 8.8125 -35.30756)
(xy 9.060265 -35.356843) (xy 9.194588 -35.446595) (xy 9.222717 -35.441) (xy 33.131783 -35.441) (xy 33.462855 -35.506854)
(xy 33.838289 -35.757711) (xy 34.089146 -36.133145) (xy 34.171 -36.544657) (xy 34.171001 -33.559341) (xy 34.089146 -33.970855)
(xy 33.838289 -34.346289) (xy 33.462855 -34.597146) (xy 33.131783 -34.663) (xy 8.916739 -34.663) (xy 8.863653 -34.716086)
(xy 8.262722 -34.965) (xy 7.612278 -34.965) (xy 7.011347 -34.716086) (xy 6.551414 -34.256153) (xy 6.3025 -33.655222)
(xy 6.3025 -33.004778) (xy 6.551414 -32.403847) (xy 7.011347 -31.943914) (xy 7.612278 -31.695) (xy 8.262722 -31.695)
(xy 8.863653 -31.943914) (xy 9.312739 -32.393) (xy 33.131783 -32.393) (xy 33.462855 -32.458854) (xy 33.838289 -32.709711)
(xy 34.089146 -33.085145) (xy 34.171001 -33.496659) (xy 34.171001 -33.046366) (xy 34.109854 -32.954854) (xy 34.021765 -32.512)
(xy 34.109854 -32.069146) (xy 34.297392 -31.788477) (xy 36.330001 -29.755867) (xy 36.33 -12.938783) (xy 36.307765 -12.827)
(xy 36.363537 -12.546616) (xy 36.395854 -12.384146) (xy 36.646711 -12.008711) (xy 36.741482 -11.945387) (xy 44.261444 -4.425423)
(xy 44.269854 -4.383145) (xy 44.520711 -4.007711) (xy 44.896145 -3.756854) (xy 45.227217 -3.691) (xy 52.720217 -3.691)
(xy 52.832 -3.668765) (xy 52.943783 -3.691) (xy 53.274855 -3.756854) (xy 53.353407 -3.809341) (xy 74.618846 -3.809341)
(xy 74.705252 -3.552857) (xy 75.278736 -3.343042) (xy 75.88886 -3.368661) (xy 76.333548 -3.552857) (xy 76.419954 -3.809341)
(xy 75.5194 -4.709895) (xy 74.618846 -3.809341) (xy 53.353407 -3.809341) (xy 53.650289 -4.007711) (xy 53.713613 -4.102482)
(xy 54.642521 -5.031389) (xy 54.737289 -5.094711) (xy 54.760977 -5.130164) (xy 73.972942 -5.130164) (xy 73.998561 -4.52004)
(xy 74.182757 -4.075352) (xy 74.439241 -3.988946) (xy 75.339795 -4.8895) (xy 75.699005 -4.8895) (xy 76.599559 -3.988946)
(xy 76.856043 -4.075352) (xy 77.065858 -4.648836) (xy 77.040239 -5.25896) (xy 76.856043 -5.703648) (xy 76.601204 -5.7895)
(xy 77.47196 -5.7895) (xy 77.47196 -3.9895) (xy 77.521243 -3.741735) (xy 77.661591 -3.531691) (xy 77.871635 -3.391343)
(xy 78.1194 -3.34206) (xy 79.9194 -3.34206) (xy 80.167165 -3.391343) (xy 80.377209 -3.531691) (xy 80.517557 -3.741735)
(xy 80.56684 -3.9895) (xy 80.56684 -5.7895) (xy 80.517557 -6.037265) (xy 80.377209 -6.247309) (xy 80.167165 -6.387657)
(xy 79.9194 -6.43694) (xy 78.1194 -6.43694) (xy 77.871635 -6.387657) (xy 77.661591 -6.247309) (xy 77.521243 -6.037265)
(xy 77.47196 -5.7895) (xy 76.601204 -5.7895) (xy 76.599559 -5.790054) (xy 75.699005 -4.8895) (xy 75.339795 -4.8895)
(xy 74.439241 -5.790054) (xy 74.182757 -5.703648) (xy 73.972942 -5.130164) (xy 54.760977 -5.130164) (xy 54.988146 -5.470145)
(xy 55.02431 -5.651953) (xy 55.076235 -5.912999) (xy 55.064965 -5.969659) (xy 74.618846 -5.969659) (xy 75.5194 -5.069105)
(xy 76.419954 -5.969659) (xy 76.333548 -6.226143) (xy 75.760064 -6.435958) (xy 75.14994 -6.410339) (xy 74.705252 -6.226143)
(xy 74.618846 -5.969659) (xy 55.064965 -5.969659) (xy 55.054 -6.024782) (xy 55.054 -7.000538) (xy 55.072116 -7.018654)
(xy 55.302 -7.573642) (xy 55.302 -8.174358) (xy 55.782 -8.174358) (xy 55.782 -7.573642) (xy 56.011884 -7.018654)
(xy 56.436654 -6.593884) (xy 56.991642 -6.364) (xy 57.592358 -6.364) (xy 58.147346 -6.593884) (xy 58.365402 -6.81194)
(xy 59.909545 -6.81194) (xy 59.992884 -6.558047) (xy 60.557306 -6.35241) (xy 61.157458 -6.378421) (xy 61.591116 -6.558047)
(xy 61.674455 -6.81194) (xy 60.792 -7.694395) (xy 59.909545 -6.81194) (xy 58.365402 -6.81194) (xy 58.572116 -7.018654)
(xy 58.802 -7.573642) (xy 58.802 -8.108694) (xy 59.27041 -8.108694) (xy 59.296421 -7.508542) (xy 59.476047 -7.074884)
(xy 59.72994 -6.991545) (xy 60.612395 -7.874) (xy 60.971605 -7.874) (xy 61.85406 -6.991545) (xy 62.107953 -7.074884)
(xy 62.31359 -7.639306) (xy 62.287579 -8.239458) (xy 62.107953 -8.673116) (xy 61.85406 -8.756455) (xy 60.971605 -7.874)
(xy 60.612395 -7.874) (xy 59.72994 -8.756455) (xy 59.476047 -8.673116) (xy 59.27041 -8.108694) (xy 58.802 -8.108694)
(xy 58.802 -8.174358) (xy 58.572116 -8.729346) (xy 58.365402 -8.93606) (xy 59.909545 -8.93606) (xy 60.792 -8.053605)
(xy 61.674455 -8.93606) (xy 61.591116 -9.189953) (xy 61.026694 -9.39559) (xy 60.426542 -9.369579) (xy 59.992884 -9.189953)
(xy 59.909545 -8.93606) (xy 58.365402 -8.93606) (xy 58.147346 -9.154116) (xy 57.592358 -9.384) (xy 56.991642 -9.384)
(xy 56.436654 -9.154116) (xy 56.011884 -8.729346) (xy 55.782 -8.174358) (xy 55.302 -8.174358) (xy 55.072116 -8.729346)
(xy 54.647346 -9.154116) (xy 54.092358 -9.384) (xy 53.491642 -9.384) (xy 52.936654 -9.154116) (xy 52.511884 -8.729346)
(xy 52.282 -8.174358) (xy 52.282 -7.573642) (xy 52.511884 -7.018654) (xy 52.784001 -6.746537) (xy 52.784001 -6.383132)
(xy 52.361869 -5.961) (xy 45.936133 -5.961) (xy 38.6 -13.297131) (xy 38.6 -14.456968) (xy 38.950038 -14.10693)
(xy 39.881757 -13.721) (xy 40.890243 -13.721) (xy 41.821962 -14.10693) (xy 42.53507 -14.820038) (xy 42.921 -15.751757)
(xy 42.921 -16.760243) (xy 42.53507 -17.691962) (xy 41.821962 -18.40507) (xy 40.890243 -18.791) (xy 39.881757 -18.791)
(xy 38.950038 -18.40507) (xy 38.6 -18.055032) (xy 38.6 -30.114218) (xy 38.622235 -30.226001) (xy 38.534146 -30.668855)
(xy 38.526342 -30.680534) (xy 38.283289 -31.044289) (xy 38.188521 -31.107611) (xy 36.441 -32.855131) (xy 36.441 -33.439445)
(xy 36.487482 -33.408387) (xy 43.188 -26.707868) (xy 43.188 -26.177218) (xy 43.188001 -26.177213) (xy 43.188 -15.206783)
(xy 43.165765 -15.095) (xy 43.220458 -14.820038) (xy 43.253854 -14.652146) (xy 43.504711 -14.276711) (xy 43.599482 -14.213387)
(xy 48.818388 -8.99448) (xy 48.76956 -8.749) (xy 48.76956 -6.999) (xy 48.818843 -6.751235) (xy 48.959191 -6.541191)
(xy 49.169235 -6.400843) (xy 49.417 -6.35156) (xy 51.167 -6.35156) (xy 51.414765 -6.400843) (xy 51.624809 -6.541191)
(xy 51.765157 -6.751235) (xy 51.81444 -6.999) (xy 51.81444 -8.749) (xy 51.765157 -8.996765) (xy 51.624809 -9.206809)
(xy 51.521118 -9.276094) (xy 51.488146 -9.441855) (xy 51.484534 -9.44726) (xy 51.237289 -9.817289) (xy 51.142521 -9.880611)
(xy 45.458 -15.565131) (xy 45.458 -27.066217) (xy 45.480235 -27.178) (xy 45.392146 -27.620855) (xy 45.354028 -27.677903)
(xy 45.141289 -27.996289) (xy 45.046521 -28.059611) (xy 38.346 -34.760131) (xy 38.346 -40.116783) (xy 38.319 -40.252522)
(xy 38.319 -40.362199) (xy 40.134 -38.547197) (xy 40.134001 -37.60028) (xy 40.066854 -37.645146) (xy 39.624 -37.733235)
(xy 39.181146 -37.645146) (xy 38.805712 -37.394288) (xy 38.554854 -37.018854) (xy 38.466765 -36.576) (xy 38.554854 -36.133146)
(xy 38.742392 -35.852477) (xy 63.284001 -11.310867) (xy 63.284 -9.001462) (xy 63.011884 -8.729346) (xy 62.782 -8.174358)
(xy 62.782 -7.573642) (xy 63.011884 -7.018654) (xy 63.436654 -6.593884) (xy 63.991642 -6.364) (xy 64.592358 -6.364)
(xy 65.147346 -6.593884) (xy 65.572116 -7.018654) (xy 65.802 -7.573642) (xy 65.802 -8.174358) (xy 65.572116 -8.729346)
(xy 65.554 -8.747462) (xy 65.554 -11.669219) (xy 65.576235 -11.781001) (xy 65.536215 -11.982194) (xy 65.488146 -12.223855)
(xy 65.237289 -12.599289) (xy 65.142521 -12.662611) (xy 43.703631 -34.1015) (xy 45.204008 -34.1015) (xy 45.190354 -34.081065)
(xy 45.096569 -33.98728) (xy 45.045814 -33.864747) (xy 45.031854 -33.843854) (xy 45.026952 -33.819209) (xy 44.939 -33.606874)
(xy 44.939 -33.195126) (xy 45.026952 -32.982791) (xy 45.031854 -32.958146) (xy 45.045814 -32.937253) (xy 45.096569 -32.81472)
(xy 45.190354 -32.720935) (xy 45.219392 -32.677477) (xy 66.784001 -11.112866) (xy 66.784 -9.001462) (xy 66.511884 -8.729346)
(xy 66.282 -8.174358) (xy 66.282 -7.573642) (xy 66.511884 -7.018654) (xy 66.936654 -6.593884) (xy 67.491642 -6.364)
(xy 68.092358 -6.364) (xy 68.647346 -6.593884) (xy 69.072116 -7.018654) (xy 69.122155 -7.139461) (xy 83.548 -7.139461)
(xy 83.548 -6.576539) (xy 83.763421 -6.056467) (xy 84.161467 -5.658421) (xy 84.681539 -5.443) (xy 85.244461 -5.443)
(xy 85.764533 -5.658421) (xy 86.162579 -6.056467) (xy 86.233 -6.226478) (xy 86.303421 -6.056467) (xy 86.701467 -5.658421)
(xy 87.221539 -5.443) (xy 87.784461 -5.443) (xy 88.304533 -5.658421) (xy 88.702579 -6.056467) (xy 88.773 -6.226478)
(xy 88.843421 -6.056467) (xy 89.241467 -5.658421) (xy 89.761539 -5.443) (xy 90.324461 -5.443) (xy 90.844533 -5.658421)
(xy 91.050857 -5.864745) (xy 91.76935 -5.864745) (xy 91.841028 -5.620697) (xy 92.371003 -5.43094) (xy 92.933252 -5.458441)
(xy 93.324972 -5.620697) (xy 93.39665 -5.864745) (xy 92.583 -6.678395) (xy 91.76935 -5.864745) (xy 91.050857 -5.864745)
(xy 91.242579 -6.056467) (xy 91.306473 -6.210722) (xy 91.345697 -6.116028) (xy 91.589745 -6.04435) (xy 92.403395 -6.858)
(xy 92.762605 -6.858) (xy 93.576255 -6.04435) (xy 93.820303 -6.116028) (xy 93.856674 -6.217609) (xy 93.923421 -6.056467)
(xy 94.321467 -5.658421) (xy 94.841539 -5.443) (xy 95.404461 -5.443) (xy 95.924533 -5.658421) (xy 96.322579 -6.056467)
(xy 96.538 -6.576539) (xy 96.538 -7.139461) (xy 96.322579 -7.659533) (xy 95.924533 -8.057579) (xy 95.404461 -8.273)
(xy 94.841539 -8.273) (xy 94.321467 -8.057579) (xy 93.923421 -7.659533) (xy 93.859527 -7.505278) (xy 93.820303 -7.599972)
(xy 93.576255 -7.67165) (xy 92.762605 -6.858) (xy 92.403395 -6.858) (xy 91.589745 -7.67165) (xy 91.345697 -7.599972)
(xy 91.309326 -7.498391) (xy 91.242579 -7.659533) (xy 91.050857 -7.851255) (xy 91.76935 -7.851255) (xy 92.583 -7.037605)
(xy 93.39665 -7.851255) (xy 93.324972 -8.095303) (xy 92.794997 -8.28506) (xy 92.232748 -8.257559) (xy 91.841028 -8.095303)
(xy 91.76935 -7.851255) (xy 91.050857 -7.851255) (xy 90.844533 -8.057579) (xy 90.324461 -8.273) (xy 89.761539 -8.273)
(xy 89.241467 -8.057579) (xy 88.843421 -7.659533) (xy 88.773 -7.489522) (xy 88.702579 -7.659533) (xy 88.304533 -8.057579)
(xy 87.784461 -8.273) (xy 87.221539 -8.273) (xy 86.701467 -8.057579) (xy 86.303421 -7.659533) (xy 86.233 -7.489522)
(xy 86.162579 -7.659533) (xy 85.764533 -8.057579) (xy 85.244461 -8.273) (xy 84.681539 -8.273) (xy 84.161467 -8.057579)
(xy 83.763421 -7.659533) (xy 83.548 -7.139461) (xy 69.122155 -7.139461) (xy 69.302 -7.573642) (xy 69.302 -8.174358)
(xy 69.228228 -8.35246) (xy 96.858 -8.35246) (xy 96.858 -7.42354) (xy 97.213483 -6.565329) (xy 97.870329 -5.908483)
(xy 98.72854 -5.553) (xy 99.65746 -5.553) (xy 100.515671 -5.908483) (xy 101.172517 -6.565329) (xy 101.528 -7.42354)
(xy 101.528 -8.35246) (xy 101.172517 -9.210671) (xy 100.935928 -9.44726) (xy 102.3426 -9.44726) (xy 102.3426 -8.62774)
(xy 102.656216 -7.870604) (xy 103.235704 -7.291116) (xy 103.99284 -6.9775) (xy 104.81236 -6.9775) (xy 105.569496 -7.291116)
(xy 106.148984 -7.870604) (xy 106.4626 -8.62774) (xy 106.4626 -9.44726) (xy 115.4826 -9.44726) (xy 115.4826 -8.62774)
(xy 115.796216 -7.870604) (xy 116.375704 -7.291116) (xy 117.13284 -6.9775) (xy 117.95236 -6.9775) (xy 118.709496 -7.291116)
(xy 118.78438 -7.366) (xy 127.388969 -7.366) (xy 127.515864 -6.728055) (xy 127.877231 -6.187231) (xy 128.418055 -5.825864)
(xy 128.784914 -5.752891) (xy 128.848191 -5.658191) (xy 129.058235 -5.517843) (xy 129.306 -5.46856) (xy 131.806 -5.46856)
(xy 132.053765 -5.517843) (xy 132.263809 -5.658191) (xy 132.404157 -5.868235) (xy 132.436866 -6.03268) (xy 134.482285 -6.03268)
(xy 134.611533 -5.739877) (xy 135.311806 -5.471612) (xy 136.061435 -5.49175) (xy 136.660467 -5.739877) (xy 136.789715 -6.03268)
(xy 135.636 -7.186395) (xy 134.482285 -6.03268) (xy 132.436866 -6.03268) (xy 132.45344 -6.116) (xy 132.45344 -7.690194)
(xy 133.741612 -7.690194) (xy 133.76175 -6.940565) (xy 134.009877 -6.341533) (xy 134.30268 -6.212285) (xy 135.456395 -7.366)
(xy 135.815605 -7.366) (xy 136.96932 -6.212285) (xy 137.262123 -6.341533) (xy 137.369709 -6.622375) (xy 142.717 -6.622375)
(xy 142.717 -5.076825) (xy 143.308456 -3.648924) (xy 144.401324 -2.556056) (xy 145.829225 -1.9646) (xy 147.374775 -1.9646)
(xy 148.802676 -2.556056) (xy 149.895544 -3.648924) (xy 150.487 -5.076825) (xy 150.487 -6.622375) (xy 149.895544 -8.050276)
(xy 148.802676 -9.143144) (xy 147.374775 -9.7346) (xy 145.829225 -9.7346) (xy 144.401324 -9.143144) (xy 143.308456 -8.050276)
(xy 142.717 -6.622375) (xy 137.369709 -6.622375) (xy 137.530388 -7.041806) (xy 137.51025 -7.791435) (xy 137.262123 -8.390467)
(xy 136.96932 -8.519715) (xy 135.815605 -7.366) (xy 135.456395 -7.366) (xy 134.30268 -8.519715) (xy 134.009877 -8.390467)
(xy 133.741612 -7.690194) (xy 132.45344 -7.690194) (xy 132.45344 -8.616) (xy 132.436867 -8.69932) (xy 134.482285 -8.69932)
(xy 135.636 -7.545605) (xy 136.789715 -8.69932) (xy 136.660467 -8.992123) (xy 135.960194 -9.260388) (xy 135.210565 -9.24025)
(xy 134.611533 -8.992123) (xy 134.482285 -8.69932) (xy 132.436867 -8.69932) (xy 132.404157 -8.863765) (xy 132.263809 -9.073809)
(xy 132.053765 -9.214157) (xy 131.806 -9.26344) (xy 129.306 -9.26344) (xy 129.058235 -9.214157) (xy 128.848191 -9.073809)
(xy 128.784914 -8.979109) (xy 128.418055 -8.906136) (xy 127.877231 -8.544769) (xy 127.515864 -8.003945) (xy 127.388969 -7.366)
(xy 118.78438 -7.366) (xy 119.288984 -7.870604) (xy 119.6026 -8.62774) (xy 119.6026 -9.44726) (xy 119.288984 -10.204396)
(xy 118.709496 -10.783884) (xy 117.95236 -11.0975) (xy 117.13284 -11.0975) (xy 116.375704 -10.783884) (xy 115.796216 -10.204396)
(xy 115.4826 -9.44726) (xy 106.4626 -9.44726) (xy 106.148984 -10.204396) (xy 105.569496 -10.783884) (xy 104.81236 -11.0975)
(xy 103.99284 -11.0975) (xy 103.235704 -10.783884) (xy 102.656216 -10.204396) (xy 102.3426 -9.44726) (xy 100.935928 -9.44726)
(xy 100.515671 -9.867517) (xy 99.65746 -10.223) (xy 98.72854 -10.223) (xy 97.870329 -9.867517) (xy 97.213483 -9.210671)
(xy 96.858 -8.35246) (xy 69.228228 -8.35246) (xy 69.072116 -8.729346) (xy 69.054 -8.747462) (xy 69.054 -11.471217)
(xy 69.076235 -11.583) (xy 68.988146 -12.025855) (xy 68.973445 -12.047858) (xy 105.9626 -12.047858) (xy 105.9626 -11.447142)
(xy 106.192484 -10.892154) (xy 106.617254 -10.467384) (xy 107.172242 -10.2375) (xy 107.772958 -10.2375) (xy 108.327946 -10.467384)
(xy 108.7226 -10.862038) (xy 109.117254 -10.467384) (xy 109.672242 -10.2375) (xy 110.272958 -10.2375) (xy 110.827946 -10.467384)
(xy 110.9726 -10.612038) (xy 111.117254 -10.467384) (xy 111.672242 -10.2375) (xy 112.272958 -10.2375) (xy 112.827946 -10.467384)
(xy 113.046002 -10.68544) (xy 113.590145 -10.68544) (xy 113.673484 -10.431547) (xy 114.237906 -10.22591) (xy 114.838058 -10.251921)
(xy 115.271716 -10.431547) (xy 115.355055 -10.68544) (xy 114.4726 -11.567895) (xy 113.590145 -10.68544) (xy 113.046002 -10.68544)
(xy 113.252716 -10.892154) (xy 113.261721 -10.913894) (xy 113.41054 -10.865045) (xy 114.292995 -11.7475) (xy 114.652205 -11.7475)
(xy 115.53466 -10.865045) (xy 115.788553 -10.948384) (xy 115.99419 -11.512806) (xy 115.968179 -12.112958) (xy 115.788553 -12.546616)
(xy 115.53466 -12.629955) (xy 114.652205 -11.7475) (xy 114.292995 -11.7475) (xy 113.41054 -12.629955) (xy 113.261721 -12.581106)
(xy 113.252716 -12.602846) (xy 113.046002 -12.80956) (xy 113.590145 -12.80956) (xy 114.4726 -11.927105) (xy 115.355055 -12.80956)
(xy 115.271716 -13.063453) (xy 114.707294 -13.26909) (xy 114.107142 -13.243079) (xy 113.673484 -13.063453) (xy 113.590145 -12.80956)
(xy 113.046002 -12.80956) (xy 112.827946 -13.027616) (xy 112.272958 -13.2575) (xy 111.672242 -13.2575) (xy 111.117254 -13.027616)
(xy 110.9726 -12.882962) (xy 110.827946 -13.027616) (xy 110.272958 -13.2575) (xy 109.672242 -13.2575) (xy 109.117254 -13.027616)
(xy 108.7226 -12.632962) (xy 108.327946 -13.027616) (xy 107.772958 -13.2575) (xy 107.172242 -13.2575) (xy 106.617254 -13.027616)
(xy 106.192484 -12.602846) (xy 105.9626 -12.047858) (xy 68.973445 -12.047858) (xy 68.800609 -12.306524) (xy 68.737289 -12.401289)
(xy 68.642524 -12.464609) (xy 64.34689 -16.760243) (xy 74.3 -16.760243) (xy 74.3 -15.751757) (xy 74.68593 -14.820038)
(xy 75.399038 -14.10693) (xy 76.330757 -13.721) (xy 77.339243 -13.721) (xy 78.270962 -14.10693) (xy 78.98407 -14.820038)
(xy 79.37 -15.751757) (xy 79.37 -16.760243) (xy 107.447 -16.760243) (xy 107.447 -15.751757) (xy 107.83293 -14.820038)
(xy 108.546038 -14.10693) (xy 109.477757 -13.721) (xy 110.486243 -13.721) (xy 111.417962 -14.10693) (xy 112.13107 -14.820038)
(xy 112.517 -15.751757) (xy 112.517 -16.760243) (xy 112.13107 -17.691962) (xy 111.417962 -18.40507) (xy 110.486243 -18.791)
(xy 109.477757 -18.791) (xy 108.546038 -18.40507) (xy 107.83293 -17.691962) (xy 107.447 -16.760243) (xy 79.37 -16.760243)
(xy 78.98407 -17.691962) (xy 78.270962 -18.40507) (xy 77.339243 -18.791) (xy 76.330757 -18.791) (xy 75.399038 -18.40507)
(xy 74.68593 -17.691962) (xy 74.3 -16.760243) (xy 64.34689 -16.760243) (xy 62.885802 -18.22133) (xy 63.230626 -18.0785)
(xy 63.642374 -18.0785) (xy 64.02278 -18.236069) (xy 64.313931 -18.52722) (xy 64.4715 -18.907626) (xy 64.4715 -19.319374)
(xy 64.313931 -19.69978) (xy 64.277688 -19.736023) (xy 64.408 -20.050626) (xy 64.408 -20.462374) (xy 64.250431 -20.84278)
(xy 63.95928 -21.133931) (xy 63.578874 -21.2915) (xy 63.167126 -21.2915) (xy 62.78672 -21.133931) (xy 62.669289 -21.0165)
(xy 62.417802 -21.0165) (xy 61.881842 -21.55246) (xy 83.658 -21.55246) (xy 83.658 -20.62354) (xy 84.013483 -19.765329)
(xy 84.670329 -19.108483) (xy 85.52854 -18.753) (xy 86.45746 -18.753) (xy 87.315671 -19.108483) (xy 87.972517 -19.765329)
(xy 88.328 -20.62354) (xy 88.328 -21.55246) (xy 87.972517 -22.410671) (xy 87.315671 -23.067517) (xy 86.45746 -23.423)
(xy 85.52854 -23.423) (xy 84.670329 -23.067517) (xy 84.013483 -22.410671) (xy 83.658 -21.55246) (xy 61.881842 -21.55246)
(xy 58.470547 -24.963755) (xy 95.564861 -24.963755) (xy 95.638995 -24.717636) (xy 96.176223 -24.524535) (xy 96.746454 -24.551722)
(xy 97.147005 -24.717636) (xy 97.221139 -24.963755) (xy 96.393 -25.791895) (xy 95.564861 -24.963755) (xy 58.470547 -24.963755)
(xy 57.246025 -26.188277) (xy 94.946035 -26.188277) (xy 94.973222 -25.618046) (xy 95.139136 -25.217495) (xy 95.385255 -25.143361)
(xy 96.213395 -25.9715) (xy 96.572605 -25.9715) (xy 97.400745 -25.143361) (xy 97.646864 -25.217495) (xy 97.839965 -25.754723)
(xy 97.82963 -25.9715) (xy 102.549887 -25.9715) (xy 102.66126 -25.411591) (xy 102.978423 -24.936923) (xy 103.453091 -24.61976)
(xy 103.871667 -24.5365) (xy 104.154333 -24.5365) (xy 104.572909 -24.61976) (xy 105.047577 -24.936923) (xy 105.150364 -25.090755)
(xy 106.677361 -25.090755) (xy 106.751495 -24.844636) (xy 107.288723 -24.651535) (xy 107.858954 -24.678722) (xy 108.259505 -24.844636)
(xy 108.333639 -25.090755) (xy 107.5055 -25.918895) (xy 106.677361 -25.090755) (xy 105.150364 -25.090755) (xy 105.36474 -25.411591)
(xy 105.476113 -25.9715) (xy 105.411688 -26.295386) (xy 105.431579 -26.315277) (xy 106.058535 -26.315277) (xy 106.085722 -25.745046)
(xy 106.251636 -25.344495) (xy 106.497755 -25.270361) (xy 107.325895 -26.0985) (xy 107.685105 -26.0985) (xy 108.513245 -25.270361)
(xy 108.759364 -25.344495) (xy 108.952465 -25.881723) (xy 108.925278 -26.451954) (xy 108.759364 -26.852505) (xy 108.513245 -26.926639)
(xy 107.685105 -26.0985) (xy 107.325895 -26.0985) (xy 106.497755 -26.926639) (xy 106.251636 -26.852505) (xy 106.058535 -26.315277)
(xy 105.431579 -26.315277) (xy 106.222547 -27.106245) (xy 106.677361 -27.106245) (xy 107.5055 -26.278105) (xy 108.333639 -27.106245)
(xy 108.259505 -27.352364) (xy 107.722277 -27.545465) (xy 107.152046 -27.518278) (xy 106.751495 -27.352364) (xy 106.677361 -27.106245)
(xy 106.222547 -27.106245) (xy 107.12865 -28.012347) (xy 107.364167 -27.9655) (xy 107.646833 -27.9655) (xy 108.065409 -28.04876)
(xy 108.540077 -28.365923) (xy 108.85724 -28.840591) (xy 108.968613 -29.4005) (xy 108.85724 -29.960409) (xy 108.540077 -30.435077)
(xy 108.065409 -30.75224) (xy 107.646833 -30.8355) (xy 107.364167 -30.8355) (xy 106.945591 -30.75224) (xy 106.470923 -30.435077)
(xy 106.238723 -30.087565) (xy 105.307943 -30.087565) (xy 105.229534 -30.276862) (xy 104.825862 -30.680534) (xy 104.298439 -30.899)
(xy 103.727561 -30.899) (xy 103.200138 -30.680534) (xy 102.796466 -30.276862) (xy 102.578 -29.749439) (xy 102.578 -29.178561)
(xy 102.796466 -28.651138) (xy 103.200138 -28.247466) (xy 103.727561 -28.029) (xy 104.298439 -28.029) (xy 104.825862 -28.247466)
(xy 105.145961 -28.567565) (xy 105.534263 -28.567565) (xy 104.336886 -27.370188) (xy 104.154333 -27.4065) (xy 103.871667 -27.4065)
(xy 103.453091 -27.32324) (xy 102.978423 -27.006077) (xy 102.66126 -26.531409) (xy 102.549887 -25.9715) (xy 97.82963 -25.9715)
(xy 97.812778 -26.324954) (xy 97.646864 -26.725505) (xy 97.400745 -26.799639) (xy 96.572605 -25.9715) (xy 96.213395 -25.9715)
(xy 95.385255 -26.799639) (xy 95.139136 -26.725505) (xy 94.946035 -26.188277) (xy 57.246025 -26.188277) (xy 56.455057 -26.979245)
(xy 95.564861 -26.979245) (xy 96.393 -26.151105) (xy 97.221139 -26.979245) (xy 97.147005 -27.225364) (xy 96.609777 -27.418465)
(xy 96.039546 -27.391278) (xy 95.638995 -27.225364) (xy 95.564861 -26.979245) (xy 56.455057 -26.979245) (xy 48.151831 -35.28247)
(xy 48.109429 -35.345929) (xy 47.858037 -35.513904) (xy 47.779108 -35.529604) (xy 47.454741 -35.85397) (xy 47.412339 -35.917429)
(xy 47.160947 -36.085404) (xy 46.939262 -36.1295) (xy 46.939257 -36.1295) (xy 46.86441 -36.144388) (xy 46.789563 -36.1295)
(xy 43.748802 -36.1295) (xy 42.162 -37.716301) (xy 42.162 -39.104654) (xy 42.176888 -39.179501) (xy 42.162 -39.254348)
(xy 42.162 -39.254352) (xy 42.117904 -39.476037) (xy 41.949929 -39.727429) (xy 41.886473 -39.769829) (xy 39.261831 -42.39447)
(xy 39.219429 -42.457929) (xy 38.968037 -42.625904) (xy 38.746352 -42.67) (xy 38.746347 -42.67) (xy 38.6715 -42.684888)
(xy 38.596653 -42.67) (xy 37.793469 -42.67) (xy 37.902289 -42.742711) (xy 38.153146 -43.118145) (xy 38.219 -43.449217)
(xy 38.219 -57.408325) (xy 38.23693 -57.365038) (xy 38.950038 -56.65193) (xy 39.881757 -56.266) (xy 40.890243 -56.266)
(xy 41.821962 -56.65193) (xy 42.53507 -57.365038) (xy 42.921 -58.296757) (xy 42.921 -59.305243) (xy 42.53507 -60.236962)
(xy 41.821962 -60.95007) (xy 40.890243 -61.336) (xy 39.881757 -61.336) (xy 38.950038 -60.95007) (xy 38.23693 -60.236962)
(xy 38.219 -60.193675) (xy 38.219 -65.961283) (xy 38.153146 -66.292355) (xy 37.902289 -66.667789) (xy 37.526855 -66.918646)
(xy 37.084 -67.006735) (xy 36.641146 -66.918646) (xy 36.473786 -66.80682) (xy 36.43422 -66.790431) (xy 36.403937 -66.760148)
(xy 36.270507 -66.670993) (xy 36.187789 -66.794789) (xy 35.812354 -67.045646) (xy 35.779189 -67.052243) (xy 38.867 -67.052243)
(xy 38.867 -66.043757) (xy 39.25293 -65.112038) (xy 39.966038 -64.39893) (xy 40.897757 -64.013) (xy 41.906243 -64.013)
(xy 42.837962 -64.39893) (xy 43.55107 -65.112038) (xy 43.624266 -65.288748) (xy 45.262485 -63.650528) (xy 45.304886 -63.587071)
(xy 45.556278 -63.419096) (xy 45.777963 -63.375) (xy 45.777968 -63.375) (xy 45.852815 -63.360112) (xy 45.927662 -63.375)
(xy 45.976699 -63.375) (xy 47.23068 -62.121018) (xy 47.273081 -62.057561) (xy 47.336537 -62.015161) (xy 47.524472 -61.889586)
(xy 47.572615 -61.88001) (xy 47.746158 -61.84549) (xy 47.746162 -61.84549) (xy 47.82101 -61.830602) (xy 47.895858 -61.84549)
(xy 51.316209 -61.84549) (xy 51.535 -61.626698) (xy 51.535001 -59.30943) (xy 51.482138 -59.287534) (xy 51.078466 -58.883862)
(xy 51.025 -58.754784) (xy 50.971534 -58.883862) (xy 50.567862 -59.287534) (xy 50.040439 -59.506) (xy 49.469561 -59.506)
(xy 48.942138 -59.287534) (xy 48.538466 -58.883862) (xy 48.485 -58.754784) (xy 48.431534 -58.883862) (xy 48.027862 -59.287534)
(xy 47.500439 -59.506) (xy 46.929561 -59.506) (xy 46.402138 -59.287534) (xy 45.998466 -58.883862) (xy 45.78 -58.356439)
(xy 45.78 -57.785561) (xy 45.998466 -57.258138) (xy 46.402138 -56.854466) (xy 46.531216 -56.801) (xy 46.402138 -56.747534)
(xy 45.998466 -56.343862) (xy 45.78 -55.816439) (xy 45.78 -55.245561) (xy 45.998466 -54.718138) (xy 46.402138 -54.314466)
(xy 46.531216 -54.261) (xy 46.402138 -54.207534) (xy 45.998466 -53.803862) (xy 45.78 -53.276439) (xy 45.78 -52.705561)
(xy 45.998466 -52.178138) (xy 46.402138 -51.774466) (xy 46.929561 -51.556) (xy 47.500439 -51.556) (xy 48.027862 -51.774466)
(xy 48.431534 -52.178138) (xy 48.485 -52.307216) (xy 48.538466 -52.178138) (xy 48.942138 -51.774466) (xy 49.469561 -51.556)
(xy 50.040439 -51.556) (xy 50.567862 -51.774466) (xy 50.971534 -52.178138) (xy 51.025 -52.307216) (xy 51.078466 -52.178138)
(xy 51.482138 -51.774466) (xy 52.009561 -51.556) (xy 52.580439 -51.556) (xy 53.107862 -51.774466) (xy 53.511534 -52.178138)
(xy 53.565 -52.307216) (xy 53.618466 -52.178138) (xy 54.022138 -51.774466) (xy 54.549561 -51.556) (xy 55.120439 -51.556)
(xy 55.647862 -51.774466) (xy 56.051534 -52.178138) (xy 56.105 -52.307216) (xy 56.158466 -52.178138) (xy 56.562138 -51.774466)
(xy 57.089561 -51.556) (xy 57.660439 -51.556) (xy 58.187862 -51.774466) (xy 58.591534 -52.178138) (xy 58.645 -52.307216)
(xy 58.698466 -52.178138) (xy 59.102138 -51.774466) (xy 59.629561 -51.556) (xy 60.200439 -51.556) (xy 60.727862 -51.774466)
(xy 61.131534 -52.178138) (xy 61.185 -52.307216) (xy 61.238466 -52.178138) (xy 61.642138 -51.774466) (xy 62.169561 -51.556)
(xy 62.740439 -51.556) (xy 62.9305 -51.634726) (xy 62.930501 -40.972856) (xy 62.9305 -40.972851) (xy 62.9305 -40.587847)
(xy 62.915612 -40.513) (xy 62.9305 -40.438153) (xy 62.9305 -40.438148) (xy 62.974596 -40.216463) (xy 63.142571 -39.965071)
(xy 63.206029 -39.92267) (xy 71.228171 -31.900527) (xy 71.270571 -31.837071) (xy 71.334027 -31.794671) (xy 71.521962 -31.669096)
(xy 71.570105 -31.65952) (xy 71.743648 -31.625) (xy 71.743652 -31.625) (xy 71.8185 -31.610112) (xy 71.879536 -31.622253)
(xy 71.99422 -31.507569) (xy 72.374626 -31.35) (xy 72.786374 -31.35) (xy 73.16678 -31.507569) (xy 73.457931 -31.79872)
(xy 73.6155 -32.179126) (xy 73.6155 -32.590874) (xy 73.536593 -32.781374) (xy 74.784 -32.781374) (xy 74.784 -32.369626)
(xy 74.941569 -31.98922) (xy 75.23272 -31.698069) (xy 75.613126 -31.5405) (xy 75.779199 -31.5405) (xy 75.98131 -31.338389)
(xy 75.903463 -31.322904) (xy 75.810817 -31.261) (xy 75.613126 -31.261) (xy 75.23272 -31.103431) (xy 74.941569 -30.81228)
(xy 74.784 -30.431874) (xy 74.784 -30.020126) (xy 74.941569 -29.63972) (xy 75.23272 -29.348569) (xy 75.613126 -29.191)
(xy 76.024874 -29.191) (xy 76.40528 -29.348569) (xy 76.696431 -29.63972) (xy 76.782289 -29.847) (xy 83.18909 -29.847)
(xy 83.004215 -29.770422) (xy 82.586478 -29.352685) (xy 82.3604 -28.806885) (xy 82.3604 -28.216115) (xy 82.586478 -27.670315)
(xy 83.004215 -27.252578) (xy 83.550015 -27.0265) (xy 84.140785 -27.0265) (xy 84.686585 -27.252578) (xy 85.104322 -27.670315)
(xy 85.1154 -27.69706) (xy 85.126478 -27.670315) (xy 85.544215 -27.252578) (xy 86.090015 -27.0265) (xy 86.680785 -27.0265)
(xy 87.226585 -27.252578) (xy 87.644322 -27.670315) (xy 87.6554 -27.69706) (xy 87.666478 -27.670315) (xy 88.084215 -27.252578)
(xy 88.630015 -27.0265) (xy 89.220785 -27.0265) (xy 89.766585 -27.252578) (xy 90.184322 -27.670315) (xy 90.1954 -27.69706)
(xy 90.206478 -27.670315) (xy 90.624215 -27.252578) (xy 91.170015 -27.0265) (xy 91.760785 -27.0265) (xy 92.306585 -27.252578)
(xy 92.724322 -27.670315) (xy 92.9504 -28.216115) (xy 92.9504 -28.806885) (xy 92.822791 -29.114961) (xy 95.001096 -29.114961)
(xy 95.161959 -28.726577) (xy 95.537866 -28.311611) (xy 96.043959 -28.072086) (xy 96.266 -28.193371) (xy 96.266 -29.337)
(xy 96.52 -29.337) (xy 96.52 -28.193371) (xy 96.742041 -28.072086) (xy 97.248134 -28.311611) (xy 97.624041 -28.726577)
(xy 97.784904 -29.114961) (xy 97.662915 -29.337) (xy 96.52 -29.337) (xy 96.266 -29.337) (xy 95.123085 -29.337)
(xy 95.001096 -29.114961) (xy 92.822791 -29.114961) (xy 92.724322 -29.352685) (xy 92.306585 -29.770422) (xy 92.203699 -29.813039)
(xy 95.001096 -29.813039) (xy 95.123085 -29.591) (xy 96.266 -29.591) (xy 96.266 -30.734629) (xy 96.52 -30.734629)
(xy 96.52 -29.591) (xy 97.662915 -29.591) (xy 97.784904 -29.813039) (xy 97.624041 -30.201423) (xy 97.248134 -30.616389)
(xy 96.742041 -30.855914) (xy 96.52 -30.734629) (xy 96.266 -30.734629) (xy 96.043959 -30.855914) (xy 95.537866 -30.616389)
(xy 95.161959 -30.201423) (xy 95.001096 -29.813039) (xy 92.203699 -29.813039) (xy 91.760785 -29.9965) (xy 91.170015 -29.9965)
(xy 90.624215 -29.770422) (xy 90.206478 -29.352685) (xy 90.1954 -29.32594) (xy 90.184322 -29.352685) (xy 89.766585 -29.770422)
(xy 89.220785 -29.9965) (xy 88.630015 -29.9965) (xy 88.084215 -29.770422) (xy 87.666478 -29.352685) (xy 87.659153 -29.335)
(xy 87.651647 -29.335) (xy 87.644322 -29.352685) (xy 87.226585 -29.770422) (xy 86.680785 -29.9965) (xy 86.090015 -29.9965)
(xy 86.02679 -29.970311) (xy 84.905631 -31.09147) (xy 84.886781 -31.11968) (xy 88.476988 -34.709886) (xy 88.630015 -34.6465)
(xy 89.220785 -34.6465) (xy 89.766585 -34.872578) (xy 90.184322 -35.290315) (xy 90.1954 -35.31706) (xy 90.206478 -35.290315)
(xy 90.624215 -34.872578) (xy 91.170015 -34.6465) (xy 91.760785 -34.6465) (xy 92.306585 -34.872578) (xy 92.724322 -35.290315)
(xy 92.744057 -35.337961) (xy 95.318596 -35.337961) (xy 95.479459 -34.949577) (xy 95.855366 -34.534611) (xy 96.361459 -34.295086)
(xy 96.5835 -34.416371) (xy 96.5835 -35.56) (xy 96.8375 -35.56) (xy 96.8375 -34.416371) (xy 97.059541 -34.295086)
(xy 97.565634 -34.534611) (xy 97.941541 -34.949577) (xy 98.102404 -35.337961) (xy 97.980415 -35.56) (xy 96.8375 -35.56)
(xy 96.5835 -35.56) (xy 95.440585 -35.56) (xy 95.318596 -35.337961) (xy 92.744057 -35.337961) (xy 92.9504 -35.836115)
(xy 92.9504 -36.036039) (xy 95.318596 -36.036039) (xy 95.440585 -35.814) (xy 96.5835 -35.814) (xy 96.5835 -36.957629)
(xy 96.8375 -36.957629) (xy 96.8375 -35.814) (xy 97.980415 -35.814) (xy 98.067461 -35.972439) (xy 102.8955 -35.972439)
(xy 102.8955 -35.401561) (xy 103.113966 -34.874138) (xy 103.517638 -34.470466) (xy 104.045061 -34.252) (xy 104.615939 -34.252)
(xy 105.143362 -34.470466) (xy 105.547034 -34.874138) (xy 105.565022 -34.917565) (xy 106.568831 -34.917565) (xy 106.788423 -34.588923)
(xy 107.263091 -34.27176) (xy 107.681667 -34.1885) (xy 107.964333 -34.1885) (xy 108.382909 -34.27176) (xy 108.857577 -34.588923)
(xy 109.041043 -34.8635) (xy 112.587501 -34.8635) (xy 112.5875 -28.014847) (xy 112.572612 -27.94) (xy 112.5875 -27.865153)
(xy 112.5875 -27.865149) (xy 112.631596 -27.643464) (xy 112.799571 -27.392071) (xy 112.86303 -27.349669) (xy 113.609314 -26.603384)
(xy 113.609597 -26.601963) (xy 113.727448 -26.425585) (xy 113.662387 -26.0985) (xy 113.77376 -25.538591) (xy 114.090923 -25.063923)
(xy 114.565591 -24.74676) (xy 114.756487 -24.708788) (xy 113.117028 -23.069329) (xy 113.053572 -23.026929) (xy 113.011172 -22.963473)
(xy 113.011171 -22.963472) (xy 112.885597 -22.775537) (xy 112.826612 -22.479) (xy 112.841501 -22.404149) (xy 112.8415 -21.460302)
(xy 112.397699 -21.0165) (xy 104.970711 -21.0165) (xy 104.85328 -21.133931) (xy 104.472874 -21.2915) (xy 104.061126 -21.2915)
(xy 103.68072 -21.133931) (xy 103.389569 -20.84278) (xy 103.232 -20.462374) (xy 103.232 -20.050626) (xy 103.343714 -19.780925)
(xy 103.326069 -19.76328) (xy 103.1685 -19.382874) (xy 103.1685 -18.971126) (xy 103.326069 -18.59072) (xy 103.61722 -18.299569)
(xy 103.997626 -18.142) (xy 104.409374 -18.142) (xy 104.78978 -18.299569) (xy 105.080931 -18.59072) (xy 105.174659 -18.816999)
(xy 112.783652 -18.816999) (xy 112.858499 -18.802111) (xy 112.933346 -18.816999) (xy 112.933351 -18.816999) (xy 113.155036 -18.861095)
(xy 113.406428 -19.02907) (xy 113.44883 -19.092529) (xy 114.657473 -20.301171) (xy 114.720929 -20.343571) (xy 114.888904 -20.594963)
(xy 114.933 -20.816648) (xy 114.933 -20.816652) (xy 114.947888 -20.891499) (xy 114.933 -20.966346) (xy 114.933 -21.910199)
(xy 115.295515 -22.272713) (xy 115.322222 -21.712546) (xy 115.488136 -21.311995) (xy 115.734255 -21.237861) (xy 116.562395 -22.066)
(xy 116.548252 -22.080142) (xy 116.727858 -22.259748) (xy 116.742 -22.245605) (xy 116.756142 -22.259748) (xy 116.935748 -22.080142)
(xy 116.921605 -22.066) (xy 117.749745 -21.237861) (xy 117.995864 -21.311995) (xy 118.016874 -21.370448) (xy 118.065466 -21.253138)
(xy 118.469138 -20.849466) (xy 118.598216 -20.796) (xy 118.469138 -20.742534) (xy 118.065466 -20.338862) (xy 118.012 -20.209784)
(xy 117.958534 -20.338862) (xy 117.554862 -20.742534) (xy 117.441417 -20.789525) (xy 117.496005 -20.812136) (xy 117.570139 -21.058255)
(xy 116.742 -21.886395) (xy 115.913861 -21.058255) (xy 115.987995 -20.812136) (xy 116.046448 -20.791126) (xy 115.929138 -20.742534)
(xy 115.525466 -20.338862) (xy 115.307 -19.811439) (xy 115.307 -19.240561) (xy 115.525466 -18.713138) (xy 115.929138 -18.309466)
(xy 116.456561 -18.091) (xy 117.027439 -18.091) (xy 117.554862 -18.309466) (xy 117.958534 -18.713138) (xy 118.012 -18.842216)
(xy 118.065466 -18.713138) (xy 118.469138 -18.309466) (xy 118.996561 -18.091) (xy 119.567439 -18.091) (xy 120.094862 -18.309466)
(xy 120.498534 -18.713138) (xy 120.552 -18.842216) (xy 120.605466 -18.713138) (xy 121.009138 -18.309466) (xy 121.536561 -18.091)
(xy 122.107439 -18.091) (xy 122.634862 -18.309466) (xy 123.038534 -18.713138) (xy 123.092 -18.842216) (xy 123.145466 -18.713138)
(xy 123.549138 -18.309466) (xy 124.076561 -18.091) (xy 124.647439 -18.091) (xy 125.174862 -18.309466) (xy 125.578534 -18.713138)
(xy 125.632 -18.842216) (xy 125.685466 -18.713138) (xy 126.089138 -18.309466) (xy 126.616561 -18.091) (xy 127.187439 -18.091)
(xy 127.714862 -18.309466) (xy 128.118534 -18.713138) (xy 128.172 -18.842216) (xy 128.225466 -18.713138) (xy 128.629138 -18.309466)
(xy 128.758216 -18.256) (xy 128.629138 -18.202534) (xy 128.225466 -17.798862) (xy 128.007 -17.271439) (xy 128.007 -16.700561)
(xy 128.225466 -16.173138) (xy 128.629138 -15.769466) (xy 129.156561 -15.551) (xy 129.727439 -15.551) (xy 130.254862 -15.769466)
(xy 130.658534 -16.173138) (xy 130.712 -16.302216) (xy 130.765466 -16.173138) (xy 131.169138 -15.769466) (xy 131.696561 -15.551)
(xy 132.267439 -15.551) (xy 132.794862 -15.769466) (xy 133.198534 -16.173138) (xy 133.252 -16.302216) (xy 133.305466 -16.173138)
(xy 133.709138 -15.769466) (xy 134.236561 -15.551) (xy 134.807439 -15.551) (xy 135.334862 -15.769466) (xy 135.738534 -16.173138)
(xy 135.792 -16.302216) (xy 135.845466 -16.173138) (xy 136.249138 -15.769466) (xy 136.776561 -15.551) (xy 137.347439 -15.551)
(xy 137.874862 -15.769466) (xy 138.278534 -16.173138) (xy 138.332 -16.302216) (xy 138.385466 -16.173138) (xy 138.789138 -15.769466)
(xy 139.316561 -15.551) (xy 139.887439 -15.551) (xy 139.913015 -15.561594) (xy 137.745922 -13.3945) (xy 137.347007 -13.3945)
(xy 136.984874 -13.5445) (xy 136.573126 -13.5445) (xy 136.19272 -13.386931) (xy 135.901569 -13.09578) (xy 135.744 -12.715374)
(xy 135.744 -12.303626) (xy 135.901569 -11.92322) (xy 136.19272 -11.632069) (xy 136.573126 -11.4745) (xy 136.984874 -11.4745)
(xy 137.347007 -11.6245) (xy 138.025339 -11.6245) (xy 138.1125 -11.607163) (xy 138.199661 -11.6245) (xy 138.199665 -11.6245)
(xy 138.45781 -11.675848) (xy 138.750549 -11.871451) (xy 138.799925 -11.945347) (xy 142.105656 -15.251077) (xy 142.179549 -15.300451)
(xy 142.245828 -15.399643) (xy 142.375151 -15.593189) (xy 142.375152 -15.59319) (xy 142.4265 -15.851335) (xy 142.4265 -15.851339)
(xy 142.443837 -15.938499) (xy 142.4265 -16.025659) (xy 142.4265 -16.760243) (xy 143.896 -16.760243) (xy 143.896 -15.751757)
(xy 144.28193 -14.820038) (xy 144.995038 -14.10693) (xy 145.926757 -13.721) (xy 146.935243 -13.721) (xy 147.866962 -14.10693)
(xy 148.58007 -14.820038) (xy 148.966 -15.751757) (xy 148.966 -16.760243) (xy 148.58007 -17.691962) (xy 147.866962 -18.40507)
(xy 146.935243 -18.791) (xy 145.926757 -18.791) (xy 144.995038 -18.40507) (xy 144.28193 -17.691962) (xy 143.896 -16.760243)
(xy 142.4265 -16.760243) (xy 142.4265 -22.899839) (xy 142.443837 -22.987) (xy 142.4265 -23.074161) (xy 142.4265 -23.074165)
(xy 142.375152 -23.33231) (xy 142.337298 -23.388962) (xy 142.228924 -23.551155) (xy 142.228923 -23.551156) (xy 142.179549 -23.625049)
(xy 142.105656 -23.674423) (xy 141.552931 -24.227147) (xy 141.402931 -24.58928) (xy 141.11178 -24.880431) (xy 140.731374 -25.038)
(xy 140.319626 -25.038) (xy 139.93922 -24.880431) (xy 139.648069 -24.58928) (xy 139.4905 -24.208874) (xy 139.4905 -23.797126)
(xy 139.613159 -23.501) (xy 139.316561 -23.501) (xy 138.789138 -23.282534) (xy 138.385466 -22.878862) (xy 138.332 -22.749784)
(xy 138.278534 -22.878862) (xy 137.874862 -23.282534) (xy 137.347439 -23.501) (xy 136.776561 -23.501) (xy 136.249138 -23.282534)
(xy 135.845466 -22.878862) (xy 135.792 -22.749784) (xy 135.738534 -22.878862) (xy 135.334862 -23.282534) (xy 134.807439 -23.501)
(xy 134.236561 -23.501) (xy 133.709138 -23.282534) (xy 133.305466 -22.878862) (xy 133.252 -22.749784) (xy 133.198534 -22.878862)
(xy 132.794862 -23.282534) (xy 132.267439 -23.501) (xy 131.696561 -23.501) (xy 131.169138 -23.282534) (xy 130.765466 -22.878862)
(xy 130.712 -22.749784) (xy 130.658534 -22.878862) (xy 130.254862 -23.282534) (xy 129.727439 -23.501) (xy 129.156561 -23.501)
(xy 128.629138 -23.282534) (xy 128.225466 -22.878862) (xy 128.172 -22.749784) (xy 128.118534 -22.878862) (xy 127.714862 -23.282534)
(xy 127.187439 -23.501) (xy 126.616561 -23.501) (xy 126.089138 -23.282534) (xy 125.685466 -22.878862) (xy 125.632 -22.749784)
(xy 125.578534 -22.878862) (xy 125.174862 -23.282534) (xy 124.647439 -23.501) (xy 124.076561 -23.501) (xy 123.549138 -23.282534)
(xy 123.145466 -22.878862) (xy 123.092 -22.749784) (xy 123.038534 -22.878862) (xy 122.634862 -23.282534) (xy 122.107439 -23.501)
(xy 121.536561 -23.501) (xy 121.009138 -23.282534) (xy 120.605466 -22.878862) (xy 120.552 -22.749784) (xy 120.498534 -22.878862)
(xy 120.094862 -23.282534) (xy 119.567439 -23.501) (xy 119.254301 -23.501) (xy 119.610473 -23.857171) (xy 119.673929 -23.899571)
(xy 119.799475 -24.087463) (xy 119.841904 -24.150962) (xy 119.854858 -24.216086) (xy 119.886 -24.372648) (xy 119.886 -24.372652)
(xy 119.900888 -24.4475) (xy 119.886 -24.522348) (xy 119.886 -31.0535) (xy 120.956153 -31.0535) (xy 121.031 -31.038612)
(xy 121.105847 -31.0535) (xy 121.105852 -31.0535) (xy 121.327537 -31.097596) (xy 121.420183 -31.1595) (xy 121.617874 -31.1595)
(xy 121.99828 -31.317069) (xy 122.289431 -31.60822) (xy 122.447 -31.988626) (xy 122.447 -32.400374) (xy 122.289431 -32.78078)
(xy 121.99828 -33.071931) (xy 121.617874 -33.2295) (xy 121.206126 -33.2295) (xy 120.82572 -33.071931) (xy 120.534569 -32.78078)
(xy 120.448711 -32.5735) (xy 119.886 -32.5735) (xy 119.886 -33.326154) (xy 119.900888 -33.401001) (xy 119.886 -33.475848)
(xy 119.886 -33.475852) (xy 119.841904 -33.697537) (xy 119.673929 -33.948929) (xy 119.610473 -33.991329) (xy 117.439766 -36.162035)
(xy 117.397364 -36.225494) (xy 117.154905 -36.3875) (xy 118.749619 -36.3875) (xy 118.756569 -36.37072) (xy 119.04772 -36.079569)
(xy 119.428126 -35.922) (xy 119.839874 -35.922) (xy 120.22028 -36.079569) (xy 120.511431 -36.37072) (xy 120.669 -36.751126)
(xy 120.669 -37.162874) (xy 120.511431 -37.54328) (xy 120.22028 -37.834431) (xy 119.839874 -37.992) (xy 119.428126 -37.992)
(xy 119.224125 -37.9075) (xy 114.819346 -37.9075) (xy 114.744499 -37.922388) (xy 114.669652 -37.9075) (xy 114.669648 -37.9075)
(xy 114.447963 -37.863404) (xy 114.418923 -37.844) (xy 114.260026 -37.737829) (xy 114.260024 -37.737827) (xy 114.196571 -37.695429)
(xy 114.154173 -37.631975) (xy 113.434527 -36.912329) (xy 113.371072 -36.869929) (xy 113.328672 -36.806473) (xy 113.328671 -36.806472)
(xy 113.203097 -36.618537) (xy 113.149552 -36.349347) (xy 112.977852 -36.3835) (xy 112.977847 -36.3835) (xy 112.903 -36.398388)
(xy 112.828153 -36.3835) (xy 109.041043 -36.3835) (xy 108.857577 -36.658077) (xy 108.382909 -36.97524) (xy 107.964333 -37.0585)
(xy 107.681667 -37.0585) (xy 107.263091 -36.97524) (xy 106.788423 -36.658077) (xy 106.641082 -36.437565) (xy 105.572838 -36.437565)
(xy 105.547034 -36.499862) (xy 105.143362 -36.903534) (xy 104.615939 -37.122) (xy 104.045061 -37.122) (xy 103.517638 -36.903534)
(xy 103.113966 -36.499862) (xy 102.8955 -35.972439) (xy 98.067461 -35.972439) (xy 98.102404 -36.036039) (xy 97.941541 -36.424423)
(xy 97.565634 -36.839389) (xy 97.059541 -37.078914) (xy 96.8375 -36.957629) (xy 96.5835 -36.957629) (xy 96.361459 -37.078914)
(xy 95.855366 -36.839389) (xy 95.479459 -36.424423) (xy 95.318596 -36.036039) (xy 92.9504 -36.036039) (xy 92.9504 -36.426885)
(xy 92.724322 -36.972685) (xy 92.306585 -37.390422) (xy 91.760785 -37.6165) (xy 91.170015 -37.6165) (xy 90.624215 -37.390422)
(xy 90.206478 -36.972685) (xy 90.199153 -36.955) (xy 90.191647 -36.955) (xy 90.184322 -36.972685) (xy 89.766585 -37.390422)
(xy 89.220785 -37.6165) (xy 88.630015 -37.6165) (xy 88.084215 -37.390422) (xy 87.666478 -36.972685) (xy 87.6554 -36.94594)
(xy 87.644322 -36.972685) (xy 87.226585 -37.390422) (xy 86.680785 -37.6165) (xy 86.090015 -37.6165) (xy 85.544215 -37.390422)
(xy 85.126478 -36.972685) (xy 85.107245 -36.926253) (xy 84.889358 -36.995853) (xy 84.025005 -36.1315) (xy 84.889358 -35.267147)
(xy 85.107245 -35.336747) (xy 85.126478 -35.290315) (xy 85.544215 -34.872578) (xy 86.090015 -34.6465) (xy 86.263998 -34.6465)
(xy 83.619499 -32.002) (xy 77.467302 -32.002) (xy 76.854 -32.615301) (xy 76.854 -32.781374) (xy 76.696431 -33.16178)
(xy 76.40528 -33.452931) (xy 76.024874 -33.6105) (xy 75.613126 -33.6105) (xy 75.23272 -33.452931) (xy 74.941569 -33.16178)
(xy 74.784 -32.781374) (xy 73.536593 -32.781374) (xy 73.457931 -32.97128) (xy 73.16678 -33.262431) (xy 72.865122 -33.387382)
(xy 72.917 -33.512626) (xy 72.917 -33.880607) (xy 73.16678 -33.984069) (xy 73.457931 -34.27522) (xy 73.6155 -34.655626)
(xy 73.6155 -35.067374) (xy 73.457931 -35.44778) (xy 73.16678 -35.738931) (xy 72.786374 -35.8965) (xy 72.374626 -35.8965)
(xy 71.99422 -35.738931) (xy 71.973295 -35.718006) (xy 71.430802 -36.2605) (xy 72.003789 -36.2605) (xy 72.12122 -36.143069)
(xy 72.501626 -35.9855) (xy 72.913374 -35.9855) (xy 73.29378 -36.143069) (xy 73.584931 -36.43422) (xy 73.7425 -36.814626)
(xy 73.7425 -37.226374) (xy 73.716198 -37.289874) (xy 74.7205 -37.289874) (xy 74.7205 -36.878126) (xy 74.878069 -36.49772)
(xy 75.16922 -36.206569) (xy 75.549626 -36.049) (xy 75.961374 -36.049) (xy 76.34178 -36.206569) (xy 76.459211 -36.324)
(xy 76.841699 -36.324) (xy 76.191767 -35.674068) (xy 75.961374 -35.7695) (xy 75.549626 -35.7695) (xy 75.16922 -35.611931)
(xy 74.878069 -35.32078) (xy 74.7205 -34.940374) (xy 74.7205 -34.528626) (xy 74.878069 -34.14822) (xy 75.16922 -33.857069)
(xy 75.549626 -33.6995) (xy 75.961374 -33.6995) (xy 76.34178 -33.857069) (xy 76.473453 -33.988742) (xy 76.623537 -34.018596)
(xy 76.874929 -34.186571) (xy 76.917331 -34.25003) (xy 77.754843 -35.087542) (xy 82.981047 -35.087542) (xy 83.06132 -34.836241)
(xy 83.616679 -34.634782) (xy 84.206858 -34.661185) (xy 84.62948 -34.836241) (xy 84.709753 -35.087542) (xy 83.8454 -35.951895)
(xy 82.981047 -35.087542) (xy 77.754843 -35.087542) (xy 79.027522 -36.360221) (xy 82.348682 -36.360221) (xy 82.375085 -35.770042)
(xy 82.550141 -35.34742) (xy 82.801442 -35.267147) (xy 83.665795 -36.1315) (xy 82.801442 -36.995853) (xy 82.550141 -36.91558)
(xy 82.348682 -36.360221) (xy 79.027522 -36.360221) (xy 79.842759 -37.175458) (xy 82.981047 -37.175458) (xy 83.8454 -36.311105)
(xy 84.709753 -37.175458) (xy 84.62948 -37.426759) (xy 84.074121 -37.628218) (xy 83.483942 -37.601815) (xy 83.06132 -37.426759)
(xy 82.981047 -37.175458) (xy 79.842759 -37.175458) (xy 81.150302 -38.483) (xy 83.046653 -38.483) (xy 83.1215 -38.468112)
(xy 83.196347 -38.483) (xy 83.196352 -38.483) (xy 83.418037 -38.527096) (xy 83.669429 -38.695071) (xy 83.711831 -38.75853)
(xy 86.305402 -41.3521) (xy 86.680785 -41.3521) (xy 87.226585 -41.578178) (xy 87.484207 -41.8358) (xy 87.826593 -41.8358)
(xy 88.084215 -41.578178) (xy 88.630015 -41.3521) (xy 89.220785 -41.3521) (xy 89.766585 -41.578178) (xy 90.184322 -41.995915)
(xy 90.1954 -42.02266) (xy 90.206478 -41.995915) (xy 90.624215 -41.578178) (xy 91.170015 -41.3521) (xy 91.760785 -41.3521)
(xy 92.306585 -41.578178) (xy 92.724322 -41.995915) (xy 92.9504 -42.541715) (xy 92.9504 -42.830961) (xy 94.937596 -42.830961)
(xy 95.098459 -42.442577) (xy 95.474366 -42.027611) (xy 95.980459 -41.788086) (xy 96.2025 -41.909371) (xy 96.2025 -43.053)
(xy 96.4565 -43.053) (xy 96.4565 -41.909371) (xy 96.678541 -41.788086) (xy 97.184634 -42.027611) (xy 97.560541 -42.442577)
(xy 97.721404 -42.830961) (xy 97.599415 -43.053) (xy 96.4565 -43.053) (xy 96.2025 -43.053) (xy 95.059585 -43.053)
(xy 94.937596 -42.830961) (xy 92.9504 -42.830961) (xy 92.9504 -43.132485) (xy 92.786142 -43.529039) (xy 94.937596 -43.529039)
(xy 95.059585 -43.307) (xy 96.2025 -43.307) (xy 96.2025 -44.450629) (xy 96.4565 -44.450629) (xy 96.4565 -43.307)
(xy 97.599415 -43.307) (xy 97.721404 -43.529039) (xy 97.560541 -43.917423) (xy 97.184634 -44.332389) (xy 96.678541 -44.571914)
(xy 96.4565 -44.450629) (xy 96.2025 -44.450629) (xy 95.980459 -44.571914) (xy 95.474366 -44.332389) (xy 95.098459 -43.917423)
(xy 94.937596 -43.529039) (xy 92.786142 -43.529039) (xy 92.724322 -43.678285) (xy 92.306585 -44.096022) (xy 91.760785 -44.3221)
(xy 91.170015 -44.3221) (xy 90.624215 -44.096022) (xy 90.206478 -43.678285) (xy 90.1954 -43.65154) (xy 90.184322 -43.678285)
(xy 89.766585 -44.096022) (xy 89.220785 -44.3221) (xy 88.630015 -44.3221) (xy 88.084215 -44.096022) (xy 87.666478 -43.678285)
(xy 87.6554 -43.65154) (xy 87.644322 -43.678285) (xy 87.226585 -44.096022) (xy 86.89901 -44.231708) (xy 89.498773 -46.831471)
(xy 89.562229 -46.873871) (xy 89.710676 -47.096037) (xy 89.730204 -47.125262) (xy 89.756607 -47.258) (xy 89.7743 -47.346948)
(xy 89.7743 -47.346952) (xy 89.789188 -47.4218) (xy 89.7743 -47.496648) (xy 89.7743 -49.205893) (xy 90.024207 -49.4558)
(xy 90.366593 -49.4558) (xy 90.624215 -49.198178) (xy 91.170015 -48.9721) (xy 91.760785 -48.9721) (xy 92.306585 -49.198178)
(xy 92.416368 -49.307961) (xy 94.937596 -49.307961) (xy 95.098459 -48.919577) (xy 95.474366 -48.504611) (xy 95.980459 -48.265086)
(xy 96.2025 -48.386371) (xy 96.2025 -49.53) (xy 96.4565 -49.53) (xy 96.4565 -48.386371) (xy 96.678541 -48.265086)
(xy 97.184634 -48.504611) (xy 97.560541 -48.919577) (xy 97.721404 -49.307961) (xy 97.599415 -49.53) (xy 96.4565 -49.53)
(xy 96.2025 -49.53) (xy 95.059585 -49.53) (xy 94.937596 -49.307961) (xy 92.416368 -49.307961) (xy 92.724322 -49.615915)
(xy 92.885916 -50.006039) (xy 94.937596 -50.006039) (xy 95.059585 -49.784) (xy 96.2025 -49.784) (xy 96.2025 -50.927629)
(xy 96.4565 -50.927629) (xy 96.4565 -49.784) (xy 97.599415 -49.784) (xy 97.721404 -50.006039) (xy 97.560541 -50.394423)
(xy 97.184634 -50.809389) (xy 96.678541 -51.048914) (xy 96.4565 -50.927629) (xy 96.2025 -50.927629) (xy 95.980459 -51.048914)
(xy 95.474366 -50.809389) (xy 95.098459 -50.394423) (xy 94.937596 -50.006039) (xy 92.885916 -50.006039) (xy 92.9504 -50.161715)
(xy 92.9504 -50.752485) (xy 92.724322 -51.298285) (xy 92.306585 -51.716022) (xy 91.760785 -51.9421) (xy 91.170015 -51.9421)
(xy 90.624215 -51.716022) (xy 90.206478 -51.298285) (xy 90.1954 -51.27154) (xy 90.184322 -51.298285) (xy 89.766585 -51.716022)
(xy 89.220785 -51.9421) (xy 88.630015 -51.9421) (xy 88.084215 -51.716022) (xy 87.666478 -51.298285) (xy 87.6554 -51.27154)
(xy 87.644322 -51.298285) (xy 87.226585 -51.716022) (xy 86.680785 -51.9421) (xy 86.090015 -51.9421) (xy 85.544215 -51.716022)
(xy 85.126478 -51.298285) (xy 85.107245 -51.251853) (xy 84.889358 -51.321453) (xy 84.025005 -50.4571) (xy 84.889358 -49.592747)
(xy 85.107245 -49.662347) (xy 85.126478 -49.615915) (xy 85.544215 -49.198178) (xy 86.090015 -48.9721) (xy 86.680785 -48.9721)
(xy 87.226585 -49.198178) (xy 87.644322 -49.615915) (xy 87.6554 -49.64266) (xy 87.666478 -49.615915) (xy 88.084215 -49.198178)
(xy 88.254301 -49.127726) (xy 88.2543 -47.736602) (xy 84.814827 -44.297128) (xy 84.751371 -44.254728) (xy 84.708971 -44.191272)
(xy 84.70897 -44.191271) (xy 84.65427 -44.109407) (xy 84.140785 -44.3221) (xy 83.550015 -44.3221) (xy 83.004215 -44.096022)
(xy 82.586478 -43.678285) (xy 82.3604 -43.132485) (xy 82.3604 -42.541715) (xy 82.586478 -41.995915) (xy 83.004215 -41.578178)
(xy 83.411978 -41.409277) (xy 82.577201 -40.5745) (xy 80.719846 -40.5745) (xy 80.644999 -40.589388) (xy 80.570152 -40.5745)
(xy 80.570148 -40.5745) (xy 80.348463 -40.530404) (xy 80.097071 -40.362429) (xy 80.054671 -40.298973) (xy 77.599699 -37.844)
(xy 76.459211 -37.844) (xy 76.34178 -37.961431) (xy 75.961374 -38.119) (xy 75.549626 -38.119) (xy 75.16922 -37.961431)
(xy 74.878069 -37.67028) (xy 74.7205 -37.289874) (xy 73.716198 -37.289874) (xy 73.584931 -37.60678) (xy 73.29378 -37.897931)
(xy 72.913374 -38.0555) (xy 72.501626 -38.0555) (xy 72.12122 -37.897931) (xy 72.003789 -37.7805) (xy 70.736302 -37.7805)
(xy 66.673 -41.843801) (xy 66.673 -45.243959) (xy 74.363586 -45.243959) (xy 74.603111 -44.737866) (xy 75.018077 -44.361959)
(xy 75.406461 -44.201096) (xy 75.6285 -44.323085) (xy 75.6285 -45.466) (xy 75.8825 -45.466) (xy 75.8825 -44.323085)
(xy 76.104539 -44.201096) (xy 76.492923 -44.361959) (xy 76.907889 -44.737866) (xy 77.147414 -45.243959) (xy 77.665586 -45.243959)
(xy 77.905111 -44.737866) (xy 78.320077 -44.361959) (xy 78.708461 -44.201096) (xy 78.9305 -44.323085) (xy 78.9305 -45.466)
(xy 79.1845 -45.466) (xy 79.1845 -44.323085) (xy 79.406539 -44.201096) (xy 79.794923 -44.361959) (xy 80.209889 -44.737866)
(xy 80.449414 -45.243959) (xy 80.328129 -45.466) (xy 79.1845 -45.466) (xy 78.9305 -45.466) (xy 77.786871 -45.466)
(xy 77.665586 -45.243959) (xy 77.147414 -45.243959) (xy 77.026129 -45.466) (xy 75.8825 -45.466) (xy 75.6285 -45.466)
(xy 74.484871 -45.466) (xy 74.363586 -45.243959) (xy 66.673 -45.243959) (xy 66.673 -45.942041) (xy 74.363586 -45.942041)
(xy 74.484871 -45.72) (xy 75.6285 -45.72) (xy 75.6285 -46.862915) (xy 75.8825 -46.862915) (xy 75.8825 -45.72)
(xy 77.026129 -45.72) (xy 77.147414 -45.942041) (xy 77.665586 -45.942041) (xy 77.786871 -45.72) (xy 78.9305 -45.72)
(xy 78.9305 -46.862915) (xy 79.1845 -46.862915) (xy 79.1845 -45.72) (xy 80.328129 -45.72) (xy 80.449414 -45.942041)
(xy 80.209889 -46.448134) (xy 79.794923 -46.824041) (xy 79.406539 -46.984904) (xy 79.1845 -46.862915) (xy 78.9305 -46.862915)
(xy 78.708461 -46.984904) (xy 78.320077 -46.824041) (xy 77.905111 -46.448134) (xy 77.665586 -45.942041) (xy 77.147414 -45.942041)
(xy 76.907889 -46.448134) (xy 76.492923 -46.824041) (xy 76.104539 -46.984904) (xy 75.8825 -46.862915) (xy 75.6285 -46.862915)
(xy 75.406461 -46.984904) (xy 75.018077 -46.824041) (xy 74.603111 -46.448134) (xy 74.363586 -45.942041) (xy 66.673 -45.942041)
(xy 66.673 -49.278698) (xy 66.807444 -49.413142) (xy 82.981047 -49.413142) (xy 83.06132 -49.161841) (xy 83.616679 -48.960382)
(xy 84.206858 -48.986785) (xy 84.62948 -49.161841) (xy 84.709753 -49.413142) (xy 83.8454 -50.277495) (xy 82.981047 -49.413142)
(xy 66.807444 -49.413142) (xy 67.180302 -49.786) (xy 70.791153 -49.786) (xy 70.866 -49.771112) (xy 70.940847 -49.786)
(xy 70.940852 -49.786) (xy 71.162537 -49.830096) (xy 71.413929 -49.998071) (xy 71.456331 -50.06153) (xy 72.080622 -50.685821)
(xy 82.348682 -50.685821) (xy 82.375085 -50.095642) (xy 82.550141 -49.67302) (xy 82.801442 -49.592747) (xy 83.665795 -50.4571)
(xy 82.801442 -51.321453) (xy 82.550141 -51.24118) (xy 82.348682 -50.685821) (xy 72.080622 -50.685821) (xy 72.816483 -51.421681)
(xy 72.879939 -51.464081) (xy 72.904646 -51.501058) (xy 82.981047 -51.501058) (xy 83.8454 -50.636705) (xy 84.709753 -51.501058)
(xy 84.62948 -51.752359) (xy 84.074121 -51.953818) (xy 83.483942 -51.927415) (xy 83.06132 -51.752359) (xy 82.981047 -51.501058)
(xy 72.904646 -51.501058) (xy 73.047914 -51.715473) (xy 73.09201 -51.937158) (xy 73.09201 -51.937162) (xy 73.106898 -52.012009)
(xy 73.09201 -52.086856) (xy 73.09201 -53.498439) (xy 74.3205 -53.498439) (xy 74.3205 -52.927561) (xy 74.538966 -52.400138)
(xy 74.942638 -51.996466) (xy 75.470061 -51.778) (xy 76.040939 -51.778) (xy 76.568362 -51.996466) (xy 76.972034 -52.400138)
(xy 77.1905 -52.927561) (xy 77.1905 -53.498439) (xy 77.6225 -53.498439) (xy 77.6225 -52.927561) (xy 77.840966 -52.400138)
(xy 78.244638 -51.996466) (xy 78.772061 -51.778) (xy 79.342939 -51.778) (xy 79.870362 -51.996466) (xy 80.134396 -52.2605)
(xy 101.587112 -52.2605) (xy 101.602001 -52.185648) (xy 101.602 -46.874347) (xy 101.587112 -46.7995) (xy 101.602 -46.724653)
(xy 101.602 -46.724649) (xy 101.646096 -46.502964) (xy 101.814071 -46.251571) (xy 101.87753 -46.209169) (xy 103.189501 -44.897197)
(xy 103.189501 -44.41843) (xy 103.136638 -44.396534) (xy 102.732966 -43.992862) (xy 102.5145 -43.465439) (xy 102.5145 -42.894561)
(xy 102.732966 -42.367138) (xy 103.136638 -41.963466) (xy 103.664061 -41.745) (xy 104.234939 -41.745) (xy 104.762362 -41.963466)
(xy 105.166034 -42.367138) (xy 105.236627 -42.537565) (xy 106.71719 -42.537565) (xy 106.851923 -42.335923) (xy 107.326591 -42.01876)
(xy 107.745167 -41.9355) (xy 108.027833 -41.9355) (xy 108.446409 -42.01876) (xy 108.921077 -42.335923) (xy 109.23824 -42.810591)
(xy 109.349613 -43.3705) (xy 109.248566 -43.8785) (xy 113.398112 -43.8785) (xy 113.413 -43.803653) (xy 113.413001 -42.556351)
(xy 113.398112 -42.4815) (xy 113.457097 -42.184963) (xy 113.571713 -42.013429) (xy 113.625072 -41.933571) (xy 113.688527 -41.891171)
(xy 114.408173 -41.171525) (xy 114.450571 -41.108071) (xy 114.514024 -41.065673) (xy 114.514026 -41.065671) (xy 114.609317 -41.002)
(xy 114.701963 -40.940096) (xy 114.923648 -40.896) (xy 114.923652 -40.896) (xy 114.998499 -40.881112) (xy 115.073346 -40.896)
(xy 118.734211 -40.896) (xy 118.820069 -40.68872) (xy 119.11122 -40.397569) (xy 119.491626 -40.24) (xy 119.903374 -40.24)
(xy 120.28378 -40.397569) (xy 120.574931 -40.68872) (xy 120.7325 -41.069126) (xy 120.7325 -41.480874) (xy 120.574931 -41.86128)
(xy 120.28378 -42.152431) (xy 119.903374 -42.31) (xy 119.705683 -42.31) (xy 119.613037 -42.371904) (xy 119.391352 -42.416)
(xy 119.391347 -42.416) (xy 119.3165 -42.430888) (xy 119.241653 -42.416) (xy 116.581396 -42.416) (xy 116.702961 -42.537565)
(xy 119.295718 -42.537565) (xy 119.370565 -42.522677) (xy 119.445412 -42.537565) (xy 119.445417 -42.537565) (xy 119.667102 -42.581661)
(xy 119.773868 -42.653) (xy 119.966874 -42.653) (xy 120.34728 -42.810569) (xy 120.638431 -43.10172) (xy 120.796 -43.482126)
(xy 120.796 -43.893874) (xy 120.638431 -44.27428) (xy 120.34728 -44.565431) (xy 119.966874 -44.723) (xy 119.555126 -44.723)
(xy 119.17472 -44.565431) (xy 118.883569 -44.27428) (xy 118.793803 -44.057565) (xy 117.317728 -44.057565) (xy 126.856164 -53.596)
(xy 130.423789 -53.596) (xy 130.54122 -53.478569) (xy 130.921626 -53.321) (xy 131.333374 -53.321) (xy 131.6995 -53.472654)
(xy 131.6995 -42.945) (xy 131.302626 -42.945) (xy 131.031277 -42.832604) (xy 130.882889 -43.146134) (xy 130.467923 -43.522041)
(xy 130.079539 -43.682904) (xy 129.8575 -43.560915) (xy 129.8575 -42.418) (xy 129.8775 -42.418) (xy 129.8775 -42.164)
(xy 129.8575 -42.164) (xy 129.8575 -42.144) (xy 129.6035 -42.144) (xy 129.6035 -42.164) (xy 129.5835 -42.164)
(xy 129.5835 -42.418) (xy 129.6035 -42.418) (xy 129.6035 -43.560915) (xy 129.381461 -43.682904) (xy 128.993077 -43.522041)
(xy 128.578111 -43.146134) (xy 128.522 -43.027577) (xy 128.522 -48.445289) (xy 128.639431 -48.56272) (xy 128.759503 -48.852601)
(xy 128.917638 -48.694466) (xy 129.445061 -48.476) (xy 130.015939 -48.476) (xy 130.543362 -48.694466) (xy 130.947034 -49.098138)
(xy 131.1655 -49.625561) (xy 131.1655 -50.196439) (xy 130.947034 -50.723862) (xy 130.543362 -51.127534) (xy 130.015939 -51.346)
(xy 129.445061 -51.346) (xy 128.917638 -51.127534) (xy 128.513966 -50.723862) (xy 128.2955 -50.196439) (xy 128.2955 -50.048293)
(xy 127.983589 -50.17749) (xy 127.877431 -50.43378) (xy 127.58628 -50.724931) (xy 127.205874 -50.8825) (xy 126.794126 -50.8825)
(xy 126.41372 -50.724931) (xy 126.1745 -50.485711) (xy 125.93528 -50.724931) (xy 125.554874 -50.8825) (xy 125.143126 -50.8825)
(xy 124.76272 -50.724931) (xy 124.471569 -50.43378) (xy 124.314 -50.053374) (xy 124.314 -49.641626) (xy 124.471569 -49.26122)
(xy 124.589 -49.143789) (xy 124.589001 -37.44702) (xy 124.575431 -37.47978) (xy 124.28428 -37.770931) (xy 123.903874 -37.9285)
(xy 123.492126 -37.9285) (xy 123.11172 -37.770931) (xy 122.820569 -37.47978) (xy 122.663 -37.099374) (xy 122.663 -36.687626)
(xy 122.820569 -36.30722) (xy 123.11172 -36.016069) (xy 123.492126 -35.8585) (xy 123.903874 -35.8585) (xy 124.28428 -36.016069)
(xy 124.575431 -36.30722) (xy 124.589001 -36.33998) (xy 124.589001 -31.183712) (xy 124.535069 -31.12978) (xy 124.3775 -30.749374)
(xy 124.3775 -30.337626) (xy 124.535069 -29.95722) (xy 124.82622 -29.666069) (xy 125.206626 -29.5085) (xy 125.618374 -29.5085)
(xy 125.99878 -29.666069) (xy 126.20625 -29.873539) (xy 126.41372 -29.666069) (xy 126.794126 -29.5085) (xy 127.205874 -29.5085)
(xy 127.58628 -29.666069) (xy 127.877431 -29.95722) (xy 127.983589 -30.21351) (xy 128.34828 -30.364569) (xy 128.4605 -30.476789)
(xy 128.50922 -30.428069) (xy 128.889626 -30.2705) (xy 129.301374 -30.2705) (xy 129.68178 -30.428069) (xy 129.972931 -30.71922)
(xy 130.1305 -31.099626) (xy 130.1305 -31.511374) (xy 129.9805 -31.873507) (xy 129.9805 -38.622422) (xy 131.672657 -40.314578)
(xy 131.74655 -40.363952) (xy 131.779122 -40.412699) (xy 131.787518 -40.392429) (xy 132.134929 -40.045018) (xy 132.588843 -39.857)
(xy 133.080157 -39.857) (xy 133.534071 -40.045018) (xy 133.881482 -40.392429) (xy 134.0695 -40.846343) (xy 134.0695 -41.337657)
(xy 133.9695 -41.579078) (xy 133.9695 -67.071538) (xy 134.114616 -67.216654) (xy 134.3445 -67.771642) (xy 134.3445 -68.372358)
(xy 134.114616 -68.927346) (xy 134.094962 -68.947) (xy 134.81206 -68.947) (xy 134.81206 -67.197) (xy 134.861343 -66.949235)
(xy 135.001691 -66.739191) (xy 135.1995 -66.607018) (xy 135.199501 -33.322288) (xy 135.177265 -33.2105) (xy 135.265354 -32.767646)
(xy 135.325603 -32.677477) (xy 135.516212 -32.392211) (xy 135.61098 -32.328889) (xy 136.913389 -31.026479) (xy 136.976711 -30.931711)
(xy 137.332364 -30.694071) (xy 137.352145 -30.680854) (xy 137.795 -30.592765) (xy 137.906783 -30.615) (xy 142.776015 -30.615)
(xy 142.798843 -30.500235) (xy 142.939191 -30.290191) (xy 143.149235 -30.149843) (xy 143.397 -30.10056) (xy 145.147 -30.10056)
(xy 145.394765 -30.149843) (xy 145.604809 -30.290191) (xy 145.745157 -30.500235) (xy 145.79444 -30.748) (xy 145.79444 -32.498)
(xy 145.745157 -32.745765) (xy 145.604809 -32.955809) (xy 145.394765 -33.096157) (xy 145.147 -33.14544) (xy 143.397 -33.14544)
(xy 143.149235 -33.096157) (xy 142.939191 -32.955809) (xy 142.891878 -32.885) (xy 138.265132 -32.885) (xy 137.4695 -33.680631)
(xy 137.4695 -36.608154) (xy 137.534881 -36.279464) (xy 137.551354 -36.196646) (xy 137.802211 -35.821211) (xy 137.896982 -35.757887)
(xy 139.135889 -34.518979) (xy 139.199211 -34.424211) (xy 139.574645 -34.173354) (xy 139.905717 -34.1075) (xy 140.017499 -34.085265)
(xy 140.129281 -34.1075) (xy 142.975261 -34.1075) (xy 143.345847 -33.736914) (xy 143.946778 -33.488) (xy 144.597222 -33.488)
(xy 145.198153 -33.736914) (xy 145.658086 -34.196847) (xy 145.907 -34.797778) (xy 145.907 -35.097998) (xy 145.937235 -35.25)
(xy 145.907 -35.402002) (xy 145.907 -35.448222) (xy 145.889313 -35.490923) (xy 145.849146 -35.692855) (xy 145.73476 -35.864046)
(xy 145.658086 -36.049153) (xy 145.198153 -36.509086) (xy 144.597222 -36.758) (xy 143.946778 -36.758) (xy 143.345847 -36.509086)
(xy 143.214261 -36.3775) (xy 140.487632 -36.3775) (xy 139.7555 -37.109631) (xy 139.7555 -37.470468) (xy 143.299073 -37.470468)
(xy 143.397736 -37.203613) (xy 144.007461 -36.977092) (xy 144.65746 -37.001144) (xy 145.146264 -37.203613) (xy 145.244927 -37.470468)
(xy 144.272 -38.443395) (xy 143.299073 -37.470468) (xy 139.7555 -37.470468) (xy 139.7555 -38.887539) (xy 142.626092 -38.887539)
(xy 142.650144 -38.23754) (xy 142.852613 -37.748736) (xy 143.119468 -37.650073) (xy 144.092395 -38.623) (xy 144.451605 -38.623)
(xy 145.424532 -37.650073) (xy 145.691387 -37.748736) (xy 145.917908 -38.358461) (xy 145.893856 -39.00846) (xy 145.691387 -39.497264)
(xy 145.424532 -39.595927) (xy 144.451605 -38.623) (xy 144.092395 -38.623) (xy 143.119468 -39.595927) (xy 142.852613 -39.497264)
(xy 142.626092 -38.887539) (xy 139.7555 -38.887539) (xy 139.7555 -39.100783) (xy 139.689646 -39.431855) (xy 139.460009 -39.775532)
(xy 143.299073 -39.775532) (xy 144.272 -38.802605) (xy 145.244927 -39.775532) (xy 145.146264 -40.042387) (xy 144.536539 -40.268908)
(xy 143.88654 -40.244856) (xy 143.397736 -40.042387) (xy 143.299073 -39.775532) (xy 139.460009 -39.775532) (xy 139.438789 -39.807289)
(xy 139.063355 -40.058146) (xy 138.6205 -40.146235) (xy 138.177646 -40.058146) (xy 137.802212 -39.807289) (xy 137.551355 -39.431855)
(xy 137.485501 -39.100783) (xy 137.4855 -36.751284) (xy 137.4695 -36.670846) (xy 137.4695 -42.448222) (xy 142.637 -42.448222)
(xy 142.637 -41.797778) (xy 142.885914 -41.196847) (xy 143.345847 -40.736914) (xy 143.946778 -40.488) (xy 144.597222 -40.488)
(xy 145.198153 -40.736914) (xy 145.658086 -41.196847) (xy 145.907 -41.797778) (xy 145.907 -42.448222) (xy 145.658086 -43.049153)
(xy 145.198153 -43.509086) (xy 144.597222 -43.758) (xy 143.946778 -43.758) (xy 143.345847 -43.509086) (xy 142.885914 -43.049153)
(xy 142.637 -42.448222) (xy 137.4695 -42.448222) (xy 137.4695 -45.948222) (xy 142.637 -45.948222) (xy 142.637 -45.297778)
(xy 142.885914 -44.696847) (xy 143.345847 -44.236914) (xy 143.946778 -43.988) (xy 144.597222 -43.988) (xy 145.198153 -44.236914)
(xy 145.658086 -44.696847) (xy 145.907 -45.297778) (xy 145.907 -45.948222) (xy 145.658086 -46.549153) (xy 145.198153 -47.009086)
(xy 144.597222 -47.258) (xy 143.946778 -47.258) (xy 143.345847 -47.009086) (xy 142.885914 -46.549153) (xy 142.637 -45.948222)
(xy 137.4695 -45.948222) (xy 137.4695 -49.448222) (xy 142.637 -49.448222) (xy 142.637 -48.797778) (xy 142.885914 -48.196847)
(xy 143.345847 -47.736914) (xy 143.946778 -47.488) (xy 144.597222 -47.488) (xy 145.198153 -47.736914) (xy 145.658086 -48.196847)
(xy 145.907 -48.797778) (xy 145.907 -49.448222) (xy 145.658086 -50.049153) (xy 145.198153 -50.509086) (xy 144.597222 -50.758)
(xy 143.946778 -50.758) (xy 143.345847 -50.509086) (xy 142.885914 -50.049153) (xy 142.637 -49.448222) (xy 137.4695 -49.448222)
(xy 137.4695 -53.471789) (xy 137.52622 -53.415069) (xy 137.906626 -53.2575) (xy 138.318374 -53.2575) (xy 138.69878 -53.415069)
(xy 138.816211 -53.5325) (xy 141.276153 -53.5325) (xy 141.351 -53.517612) (xy 141.425847 -53.5325) (xy 141.425852 -53.5325)
(xy 141.647537 -53.576596) (xy 141.898929 -53.744571) (xy 141.941331 -53.80803) (xy 143.422973 -55.289671) (xy 143.486429 -55.332071)
(xy 143.654404 -55.583463) (xy 143.6985 -55.805148) (xy 143.6985 -55.805152) (xy 143.713388 -55.879999) (xy 143.6985 -55.954846)
(xy 143.6985 -59.121199) (xy 143.905515 -59.328213) (xy 143.896 -59.305243) (xy 143.896 -58.296757) (xy 144.28193 -57.365038)
(xy 144.995038 -56.65193) (xy 145.926757 -56.266) (xy 146.935243 -56.266) (xy 147.866962 -56.65193) (xy 148.58007 -57.365038)
(xy 148.592 -57.39384) (xy 148.592 -57.020302) (xy 146.581528 -55.009829) (xy 146.518072 -54.967429) (xy 146.475672 -54.903973)
(xy 146.475671 -54.903972) (xy 146.350097 -54.716037) (xy 146.291112 -54.4195) (xy 146.306001 -54.344648) (xy 146.306 -42.359711)
(xy 146.188569 -42.24228) (xy 146.031 -41.861874) (xy 146.031 -41.450126) (xy 146.188569 -41.06972) (xy 146.47972 -40.778569)
(xy 146.666 -40.701409) (xy 146.666 -40.370626) (xy 146.823569 -39.99022) (xy 147.11472 -39.699069) (xy 147.495126 -39.5415)
(xy 147.906874 -39.5415) (xy 148.28728 -39.699069) (xy 148.578431 -39.99022) (xy 148.736 -40.370626) (xy 148.736 -40.782374)
(xy 148.6515 -40.986375) (xy 148.6515 -42.089152) (xy 148.666388 -42.164) (xy 148.6515 -42.238848) (xy 148.6515 -42.238852)
(xy 148.613302 -42.430888) (xy 148.607404 -42.460538) (xy 148.526471 -42.581662) (xy 148.439429 -42.711929) (xy 148.37597 -42.754331)
(xy 148.334 -42.796301) (xy 148.334 -53.850699) (xy 150.471476 -55.988173) (xy 150.534929 -56.030571) (xy 150.577327 -56.094024)
(xy 150.577329 -56.094026) (xy 150.702903 -56.281962) (xy 150.702904 -56.281963) (xy 150.747 -56.503648) (xy 150.747 -56.503652)
(xy 150.761888 -56.578499) (xy 150.747 -56.653346) (xy 150.747 -82.9755) (xy 151.081874 -82.9755) (xy 151.46228 -83.133069)
(xy 151.753431 -83.42422) (xy 151.911 -83.804626) (xy 151.911 -84.216374) (xy 151.753431 -84.59678) (xy 151.636 -84.714211)
(xy 151.636 -100.255154) (xy 151.650888 -100.330001) (xy 151.636 -100.404848) (xy 151.636 -100.404852) (xy 151.591904 -100.626537)
(xy 151.423929 -100.877929) (xy 151.360473 -100.920329) (xy 147.8895 -104.391301) (xy 147.8895 -149.150154) (xy 147.904388 -149.225001)
(xy 147.8895 -149.299848) (xy 147.8895 -149.299852) (xy 147.845404 -149.521537) (xy 147.677429 -149.772929) (xy 147.613973 -149.815329)
(xy 147.054831 -150.37447) (xy 147.012429 -150.437929) (xy 146.761037 -150.605904) (xy 146.539352 -150.65) (xy 146.539347 -150.65)
(xy 146.4645 -150.664888) (xy 146.389653 -150.65) (xy 146.123317 -150.65) (xy 145.975586 -151.006653) (xy 145.515653 -151.466586)
(xy 144.914722 -151.7155) (xy 144.264278 -151.7155) (xy 143.663347 -151.466586) (xy 143.203414 -151.006653) (xy 142.9545 -150.405722)
(xy 142.9545 -149.755278) (xy 143.203414 -149.154347) (xy 143.663347 -148.694414) (xy 144.264278 -148.4455) (xy 144.914722 -148.4455)
(xy 145.515653 -148.694414) (xy 145.951239 -149.13) (xy 146.149699 -149.13) (xy 146.369501 -148.910197) (xy 146.3695 -107.155302)
(xy 146.319874 -107.204927) (xy 146.3515 -107.281278) (xy 146.3515 -107.931722) (xy 146.102586 -108.532653) (xy 145.642653 -108.992586)
(xy 145.041722 -109.2415) (xy 144.391278 -109.2415) (xy 143.790347 -108.992586) (xy 143.330414 -108.532653) (xy 143.0815 -107.931722)
(xy 143.0815 -107.281278) (xy 143.330414 -106.680347) (xy 143.790347 -106.220414) (xy 144.391278 -105.9715) (xy 145.041722 -105.9715)
(xy 145.297678 -106.07752) (xy 145.671 -105.704198) (xy 145.671 -105.464239) (xy 145.642653 -105.492586) (xy 145.041722 -105.7415)
(xy 144.391278 -105.7415) (xy 143.790347 -105.492586) (xy 143.330414 -105.032653) (xy 143.0815 -104.431722) (xy 143.0815 -103.781278)
(xy 143.330414 -103.180347) (xy 143.790347 -102.720414) (xy 144.391278 -102.4715) (xy 145.041722 -102.4715) (xy 145.297678 -102.577521)
(xy 148.592001 -99.283196) (xy 148.592001 -83.1405) (xy 148.257126 -83.1405) (xy 147.87672 -82.982931) (xy 147.585569 -82.69178)
(xy 147.428 -82.311374) (xy 147.428 -81.899626) (xy 147.585569 -81.51922) (xy 147.625253 -81.479536) (xy 147.624612 -81.476315)
(xy 147.6395 -81.401468) (xy 147.6395 -80.939515) (xy 146.784544 -81.79447) (xy 146.742142 -81.857929) (xy 146.49075 -82.025904)
(xy 146.269065 -82.07) (xy 146.26906 -82.07) (xy 146.194213 -82.084888) (xy 146.177513 -82.081566) (xy 146.166086 -82.109153)
(xy 145.706153 -82.569086) (xy 145.105222 -82.818) (xy 144.454778 -82.818) (xy 143.853847 -82.569086) (xy 143.393914 -82.109153)
(xy 143.145 -81.508222) (xy 143.145 -80.857778) (xy 143.393914 -80.256847) (xy 143.853847 -79.796914) (xy 144.454778 -79.548)
(xy 145.105222 -79.548) (xy 145.706153 -79.796914) (xy 146.166086 -80.256847) (xy 146.167984 -80.261428) (xy 146.8775 -79.551911)
(xy 146.877501 -64.386303) (xy 145.544699 -63.0535) (xy 144.981846 -63.0535) (xy 144.906999 -63.068388) (xy 144.832152 -63.0535)
(xy 144.832148 -63.0535) (xy 144.610463 -63.009404) (xy 144.610461 -63.009403) (xy 144.610462 -63.009403) (xy 144.422526 -62.883829)
(xy 144.422524 -62.883827) (xy 144.359071 -62.841429) (xy 144.316673 -62.777976) (xy 141.88253 -60.343831) (xy 141.819071 -60.301429)
(xy 141.651096 -60.050036) (xy 141.607 -59.828351) (xy 141.607 -59.828347) (xy 141.592112 -59.7535) (xy 141.607 -59.678653)
(xy 141.607001 -56.512303) (xy 140.718699 -55.624) (xy 139.1475 -55.624) (xy 139.1475 -55.641374) (xy 138.989931 -56.02178)
(xy 138.69878 -56.312931) (xy 138.318374 -56.4705) (xy 137.906626 -56.4705) (xy 137.52622 -56.312931) (xy 137.4695 -56.256211)
(xy 137.4695 -62.992) (xy 138.733265 -62.992) (xy 138.821354 -62.549146) (xy 139.072212 -62.173712) (xy 139.447646 -61.922854)
(xy 139.8905 -61.834765) (xy 140.333354 -61.922854) (xy 140.614023 -62.110392) (xy 141.630021 -63.126389) (xy 141.724789 -63.189711)
(xy 141.975646 -63.565145) (xy 142.025132 -63.813931) (xy 142.063735 -64.008) (xy 142.0415 -64.119783) (xy 142.0415 -66.466369)
(xy 143.25756 -67.682429) (xy 143.25756 -66.308) (xy 143.306843 -66.060235) (xy 143.447191 -65.850191) (xy 143.657235 -65.709843)
(xy 143.905 -65.66056) (xy 145.655 -65.66056) (xy 145.902765 -65.709843) (xy 146.112809 -65.850191) (xy 146.253157 -66.060235)
(xy 146.30244 -66.308) (xy 146.30244 -68.058) (xy 146.253157 -68.305765) (xy 146.112809 -68.515809) (xy 145.902765 -68.656157)
(xy 145.655 -68.70544) (xy 144.280572 -68.70544) (xy 144.623132 -69.048) (xy 145.105222 -69.048) (xy 145.706153 -69.296914)
(xy 146.166086 -69.756847) (xy 146.415 -70.357778) (xy 146.415 -71.008222) (xy 146.166086 -71.609153) (xy 145.706153 -72.069086)
(xy 145.105222 -72.318) (xy 144.454778 -72.318) (xy 143.853847 -72.069086) (xy 143.393914 -71.609153) (xy 143.145 -71.008222)
(xy 143.145 -70.780132) (xy 140.18298 -67.818111) (xy 140.088212 -67.754789) (xy 139.962841 -67.567158) (xy 139.837354 -67.379354)
(xy 139.749265 -66.9365) (xy 139.771501 -66.824712) (xy 139.7715 -64.478132) (xy 139.008892 -63.715523) (xy 138.821354 -63.434854)
(xy 138.733265 -62.992) (xy 137.4695 -62.992) (xy 137.4695 -66.607018) (xy 137.667309 -66.739191) (xy 137.807657 -66.949235)
(xy 137.85694 -67.197) (xy 137.85694 -68.947) (xy 137.807657 -69.194765) (xy 137.667309 -69.404809) (xy 137.457265 -69.545157)
(xy 137.2095 -69.59444) (xy 135.4595 -69.59444) (xy 135.211735 -69.545157) (xy 135.001691 -69.404809) (xy 134.861343 -69.194765)
(xy 134.81206 -68.947) (xy 134.094962 -68.947) (xy 133.689846 -69.352116) (xy 133.134858 -69.582) (xy 132.534142 -69.582)
(xy 131.979154 -69.352116) (xy 131.554384 -68.927346) (xy 131.3245 -68.372358) (xy 131.3245 -67.771642) (xy 131.554384 -67.216654)
(xy 131.699501 -67.071537) (xy 131.699501 -56.318846) (xy 131.333374 -56.4705) (xy 130.921626 -56.4705) (xy 130.54122 -56.312931)
(xy 130.250069 -56.02178) (xy 130.0925 -55.641374) (xy 130.0925 -55.624) (xy 126.376346 -55.624) (xy 126.301499 -55.638888)
(xy 126.226652 -55.624) (xy 126.226648 -55.624) (xy 126.004963 -55.579904) (xy 125.753571 -55.411929) (xy 125.711171 -55.348473)
(xy 120.770264 -50.407565) (xy 116.685338 -50.407565) (xy 116.659534 -50.469862) (xy 116.255862 -50.873534) (xy 115.728439 -51.092)
(xy 115.157561 -51.092) (xy 114.630138 -50.873534) (xy 114.226466 -50.469862) (xy 114.008 -49.942439) (xy 114.008 -49.371561)
(xy 114.226466 -48.844138) (xy 114.630138 -48.440466) (xy 114.722927 -48.402031) (xy 114.722928 -45.50323) (xy 113.68853 -44.468831)
(xy 113.625071 -44.426429) (xy 113.457096 -44.175036) (xy 113.413 -43.953351) (xy 113.413 -43.953347) (xy 113.398112 -43.8785)
(xy 109.248566 -43.8785) (xy 109.23824 -43.930409) (xy 108.921077 -44.405077) (xy 108.446409 -44.72224) (xy 108.027833 -44.8055)
(xy 107.745167 -44.8055) (xy 107.326591 -44.72224) (xy 106.851923 -44.405077) (xy 106.619723 -44.057565) (xy 105.101331 -44.057565)
(xy 104.762362 -44.396534) (xy 104.7095 -44.41843) (xy 104.7095 -45.137154) (xy 104.724388 -45.212001) (xy 104.7095 -45.286848)
(xy 104.7095 -45.286852) (xy 104.665404 -45.508537) (xy 104.497429 -45.759929) (xy 104.433973 -45.802329) (xy 103.122 -47.114301)
(xy 103.122 -48.455104) (xy 103.136638 -48.440466) (xy 103.664061 -48.222) (xy 104.234939 -48.222) (xy 104.762362 -48.440466)
(xy 105.166034 -48.844138) (xy 105.184022 -48.887565) (xy 106.611261 -48.887565) (xy 106.788423 -48.622423) (xy 107.263091 -48.30526)
(xy 107.681667 -48.222) (xy 107.964333 -48.222) (xy 108.382909 -48.30526) (xy 108.857577 -48.622423) (xy 109.17474 -49.097091)
(xy 109.286113 -49.657) (xy 109.221688 -49.980887) (xy 112.201802 -52.961) (xy 114.224957 -52.961) (xy 114.408423 -52.686423)
(xy 114.883091 -52.36926) (xy 115.301667 -52.286) (xy 115.584333 -52.286) (xy 116.002909 -52.36926) (xy 116.477577 -52.686423)
(xy 116.79474 -53.161091) (xy 116.906113 -53.721) (xy 116.79474 -54.280909) (xy 116.477577 -54.755577) (xy 116.002909 -55.07274)
(xy 115.584333 -55.156) (xy 115.301667 -55.156) (xy 114.883091 -55.07274) (xy 114.408423 -54.755577) (xy 114.224957 -54.481)
(xy 111.961847 -54.481) (xy 111.887 -54.495888) (xy 111.812153 -54.481) (xy 111.812148 -54.481) (xy 111.590463 -54.436904)
(xy 111.339071 -54.268929) (xy 111.296671 -54.205473) (xy 108.146887 -51.055688) (xy 107.964333 -51.092) (xy 107.681667 -51.092)
(xy 107.263091 -51.00874) (xy 106.788423 -50.691577) (xy 106.598652 -50.407565) (xy 105.191838 -50.407565) (xy 105.166034 -50.469862)
(xy 104.762362 -50.873534) (xy 104.234939 -51.092) (xy 103.664061 -51.092) (xy 103.136638 -50.873534) (xy 103.122 -50.858896)
(xy 103.122 -51.945699) (xy 103.625614 -52.449312) (xy 103.808167 -52.413) (xy 104.090833 -52.413) (xy 104.509409 -52.49626)
(xy 104.834164 -52.713255) (xy 106.994861 -52.713255) (xy 107.068995 -52.467136) (xy 107.606223 -52.274035) (xy 108.176454 -52.301222)
(xy 108.577005 -52.467136) (xy 108.651139 -52.713255) (xy 107.823 -53.541395) (xy 106.994861 -52.713255) (xy 104.834164 -52.713255)
(xy 104.984077 -52.813423) (xy 105.30124 -53.288091) (xy 105.412613 -53.848) (xy 105.394756 -53.937777) (xy 106.376035 -53.937777)
(xy 106.403222 -53.367546) (xy 106.569136 -52.966995) (xy 106.815255 -52.892861) (xy 107.643395 -53.721) (xy 108.002605 -53.721)
(xy 108.830745 -52.892861) (xy 109.076864 -52.966995) (xy 109.269965 -53.504223) (xy 109.242778 -54.074454) (xy 109.076864 -54.475005)
(xy 108.830745 -54.549139) (xy 108.002605 -53.721) (xy 107.643395 -53.721) (xy 106.815255 -54.549139) (xy 106.569136 -54.475005)
(xy 106.376035 -53.937777) (xy 105.394756 -53.937777) (xy 105.30124 -54.407909) (xy 105.086865 -54.728745) (xy 106.994861 -54.728745)
(xy 107.823 -53.900605) (xy 108.651139 -54.728745) (xy 108.577005 -54.974864) (xy 108.039777 -55.167965) (xy 107.469546 -55.140778)
(xy 107.068995 -54.974864) (xy 106.994861 -54.728745) (xy 105.086865 -54.728745) (xy 104.984077 -54.882577) (xy 104.509409 -55.19974)
(xy 104.090833 -55.283) (xy 103.808167 -55.283) (xy 103.389591 -55.19974) (xy 102.914923 -54.882577) (xy 102.59776 -54.407909)
(xy 102.486387 -53.848) (xy 102.550812 -53.524114) (xy 101.877528 -52.850829) (xy 101.814072 -52.808429) (xy 101.771672 -52.744973)
(xy 101.771671 -52.744972) (xy 101.646097 -52.557037) (xy 101.587112 -52.2605) (xy 80.134396 -52.2605) (xy 80.274034 -52.400138)
(xy 80.456336 -52.840255) (xy 95.501361 -52.840255) (xy 95.575495 -52.594136) (xy 96.112723 -52.401035) (xy 96.682954 -52.428222)
(xy 97.083505 -52.594136) (xy 97.157639 -52.840255) (xy 96.3295 -53.668395) (xy 95.501361 -52.840255) (xy 80.456336 -52.840255)
(xy 80.4925 -52.927561) (xy 80.4925 -53.498439) (xy 80.274034 -54.025862) (xy 80.235119 -54.064777) (xy 94.882535 -54.064777)
(xy 94.909722 -53.494546) (xy 95.075636 -53.093995) (xy 95.321755 -53.019861) (xy 96.149895 -53.848) (xy 96.509105 -53.848)
(xy 97.337245 -53.019861) (xy 97.583364 -53.093995) (xy 97.776465 -53.631223) (xy 97.749278 -54.201454) (xy 97.583364 -54.602005)
(xy 97.337245 -54.676139) (xy 96.509105 -53.848) (xy 96.149895 -53.848) (xy 95.321755 -54.676139) (xy 95.075636 -54.602005)
(xy 94.882535 -54.064777) (xy 80.235119 -54.064777) (xy 79.870362 -54.429534) (xy 79.342939 -54.648) (xy 78.772061 -54.648)
(xy 78.244638 -54.429534) (xy 77.840966 -54.025862) (xy 77.6225 -53.498439) (xy 77.1905 -53.498439) (xy 76.972034 -54.025862)
(xy 76.568362 -54.429534) (xy 76.040939 -54.648) (xy 75.470061 -54.648) (xy 74.942638 -54.429534) (xy 74.538966 -54.025862)
(xy 74.3205 -53.498439) (xy 73.09201 -53.498439) (xy 73.09201 -54.046709) (xy 73.382473 -54.337171) (xy 73.445929 -54.379571)
(xy 73.513702 -54.481) (xy 73.613904 -54.630962) (xy 73.628141 -54.702536) (xy 73.658 -54.852648) (xy 73.658 -54.852652)
(xy 73.658615 -54.855745) (xy 95.501361 -54.855745) (xy 96.3295 -54.027605) (xy 97.157639 -54.855745) (xy 97.083505 -55.101864)
(xy 96.546277 -55.294965) (xy 95.976046 -55.267778) (xy 95.575495 -55.101864) (xy 95.501361 -54.855745) (xy 73.658615 -54.855745)
(xy 73.672888 -54.9275) (xy 73.658 -55.002348) (xy 73.658 -55.493789) (xy 73.775431 -55.61122) (xy 73.933 -55.991626)
(xy 73.933 -56.403374) (xy 73.775431 -56.78378) (xy 73.48428 -57.074931) (xy 73.103874 -57.2325) (xy 72.692126 -57.2325)
(xy 72.31172 -57.074931) (xy 72.020569 -56.78378) (xy 71.863 -56.403374) (xy 71.863 -56.28) (xy 71.676126 -56.28)
(xy 71.370435 -56.153379) (xy 71.291534 -56.343862) (xy 70.887862 -56.747534) (xy 70.360439 -56.966) (xy 69.789561 -56.966)
(xy 69.262138 -56.747534) (xy 68.858466 -56.343862) (xy 68.805 -56.214784) (xy 68.751534 -56.343862) (xy 68.347862 -56.747534)
(xy 67.820439 -56.966) (xy 67.249561 -56.966) (xy 66.914556 -56.827236) (xy 66.884329 -56.872474) (xy 66.884327 -56.872476)
(xy 66.841929 -56.935929) (xy 66.778476 -56.978327) (xy 65.53 -58.226801) (xy 65.53 -59.305243) (xy 74.3 -59.305243)
(xy 74.3 -58.296757) (xy 74.68593 -57.365038) (xy 75.399038 -56.65193) (xy 76.330757 -56.266) (xy 77.339243 -56.266)
(xy 78.270962 -56.65193) (xy 78.98407 -57.365038) (xy 79.37 -58.296757) (xy 79.37 -59.305243) (xy 78.98407 -60.236962)
(xy 78.270962 -60.95007) (xy 77.339243 -61.336) (xy 76.330757 -61.336) (xy 75.399038 -60.95007) (xy 74.68593 -60.236962)
(xy 74.3 -59.305243) (xy 65.53 -59.305243) (xy 65.53 -62.790152) (xy 65.544888 -62.865) (xy 65.53 -62.939848)
(xy 65.53 -62.939852) (xy 65.485904 -63.161537) (xy 65.317929 -63.412929) (xy 65.254473 -63.455329) (xy 62.121831 -66.58797)
(xy 62.079429 -66.651429) (xy 61.828037 -66.819404) (xy 61.606352 -66.8635) (xy 61.606347 -66.8635) (xy 61.5315 -66.878388)
(xy 61.456653 -66.8635) (xy 50.375527 -66.8635) (xy 50.5015 -67.167626) (xy 50.5015 -67.579374) (xy 50.343931 -67.95978)
(xy 50.05278 -68.250931) (xy 49.672374 -68.4085) (xy 49.260626 -68.4085) (xy 48.88022 -68.250931) (xy 48.59075 -67.961461)
(xy 48.30128 -68.250931) (xy 47.920874 -68.4085) (xy 47.509126 -68.4085) (xy 47.12872 -68.250931) (xy 46.99 -68.112211)
(xy 46.85128 -68.250931) (xy 46.470874 -68.4085) (xy 46.059126 -68.4085) (xy 45.67872 -68.250931) (xy 45.57175 -68.143961)
(xy 45.40128 -68.314431) (xy 45.020874 -68.472) (xy 44.609126 -68.472) (xy 44.22872 -68.314431) (xy 43.937569 -68.02328)
(xy 43.78 -67.642874) (xy 43.78 -67.574871) (xy 43.729231 -67.553842) (xy 43.55107 -67.983962) (xy 42.974724 -68.560308)
(xy 64.932 -68.560308) (xy 64.932 -67.392692) (xy 65.378827 -66.313956) (xy 66.204456 -65.488327) (xy 67.283192 -65.0415)
(xy 68.450808 -65.0415) (xy 69.529544 -65.488327) (xy 70.355173 -66.313956) (xy 70.397955 -66.417243) (xy 71.633 -66.417243)
(xy 71.633 -65.408757) (xy 72.01893 -64.477038) (xy 72.732038 -63.76393) (xy 73.663757 -63.378) (xy 74.672243 -63.378)
(xy 75.603962 -63.76393) (xy 76.31707 -64.477038) (xy 76.703 -65.408757) (xy 76.703 -66.417243) (xy 76.31707 -67.348962)
(xy 75.603962 -68.06207) (xy 74.672243 -68.448) (xy 73.663757 -68.448) (xy 72.732038 -68.06207) (xy 72.01893 -67.348962)
(xy 71.633 -66.417243) (xy 70.397955 -66.417243) (xy 70.802 -67.392692) (xy 70.802 -68.560308) (xy 70.42584 -69.468439)
(xy 79.493 -69.468439) (xy 79.493 -68.897561) (xy 79.711466 -68.370138) (xy 80.115138 -67.966466) (xy 80.642561 -67.748)
(xy 81.213439 -67.748) (xy 81.740862 -67.966466) (xy 82.144534 -68.370138) (xy 82.198 -68.499216) (xy 82.251466 -68.370138)
(xy 82.655138 -67.966466) (xy 83.182561 -67.748) (xy 83.753439 -67.748) (xy 84.280862 -67.966466) (xy 84.684534 -68.370138)
(xy 84.738 -68.499216) (xy 84.791466 -68.370138) (xy 85.195138 -67.966466) (xy 85.722561 -67.748) (xy 86.293439 -67.748)
(xy 86.820862 -67.966466) (xy 87.224534 -68.370138) (xy 87.278 -68.499216) (xy 87.331466 -68.370138) (xy 87.735138 -67.966466)
(xy 87.794982 -67.941678) (xy 87.832096 -67.755094) (xy 88.000071 -67.503701) (xy 88.06353 -67.461299) (xy 88.064299 -67.46053)
(xy 88.106701 -67.397071) (xy 88.358093 -67.229096) (xy 88.579778 -67.185) (xy 88.579782 -67.185) (xy 88.65463 -67.170112)
(xy 88.729478 -67.185) (xy 89.791001 -67.185) (xy 89.791 -65.162347) (xy 89.776112 -65.0875) (xy 89.784964 -65.043)
(xy 89.710126 -65.043) (xy 89.32972 -64.885431) (xy 89.038569 -64.59428) (xy 88.881 -64.213874) (xy 88.881 -64.047802)
(xy 87.309699 -62.4765) (xy 87.106626 -62.4765) (xy 86.72622 -62.318931) (xy 86.435069 -62.02778) (xy 86.2775 -61.647374)
(xy 86.2775 -61.235626) (xy 86.435069 -60.85522) (xy 86.72622 -60.564069) (xy 87.106626 -60.4065) (xy 87.518374 -60.4065)
(xy 87.89878 -60.564069) (xy 88.189931 -60.85522) (xy 88.3475 -61.235626) (xy 88.3475 -61.364699) (xy 89.918 -62.935199)
(xy 89.918001 -60.891882) (xy 89.90122 -60.884931) (xy 89.610069 -60.59378) (xy 89.4525 -60.213374) (xy 89.4525 -59.801626)
(xy 89.610069 -59.42122) (xy 89.90122 -59.130069) (xy 90.2145 -59.000304) (xy 90.2145 -58.722126) (xy 90.372069 -58.34172)
(xy 90.66322 -58.050569) (xy 91.043626 -57.893) (xy 91.455374 -57.893) (xy 91.83578 -58.050569) (xy 92.126931 -58.34172)
(xy 92.2845 -58.722126) (xy 92.2845 -59.133874) (xy 92.126931 -59.51428) (xy 92.0095 -59.631711) (xy 92.0095 -64.949154)
(xy 92.024388 -65.024001) (xy 92.0095 -65.098848) (xy 92.0095 -65.098852) (xy 91.965404 -65.320537) (xy 91.848 -65.496244)
(xy 91.848 -67.94457) (xy 91.900862 -67.966466) (xy 92.304534 -68.370138) (xy 92.358 -68.499216) (xy 92.411466 -68.370138)
(xy 92.815138 -67.966466) (xy 92.944216 -67.913) (xy 92.815138 -67.859534) (xy 92.411466 -67.455862) (xy 92.193 -66.928439)
(xy 92.193 -66.357561) (xy 92.411466 -65.830138) (xy 92.815138 -65.426466) (xy 92.966957 -65.36358) (xy 92.88572 -65.329931)
(xy 92.594569 -65.03878) (xy 92.437 -64.658374) (xy 92.437 -64.246626) (xy 92.594569 -63.86622) (xy 92.88572 -63.575069)
(xy 93.266126 -63.4175) (xy 93.677874 -63.4175) (xy 94.05828 -63.575069) (xy 94.175711 -63.6925) (xy 95.181289 -63.6925)
(xy 95.29872 -63.575069) (xy 95.679126 -63.4175) (xy 96.090874 -63.4175) (xy 96.47128 -63.575069) (xy 96.762431 -63.86622)
(xy 96.92 -64.246626) (xy 96.92 -64.658374) (xy 96.762431 -65.03878) (xy 96.552273 -65.248938) (xy 96.980862 -65.426466)
(xy 97.384534 -65.830138) (xy 97.438 -65.959216) (xy 97.491466 -65.830138) (xy 97.895138 -65.426466) (xy 98.173001 -65.311371)
(xy 98.173 -63.822711) (xy 98.055569 -63.70528) (xy 97.898 -63.324874) (xy 97.898 -62.913126) (xy 98.055569 -62.53272)
(xy 98.34672 -62.241569) (xy 98.727126 -62.084) (xy 99.138874 -62.084) (xy 99.51928 -62.241569) (xy 99.810431 -62.53272)
(xy 99.968 -62.913126) (xy 99.968 -63.324874) (xy 99.810431 -63.70528) (xy 99.693 -63.822711) (xy 99.693 -65.598604)
(xy 99.924534 -65.830138) (xy 99.978 -65.959216) (xy 100.031466 -65.830138) (xy 100.435138 -65.426466) (xy 100.962561 -65.208)
(xy 101.533439 -65.208) (xy 102.060862 -65.426466) (xy 102.464534 -65.830138) (xy 102.518 -65.959216) (xy 102.571466 -65.830138)
(xy 102.975138 -65.426466) (xy 103.502561 -65.208) (xy 104.073439 -65.208) (xy 104.600862 -65.426466) (xy 105.004534 -65.830138)
(xy 105.087001 -66.02923) (xy 105.167569 -65.83472) (xy 105.285 -65.717289) (xy 105.285001 -64.717852) (xy 105.270112 -64.643)
(xy 105.285001 -64.568148) (xy 105.313271 -64.426027) (xy 105.329097 -64.346463) (xy 105.454643 -64.158571) (xy 105.497072 -64.095071)
(xy 105.560528 -64.052671) (xy 106.66117 -62.952028) (xy 106.703571 -62.888571) (xy 106.767027 -62.846171) (xy 106.954962 -62.720596)
(xy 107.003105 -62.71102) (xy 107.176648 -62.6765) (xy 107.176652 -62.6765) (xy 107.2515 -62.661612) (xy 107.326348 -62.6765)
(xy 107.762199 -62.6765) (xy 109.21255 -61.226148) (xy 108.546038 -60.95007) (xy 107.83293 -60.236962) (xy 107.447 -59.305243)
(xy 107.447 -58.296757) (xy 107.83293 -57.365038) (xy 108.546038 -56.65193) (xy 109.477757 -56.266) (xy 110.486243 -56.266)
(xy 111.417962 -56.65193) (xy 112.13107 -57.365038) (xy 112.517 -58.296757) (xy 112.517 -59.305243) (xy 112.13107 -60.236962)
(xy 111.787032 -60.581) (xy 112.397699 -60.581) (xy 112.656671 -60.322028) (xy 112.699071 -60.258571) (xy 112.950463 -60.090596)
(xy 113.172148 -60.0465) (xy 113.172152 -60.0465) (xy 113.246999 -60.031612) (xy 113.321846 -60.0465) (xy 114.167789 -60.0465)
(xy 114.28522 -59.929069) (xy 114.665626 -59.7715) (xy 115.077374 -59.7715) (xy 115.45778 -59.929069) (xy 115.748931 -60.22022)
(xy 115.9065 -60.600626) (xy 115.9065 -61.012374) (xy 115.748931 -61.39278) (xy 115.45778 -61.683931) (xy 115.422681 -61.69847)
(xy 115.621931 -61.89772) (xy 115.7795 -62.278126) (xy 115.7795 -62.689874) (xy 115.621931 -63.07028) (xy 115.33078 -63.361431)
(xy 114.950374 -63.519) (xy 114.538626 -63.519) (xy 114.15822 -63.361431) (xy 114.040789 -63.244) (xy 110.995302 -63.244)
(xy 110.861302 -63.378) (xy 111.121243 -63.378) (xy 112.052962 -63.76393) (xy 112.76607 -64.477038) (xy 113.152 -65.408757)
(xy 113.152 -66.417243) (xy 112.76607 -67.348962) (xy 112.052962 -68.06207) (xy 111.121243 -68.448) (xy 110.112757 -68.448)
(xy 109.181038 -68.06207) (xy 108.46793 -67.348962) (xy 108.082 -66.417243) (xy 108.082 -66.064871) (xy 107.897852 -66.1015)
(xy 107.897847 -66.1015) (xy 107.823 -66.116388) (xy 107.748153 -66.1015) (xy 107.574211 -66.1015) (xy 107.45678 -66.218931)
(xy 107.08 -66.374998) (xy 107.08 -66.626874) (xy 106.922431 -67.00728) (xy 106.63128 -67.298431) (xy 106.250874 -67.456)
(xy 105.839126 -67.456) (xy 105.45872 -67.298431) (xy 105.183673 -67.023384) (xy 105.004534 -67.455862) (xy 104.600862 -67.859534)
(xy 104.471784 -67.913) (xy 104.600862 -67.966466) (xy 105.004534 -68.370138) (xy 105.223 -68.897561) (xy 105.223 -69.468439)
(xy 105.004534 -69.995862) (xy 104.600862 -70.399534) (xy 104.471784 -70.453) (xy 104.600862 -70.506466) (xy 105.004534 -70.910138)
(xy 105.223 -71.437561) (xy 105.223 -72.008439) (xy 105.004534 -72.535862) (xy 104.600862 -72.939534) (xy 104.073439 -73.158)
(xy 103.502561 -73.158) (xy 102.975138 -72.939534) (xy 102.571466 -72.535862) (xy 102.518 -72.406784) (xy 102.464534 -72.535862)
(xy 102.060862 -72.939534) (xy 101.533439 -73.158) (xy 100.962561 -73.158) (xy 100.435138 -72.939534) (xy 100.031466 -72.535862)
(xy 99.978 -72.406784) (xy 99.924534 -72.535862) (xy 99.520862 -72.939534) (xy 98.993439 -73.158) (xy 98.422561 -73.158)
(xy 97.895138 -72.939534) (xy 97.491466 -72.535862) (xy 97.438 -72.406784) (xy 97.384534 -72.535862) (xy 96.980862 -72.939534)
(xy 96.453439 -73.158) (xy 95.882561 -73.158) (xy 95.355138 -72.939534) (xy 94.951466 -72.535862) (xy 94.898 -72.406784)
(xy 94.844534 -72.535862) (xy 94.440862 -72.939534) (xy 93.913439 -73.158) (xy 93.342561 -73.158) (xy 92.815138 -72.939534)
(xy 92.411466 -72.535862) (xy 92.358 -72.406784) (xy 92.304534 -72.535862) (xy 91.900862 -72.939534) (xy 91.373439 -73.158)
(xy 90.802561 -73.158) (xy 90.275138 -72.939534) (xy 89.871466 -72.535862) (xy 89.818 -72.406784) (xy 89.764534 -72.535862)
(xy 89.360862 -72.939534) (xy 88.833439 -73.158) (xy 88.262561 -73.158) (xy 87.735138 -72.939534) (xy 87.331466 -72.535862)
(xy 87.278 -72.406784) (xy 87.224534 -72.535862) (xy 86.820862 -72.939534) (xy 86.293439 -73.158) (xy 85.722561 -73.158)
(xy 85.195138 -72.939534) (xy 84.791466 -72.535862) (xy 84.738 -72.406784) (xy 84.684534 -72.535862) (xy 84.280862 -72.939534)
(xy 83.753439 -73.158) (xy 83.182561 -73.158) (xy 82.655138 -72.939534) (xy 82.251466 -72.535862) (xy 82.204475 -72.422417)
(xy 82.181864 -72.477005) (xy 81.935745 -72.551139) (xy 81.107605 -71.723) (xy 81.935745 -70.894861) (xy 82.181864 -70.968995)
(xy 82.202874 -71.027448) (xy 82.251466 -70.910138) (xy 82.655138 -70.506466) (xy 82.784216 -70.453) (xy 82.655138 -70.399534)
(xy 82.251466 -69.995862) (xy 82.198 -69.866784) (xy 82.144534 -69.995862) (xy 81.740862 -70.399534) (xy 81.627417 -70.446525)
(xy 81.682005 -70.469136) (xy 81.756139 -70.715255) (xy 80.928 -71.543395) (xy 80.099861 -70.715255) (xy 80.173995 -70.469136)
(xy 80.232448 -70.448126) (xy 80.115138 -70.399534) (xy 79.711466 -69.995862) (xy 79.493 -69.468439) (xy 70.42584 -69.468439)
(xy 70.355173 -69.639044) (xy 69.529544 -70.464673) (xy 68.450808 -70.9115) (xy 67.283192 -70.9115) (xy 66.204456 -70.464673)
(xy 65.378827 -69.639044) (xy 64.932 -68.560308) (xy 42.974724 -68.560308) (xy 42.837962 -68.69707) (xy 41.906243 -69.083)
(xy 40.897757 -69.083) (xy 39.966038 -68.69707) (xy 39.25293 -67.983962) (xy 38.867 -67.052243) (xy 35.779189 -67.052243)
(xy 35.3695 -67.133735) (xy 34.926645 -67.045646) (xy 34.551211 -66.794789) (xy 34.300354 -66.419354) (xy 34.2345 -66.088282)
(xy 34.2345 -58.074684) (xy 34.210616 -58.132346) (xy 33.785846 -58.557116) (xy 33.230858 -58.787) (xy 32.630142 -58.787)
(xy 32.075154 -58.557116) (xy 31.650384 -58.132346) (xy 31.4205 -57.577358) (xy 31.4205 -56.976642) (xy 31.650384 -56.421654)
(xy 31.710671 -56.361367) (xy 28.554305 -53.205) (xy 14.186131 -53.205) (xy 14.170131 -53.221) (xy 26.781783 -53.221)
(xy 27.112855 -53.286854) (xy 27.488289 -53.537711) (xy 27.551613 -53.632482) (xy 29.50061 -55.581477) (xy 29.624572 -55.767)
(xy 29.730858 -55.767) (xy 30.285846 -55.996884) (xy 30.710616 -56.421654) (xy 30.9405 -56.976642) (xy 30.9405 -57.577358)
(xy 30.710616 -58.132346) (xy 30.285846 -58.557116) (xy 29.730858 -58.787) (xy 29.130142 -58.787) (xy 28.575154 -58.557116)
(xy 28.150384 -58.132346) (xy 27.9205 -57.577358) (xy 27.9205 -57.308631) (xy 27.737393 -57.125524) (xy 27.549855 -56.844855)
(xy 27.548895 -56.840027) (xy 27.280671 -56.571803) (xy 27.45209 -57.042306) (xy 27.426079 -57.642458) (xy 27.246453 -58.076116)
(xy 26.99256 -58.159455) (xy 26.110105 -57.277) (xy 26.124248 -57.262858) (xy 25.944643 -57.083253) (xy 25.9305 -57.097395)
(xy 25.048045 -56.21494) (xy 25.131384 -55.961047) (xy 25.695806 -55.75541) (xy 26.295958 -55.781421) (xy 26.627701 -55.918833)
(xy 26.199869 -55.491) (xy 14.216 -55.491) (xy 14.216 -55.865139) (xy 14.307735 -55.803843) (xy 14.5555 -55.75456)
(xy 16.3055 -55.75456) (xy 16.553265 -55.803843) (xy 16.763309 -55.944191) (xy 16.903657 -56.154235) (xy 16.95294 -56.402)
(xy 16.95294 -57.577358) (xy 17.4205 -57.577358) (xy 17.4205 -56.976642) (xy 17.650384 -56.421654) (xy 18.075154 -55.996884)
(xy 18.630142 -55.767) (xy 19.230858 -55.767) (xy 19.785846 -55.996884) (xy 20.210616 -56.421654) (xy 20.4405 -56.976642)
(xy 20.4405 -57.577358) (xy 20.9205 -57.577358) (xy 20.9205 -56.976642) (xy 21.150384 -56.421654) (xy 21.575154 -55.996884)
(xy 22.130142 -55.767) (xy 22.730858 -55.767) (xy 23.285846 -55.996884) (xy 23.710616 -56.421654) (xy 23.9405 -56.976642)
(xy 23.9405 -57.511694) (xy 24.40891 -57.511694) (xy 24.434921 -56.911542) (xy 24.614547 -56.477884) (xy 24.86844 -56.394545)
(xy 25.750895 -57.277) (xy 24.86844 -58.159455) (xy 24.614547 -58.076116) (xy 24.40891 -57.511694) (xy 23.9405 -57.511694)
(xy 23.9405 -57.577358) (xy 23.710616 -58.132346) (xy 23.503902 -58.33906) (xy 25.048045 -58.33906) (xy 25.9305 -57.456605)
(xy 26.812955 -58.33906) (xy 26.729616 -58.592953) (xy 26.165194 -58.79859) (xy 25.565042 -58.772579) (xy 25.131384 -58.592953)
(xy 25.048045 -58.33906) (xy 23.503902 -58.33906) (xy 23.285846 -58.557116) (xy 22.730858 -58.787) (xy 22.130142 -58.787)
(xy 21.575154 -58.557116) (xy 21.150384 -58.132346) (xy 20.9205 -57.577358) (xy 20.4405 -57.577358) (xy 20.212498 -58.127803)
(xy 23.964522 -61.879826) (xy 24.059289 -61.943147) (xy 24.310146 -62.318581) (xy 24.329518 -62.415971) (xy 24.398235 -62.761436)
(xy 24.376 -62.873219) (xy 24.376 -69.928719) (xy 24.398235 -70.040501) (xy 24.349004 -70.288) (xy 24.310146 -70.483355)
(xy 24.059289 -70.858789) (xy 23.964521 -70.922111) (xy 22.946855 -71.939777) (xy 79.481035 -71.939777) (xy 79.508222 -71.369546)
(xy 79.674136 -70.968995) (xy 79.920255 -70.894861) (xy 80.748395 -71.723) (xy 79.920255 -72.551139) (xy 79.674136 -72.477005)
(xy 79.481035 -71.939777) (xy 22.946855 -71.939777) (xy 22.155887 -72.730745) (xy 80.099861 -72.730745) (xy 80.928 -71.902605)
(xy 81.756139 -72.730745) (xy 81.682005 -72.976864) (xy 81.144777 -73.169965) (xy 80.574546 -73.142778) (xy 80.173995 -72.976864)
(xy 80.099861 -72.730745) (xy 22.155887 -72.730745) (xy 19.931 -74.955631) (xy 19.931 -85.328783) (xy 19.865146 -85.659855)
(xy 19.614289 -86.035289) (xy 19.238855 -86.286146) (xy 18.796 -86.374235) (xy 18.353146 -86.286146) (xy 17.977712 -86.035289)
(xy 17.726855 -85.659855) (xy 17.661001 -85.328783) (xy 17.661 -74.597283) (xy 17.638765 -74.4855) (xy 17.678092 -74.287789)
(xy 17.726854 -74.042646) (xy 17.977711 -73.667211) (xy 18.072482 -73.603887) (xy 22.106001 -69.570367) (xy 22.106 -63.231568)
(xy 18.27048 -59.396047) (xy 18.175712 -59.332725) (xy 17.924854 -58.957291) (xy 17.89633 -58.813888) (xy 17.836765 -58.514436)
(xy 17.859 -58.402653) (xy 17.859 -58.340962) (xy 17.650384 -58.132346) (xy 17.4205 -57.577358) (xy 16.95294 -57.577358)
(xy 16.95294 -58.152) (xy 16.903657 -58.399765) (xy 16.763309 -58.609809) (xy 16.629 -58.699552) (xy 16.629 -66.063783)
(xy 17.204456 -65.488327) (xy 18.283192 -65.0415) (xy 19.450808 -65.0415) (xy 20.529544 -65.488327) (xy 21.355173 -66.313956)
(xy 21.802 -67.392692) (xy 21.802 -68.560308) (xy 21.355173 -69.639044) (xy 20.529544 -70.464673) (xy 19.450808 -70.9115)
(xy 18.283192 -70.9115) (xy 17.204456 -70.464673) (xy 16.629 -69.889217) (xy 16.629 -89.080869) (xy 20.8995 -84.810368)
(xy 20.8995 -83.741283) (xy 20.877265 -83.6295) (xy 20.8995 -83.517717) (xy 20.965354 -83.186645) (xy 21.216212 -82.811211)
(xy 21.31098 -82.747889) (xy 27.2495 -76.809368) (xy 27.2495 -76.088217) (xy 27.315354 -75.757145) (xy 27.566212 -75.381711)
(xy 27.941646 -75.130854) (xy 28.3845 -75.042765) (xy 28.827355 -75.130854) (xy 29.202789 -75.381711) (xy 29.4005 -75.677607)
(xy 29.598211 -75.381711) (xy 29.973645 -75.130854) (xy 30.4165 -75.042765) (xy 30.859354 -75.130854) (xy 31.234789 -75.381711)
(xy 31.485646 -75.757145) (xy 31.5515 -76.088217) (xy 31.5515 -77.953459) (xy 31.573735 -78.065241) (xy 31.524154 -78.3145)
(xy 31.485646 -78.508095) (xy 31.277991 -78.818874) (xy 32.493 -78.818874) (xy 32.493 -78.407126) (xy 32.650569 -78.02672)
(xy 32.94172 -77.735569) (xy 33.322126 -77.578) (xy 33.733874 -77.578) (xy 33.815345 -77.611746) (xy 33.763 -77.485374)
(xy 33.763 -77.073626) (xy 33.920569 -76.69322) (xy 34.21172 -76.402069) (xy 34.592126 -76.2445) (xy 35.003874 -76.2445)
(xy 35.38428 -76.402069) (xy 35.501711 -76.5195) (xy 38.856789 -76.5195) (xy 38.97422 -76.402069) (xy 39.354626 -76.2445)
(xy 39.766374 -76.2445) (xy 40.14678 -76.402069) (xy 40.437931 -76.69322) (xy 40.5955 -77.073626) (xy 40.5955 -77.485374)
(xy 40.437931 -77.86578) (xy 40.14678 -78.156931) (xy 39.766374 -78.3145) (xy 39.414133 -78.3145) (xy 39.4525 -78.407126)
(xy 39.4525 -78.818874) (xy 39.294931 -79.19928) (xy 39.00378 -79.490431) (xy 38.623374 -79.648) (xy 38.211626 -79.648)
(xy 37.83122 -79.490431) (xy 37.713789 -79.373) (xy 34.231711 -79.373) (xy 34.11428 -79.490431) (xy 33.733874 -79.648)
(xy 33.322126 -79.648) (xy 32.94172 -79.490431) (xy 32.650569 -79.19928) (xy 32.493 -78.818874) (xy 31.277991 -78.818874)
(xy 31.234789 -78.883529) (xy 31.140021 -78.946851) (xy 25.0745 -85.012371) (xy 25.0745 -86.819717) (xy 25.096735 -86.9315)
(xy 25.008646 -87.374355) (xy 24.757789 -87.749789) (xy 24.663022 -87.81311) (xy 22.713906 -89.762226) (xy 23.025923 -89.891459)
(xy 23.440889 -90.267366) (xy 23.680414 -90.773459) (xy 23.559129 -90.9955) (xy 22.4155 -90.9955) (xy 22.4155 -90.9755)
(xy 22.1615 -90.9755) (xy 22.1615 -90.9955) (xy 22.1415 -90.9955) (xy 22.1415 -91.2495) (xy 22.1615 -91.2495)
(xy 22.1615 -92.392415) (xy 22.4155 -92.392415) (xy 22.4155 -91.2495) (xy 23.559129 -91.2495) (xy 23.680414 -91.471541)
(xy 23.440889 -91.977634) (xy 23.025923 -92.353541) (xy 22.637539 -92.514404) (xy 22.4155 -92.392415) (xy 22.1615 -92.392415)
(xy 21.939461 -92.514404) (xy 21.551077 -92.353541) (xy 21.136111 -91.977634) (xy 20.931282 -91.54485) (xy 16.329131 -96.147)
(xy 18.907783 -96.147) (xy 19.238855 -96.212854) (xy 19.614289 -96.463711) (xy 19.865146 -96.839145) (xy 19.953235 -97.282)
(xy 19.865146 -97.724855) (xy 19.614289 -98.100289) (xy 19.238855 -98.351146) (xy 18.907783 -98.417) (xy 16.429412 -98.417)
(xy 16.563146 -98.617146) (xy 16.644857 -99.027939) (xy 20.8535 -99.027939) (xy 20.8535 -98.457061) (xy 21.071966 -97.929638)
(xy 21.475638 -97.525966) (xy 22.003061 -97.3075) (xy 22.573939 -97.3075) (xy 23.101362 -97.525966) (xy 23.38077 -97.805374)
(xy 24.275 -97.805374) (xy 24.275 -97.393626) (xy 24.432569 -97.01322) (xy 24.550001 -96.895788) (xy 24.550001 -96.303851)
(xy 24.535112 -96.229) (xy 24.594097 -95.932463) (xy 24.692476 -95.785229) (xy 24.762072 -95.681071) (xy 24.825528 -95.638671)
(xy 25.402 -95.062198) (xy 25.402001 -86.053852) (xy 25.387112 -85.979) (xy 25.446097 -85.682463) (xy 25.571643 -85.494571)
(xy 25.614072 -85.431071) (xy 25.677528 -85.388671) (xy 29.000673 -82.065524) (xy 29.043071 -82.002071) (xy 29.106524 -81.959673)
(xy 29.106526 -81.959671) (xy 29.231902 -81.875898) (xy 29.294463 -81.834096) (xy 29.516148 -81.79) (xy 29.516152 -81.79)
(xy 29.590999 -81.775112) (xy 29.665846 -81.79) (xy 31.244699 -81.79) (xy 32.1755 -80.859198) (xy 32.1755 -80.693126)
(xy 32.333069 -80.31272) (xy 32.62422 -80.021569) (xy 33.004626 -79.864) (xy 33.416374 -79.864) (xy 33.79678 -80.021569)
(xy 33.840847 -80.065636) (xy 33.89937 -80.007113) (xy 34.279776 -79.849544) (xy 34.691524 -79.849544) (xy 34.967806 -79.963983)
(xy 34.97372 -79.958069) (xy 35.354126 -79.8005) (xy 35.765874 -79.8005) (xy 36.070383 -79.926632) (xy 36.075349 -79.921666)
(xy 36.455755 -79.764097) (xy 36.867503 -79.764097) (xy 37.2371 -79.917189) (xy 37.25972 -79.894569) (xy 37.640126 -79.737)
(xy 38.051874 -79.737) (xy 38.43228 -79.894569) (xy 38.44925 -79.911539) (xy 38.46622 -79.894569) (xy 38.846626 -79.737)
(xy 39.258374 -79.737) (xy 39.63878 -79.894569) (xy 39.929931 -80.18572) (xy 40.0875 -80.566126) (xy 40.0875 -80.977874)
(xy 39.929931 -81.35828) (xy 39.63878 -81.649431) (xy 39.258374 -81.807) (xy 39.219302 -81.807) (xy 35.451831 -85.57447)
(xy 35.409429 -85.637929) (xy 35.158037 -85.805904) (xy 34.936352 -85.85) (xy 34.936347 -85.85) (xy 34.8615 -85.864888)
(xy 34.786653 -85.85) (xy 30.921802 -85.85) (xy 29.462 -87.309801) (xy 29.462 -94.814014) (xy 30.075473 -95.427486)
(xy 30.138929 -95.469886) (xy 30.306904 -95.721278) (xy 30.335314 -95.864103) (xy 30.468431 -95.99722) (xy 30.626 -96.377626)
(xy 30.626 -96.789374) (xy 30.468431 -97.16978) (xy 30.17728 -97.460931) (xy 29.796874 -97.6185) (xy 29.761998 -97.6185)
(xy 29.730544 -97.694439) (xy 108.547 -97.694439) (xy 108.547 -97.123561) (xy 108.765466 -96.596138) (xy 109.169138 -96.192466)
(xy 109.696561 -95.974) (xy 110.267439 -95.974) (xy 110.794862 -96.192466) (xy 111.198534 -96.596138) (xy 111.417 -97.123561)
(xy 111.417 -97.694439) (xy 111.198534 -98.221862) (xy 110.794862 -98.625534) (xy 110.267439 -98.844) (xy 109.696561 -98.844)
(xy 109.169138 -98.625534) (xy 108.765466 -98.221862) (xy 108.547 -97.694439) (xy 29.730544 -97.694439) (xy 29.605931 -97.99528)
(xy 29.31478 -98.286431) (xy 28.934374 -98.444) (xy 28.522626 -98.444) (xy 28.14222 -98.286431) (xy 27.9215 -98.065711)
(xy 27.76428 -98.222931) (xy 27.383874 -98.3805) (xy 26.972126 -98.3805) (xy 26.59172 -98.222931) (xy 26.300569 -97.93178)
(xy 26.296605 -97.92221) (xy 26.187431 -98.18578) (xy 25.89628 -98.476931) (xy 25.515874 -98.6345) (xy 25.104126 -98.6345)
(xy 24.72372 -98.476931) (xy 24.432569 -98.18578) (xy 24.275 -97.805374) (xy 23.38077 -97.805374) (xy 23.505034 -97.929638)
(xy 23.7235 -98.457061) (xy 23.7235 -99.027939) (xy 23.505034 -99.555362) (xy 23.101362 -99.959034) (xy 22.573939 -100.1775)
(xy 22.003061 -100.1775) (xy 21.475638 -99.959034) (xy 21.071966 -99.555362) (xy 20.8535 -99.027939) (xy 16.644857 -99.027939)
(xy 16.651235 -99.060001) (xy 16.563146 -99.502854) (xy 16.375608 -99.783523) (xy 15.975614 -100.183517) (xy 15.91229 -100.278288)
(xy 15.536856 -100.529145) (xy 15.205784 -100.594999) (xy 15.094001 -100.617234) (xy 14.982218 -100.594999) (xy 11.881133 -100.594999)
(xy 10.787 -101.689131) (xy 10.787 -102.248604) (xy 10.969138 -102.066466) (xy 11.496561 -101.848) (xy 12.067439 -101.848)
(xy 12.594862 -102.066466) (xy 12.998534 -102.470138) (xy 13.052 -102.599216) (xy 13.105466 -102.470138) (xy 13.509138 -102.066466)
(xy 14.036561 -101.848) (xy 14.607439 -101.848) (xy 15.134862 -102.066466) (xy 15.538534 -102.470138) (xy 15.592 -102.599216)
(xy 15.645466 -102.470138) (xy 16.049138 -102.066466) (xy 16.576561 -101.848) (xy 17.147439 -101.848) (xy 17.674862 -102.066466)
(xy 18.078534 -102.470138) (xy 18.132 -102.599216) (xy 18.185466 -102.470138) (xy 18.589138 -102.066466) (xy 19.116561 -101.848)
(xy 19.687439 -101.848) (xy 20.214862 -102.066466) (xy 20.618534 -102.470138) (xy 20.672 -102.599216) (xy 20.725466 -102.470138)
(xy 21.129138 -102.066466) (xy 21.656561 -101.848) (xy 22.227439 -101.848) (xy 22.754862 -102.066466) (xy 23.158534 -102.470138)
(xy 23.212 -102.599216) (xy 23.265466 -102.470138) (xy 23.669138 -102.066466) (xy 24.196561 -101.848) (xy 24.767439 -101.848)
(xy 25.294862 -102.066466) (xy 25.698534 -102.470138) (xy 25.752 -102.599216) (xy 25.805466 -102.470138) (xy 26.209138 -102.066466)
(xy 26.736561 -101.848) (xy 27.307439 -101.848) (xy 27.834862 -102.066466) (xy 28.238534 -102.470138) (xy 28.292 -102.599216)
(xy 28.345466 -102.470138) (xy 28.749138 -102.066466) (xy 29.276561 -101.848) (xy 29.847439 -101.848) (xy 30.374862 -102.066466)
(xy 30.778534 -102.470138) (xy 30.832 -102.599216) (xy 30.885466 -102.470138) (xy 31.289138 -102.066466) (xy 31.816561 -101.848)
(xy 32.387439 -101.848) (xy 32.914862 -102.066466) (xy 33.318534 -102.470138) (xy 33.365525 -102.583583) (xy 33.388136 -102.528995)
(xy 33.634255 -102.454861) (xy 34.462395 -103.283) (xy 33.634255 -104.111139) (xy 33.388136 -104.037005) (xy 33.367126 -103.978552)
(xy 33.318534 -104.095862) (xy 32.914862 -104.499534) (xy 32.785784 -104.553) (xy 32.914862 -104.606466) (xy 33.318534 -105.010138)
(xy 33.372 -105.139216) (xy 33.425466 -105.010138) (xy 33.829138 -104.606466) (xy 33.942583 -104.559475) (xy 33.887995 -104.536864)
(xy 33.813861 -104.290745) (xy 34.642 -103.462605) (xy 34.656142 -103.476748) (xy 34.835748 -103.297143) (xy 34.821605 -103.283)
(xy 34.835748 -103.268858) (xy 34.656142 -103.089252) (xy 34.642 -103.103395) (xy 33.813861 -102.275255) (xy 33.887995 -102.029136)
(xy 34.425223 -101.836035) (xy 34.995454 -101.863222) (xy 35.308 -101.992683) (xy 35.308 -101.724302) (xy 35.245198 -101.6615)
(xy 33.596711 -101.6615) (xy 33.47928 -101.778931) (xy 33.098874 -101.9365) (xy 32.687126 -101.9365) (xy 32.30672 -101.778931)
(xy 32.015569 -101.48778) (xy 31.858 -101.107374) (xy 31.858 -100.695626) (xy 31.941702 -100.493552) (xy 31.938873 -100.490723)
(xy 31.781304 -100.110317) (xy 31.781304 -99.698569) (xy 31.938873 -99.318163) (xy 32.230024 -99.027012) (xy 32.61043 -98.869443)
(xy 33.022178 -98.869443) (xy 33.402584 -99.027012) (xy 33.535701 -99.160129) (xy 33.678526 -99.188539) (xy 33.929918 -99.356514)
(xy 33.97232 -99.419972) (xy 34.185848 -99.6335) (xy 35.892575 -99.6335) (xy 35.967422 -99.618612) (xy 36.042269 -99.6335)
(xy 36.042274 -99.6335) (xy 36.263959 -99.677596) (xy 36.515351 -99.845571) (xy 36.557753 -99.90903) (xy 37.549934 -100.90121)
(xy 37.61339 -100.94361) (xy 37.781365 -101.195002) (xy 37.825461 -101.416687) (xy 37.825461 -101.416691) (xy 37.840349 -101.491539)
(xy 37.825461 -101.566387) (xy 37.825461 -106.301536) (xy 37.942892 -106.418967) (xy 38.100461 -106.799373) (xy 38.100461 -107.211121)
(xy 37.942892 -107.591527) (xy 37.651741 -107.882678) (xy 37.271335 -108.040247) (xy 36.859587 -108.040247) (xy 36.480728 -107.883319)
(xy 36.273874 -107.969) (xy 35.862126 -107.969) (xy 35.48172 -107.811431) (xy 35.190569 -107.52028) (xy 35.059305 -107.203379)
(xy 34.927439 -107.258) (xy 34.356561 -107.258) (xy 33.829138 -107.039534) (xy 33.425466 -106.635862) (xy 33.372 -106.506784)
(xy 33.318534 -106.635862) (xy 32.914862 -107.039534) (xy 32.387439 -107.258) (xy 31.816561 -107.258) (xy 31.289138 -107.039534)
(xy 30.885466 -106.635862) (xy 30.832 -106.506784) (xy 30.778534 -106.635862) (xy 30.374862 -107.039534) (xy 29.847439 -107.258)
(xy 29.276561 -107.258) (xy 28.749138 -107.039534) (xy 28.345466 -106.635862) (xy 28.292 -106.506784) (xy 28.238534 -106.635862)
(xy 27.834862 -107.039534) (xy 27.307439 -107.258) (xy 26.736561 -107.258) (xy 26.683698 -107.236103) (xy 26.310831 -107.60897)
(xy 26.268429 -107.672429) (xy 26.017037 -107.840404) (xy 25.795352 -107.8845) (xy 25.795347 -107.8845) (xy 25.7205 -107.899388)
(xy 25.645653 -107.8845) (xy 25.524302 -107.8845) (xy 25.21301 -108.195792) (xy 25.21301 -109.266644) (xy 25.227898 -109.341491)
(xy 25.21301 -109.416338) (xy 25.21301 -109.416342) (xy 25.177027 -109.597243) (xy 38.867 -109.597243) (xy 38.867 -108.588757)
(xy 39.25293 -107.657038) (xy 39.966038 -106.94393) (xy 40.897757 -106.558) (xy 41.906243 -106.558) (xy 42.837962 -106.94393)
(xy 43.55107 -107.657038) (xy 43.903342 -108.5075) (xy 46.61056 -108.5075) (xy 46.61056 -106.7575) (xy 46.659843 -106.509735)
(xy 46.800191 -106.299691) (xy 47.010235 -106.159343) (xy 47.139229 -106.133685) (xy 47.190854 -105.874145) (xy 47.441712 -105.498711)
(xy 47.53648 -105.435389) (xy 51.872476 -101.099392) (xy 51.872479 -101.09939) (xy 53.085989 -99.885879) (xy 53.149311 -99.791111)
(xy 53.524745 -99.540254) (xy 53.855817 -99.4744) (xy 53.967599 -99.452165) (xy 54.079381 -99.4744) (xy 66.024783 -99.4744)
(xy 66.355855 -99.540254) (xy 66.731289 -99.791111) (xy 66.982146 -100.166545) (xy 67.070235 -100.6094) (xy 66.982146 -101.052255)
(xy 66.731289 -101.427689) (xy 66.355855 -101.678546) (xy 66.024783 -101.7444) (xy 54.437732 -101.7444) (xy 53.47761 -102.704521)
(xy 53.477608 -102.704524) (xy 49.617147 -106.564984) (xy 49.65544 -106.7575) (xy 49.65544 -107.932858) (xy 50.123 -107.932858)
(xy 50.123 -107.332142) (xy 50.352884 -106.777154) (xy 50.777654 -106.352384) (xy 51.332642 -106.1225) (xy 51.474369 -106.1225)
(xy 54.942389 -102.654479) (xy 55.005711 -102.559711) (xy 55.317812 -102.351172) (xy 55.381145 -102.308854) (xy 55.824 -102.220765)
(xy 55.935783 -102.243) (xy 65.263002 -102.243) (xy 65.565743 -102.1176) (xy 66.057057 -102.1176) (xy 66.510971 -102.305618)
(xy 66.858382 -102.653029) (xy 67.0464 -103.106943) (xy 67.0464 -103.598257) (xy 84.2487 -103.598257) (xy 84.2487 -103.106943)
(xy 84.436718 -102.653029) (xy 84.784129 -102.305618) (xy 85.238043 -102.1176) (xy 85.729357 -102.1176) (xy 85.940117 -102.2049)
(xy 99.011717 -102.2049) (xy 99.043956 -102.198487) (xy 98.589869 -101.7444) (xy 85.486217 -101.7444) (xy 85.155145 -101.678546)
(xy 84.779711 -101.427689) (xy 84.528854 -101.052255) (xy 84.440765 -100.6094) (xy 84.528854 -100.166545) (xy 84.779711 -99.791111)
(xy 85.155145 -99.540254) (xy 85.486217 -99.4744) (xy 98.948217 -99.4744) (xy 99.06 -99.452165) (xy 99.171783 -99.4744)
(xy 99.502855 -99.540254) (xy 99.878289 -99.791111) (xy 99.941613 -99.885882) (xy 108.082 -108.026268) (xy 108.082 -107.953757)
(xy 108.46793 -107.022038) (xy 109.181038 -106.30893) (xy 110.112757 -105.923) (xy 111.121243 -105.923) (xy 112.052962 -106.30893)
(xy 112.76607 -107.022038) (xy 113.152 -107.953757) (xy 113.152 -108.962243) (xy 112.76607 -109.893962) (xy 112.052962 -110.60707)
(xy 111.121243 -110.993) (xy 110.112757 -110.993) (xy 109.181038 -110.60707) (xy 108.958 -110.384032) (xy 108.958 -128.815869)
(xy 113.246132 -133.104) (xy 134.657869 -133.104) (xy 137.295 -130.466868) (xy 137.295001 -118.833554) (xy 136.967854 -119.052146)
(xy 136.525 -119.140235) (xy 136.509263 -119.137105) (xy 136.534389 -119.159866) (xy 136.773914 -119.665959) (xy 136.652629 -119.888)
(xy 135.509 -119.888) (xy 135.509 -118.745085) (xy 135.626151 -118.680722) (xy 135.455854 -118.425854) (xy 135.39 -118.094782)
(xy 135.390001 -110.982788) (xy 135.367765 -110.871) (xy 135.39 -110.759217) (xy 135.39 -109.7025) (xy 135.223561 -109.7025)
(xy 134.696138 -109.484034) (xy 134.292466 -109.080362) (xy 134.074 -108.552939) (xy 134.074 -107.982061) (xy 134.292466 -107.454638)
(xy 134.696138 -107.050966) (xy 135.223561 -106.8325) (xy 135.794439 -106.8325) (xy 136.321862 -107.050966) (xy 136.725534 -107.454638)
(xy 136.944 -107.982061) (xy 136.944 -108.209609) (xy 136.967855 -108.214354) (xy 136.9775 -108.220799) (xy 136.977501 -107.236287)
(xy 136.9775 -107.236282) (xy 136.977501 -92.291133) (xy 134.023479 -89.33711) (xy 134.023476 -89.337108) (xy 133.070977 -88.384608)
(xy 132.62648 -87.940111) (xy 132.531712 -87.876789) (xy 132.362086 -87.622926) (xy 132.280854 -87.501354) (xy 132.192765 -87.0585)
(xy 132.215001 -86.946712) (xy 132.215 -80.226132) (xy 129.768979 -77.78011) (xy 129.768976 -77.780108) (xy 126.593369 -74.6045)
(xy 115.976632 -74.6045) (xy 113.309023 -77.272108) (xy 113.028354 -77.459646) (xy 112.5855 -77.547735) (xy 112.142646 -77.459646)
(xy 111.767212 -77.208788) (xy 111.570797 -76.914834) (xy 104.894 -83.591631) (xy 104.894 -84.406874) (xy 105.5815 -84.406874)
(xy 105.5815 -83.995126) (xy 105.739069 -83.61472) (xy 106.03022 -83.323569) (xy 106.410626 -83.166) (xy 106.788 -83.166)
(xy 106.788 -82.915626) (xy 106.945569 -82.53522) (xy 107.23672 -82.244069) (xy 107.617126 -82.0865) (xy 108.028874 -82.0865)
(xy 108.314976 -82.205007) (xy 108.63032 -82.074388) (xy 109.042068 -82.074388) (xy 109.422474 -82.231957) (xy 109.713625 -82.523108)
(xy 109.871194 -82.903514) (xy 109.871194 -82.9965) (xy 111.050153 -82.9965) (xy 111.125 -82.981612) (xy 111.199847 -82.9965)
(xy 111.199852 -82.9965) (xy 111.421537 -83.040596) (xy 111.672929 -83.208571) (xy 111.715331 -83.27203) (xy 114.064829 -85.621527)
(xy 114.740367 -86.297065) (xy 114.808 -86.283612) (xy 114.882847 -86.2985) (xy 114.882852 -86.2985) (xy 115.104537 -86.342596)
(xy 115.355929 -86.510571) (xy 115.398331 -86.57403) (xy 115.699932 -86.875631) (xy 115.71918 -86.829163) (xy 116.112163 -86.43618)
(xy 116.319013 -86.3505) (xy 116.112163 -86.26482) (xy 115.71918 -85.871837) (xy 115.5065 -85.358381) (xy 115.5065 -84.802619)
(xy 115.71918 -84.289163) (xy 116.112163 -83.89618) (xy 116.319013 -83.8105) (xy 116.112163 -83.72482) (xy 115.71918 -83.331837)
(xy 115.5065 -82.818381) (xy 115.5065 -82.262619) (xy 115.71918 -81.749163) (xy 116.112163 -81.35618) (xy 116.625619 -81.1435)
(xy 117.181381 -81.1435) (xy 117.694837 -81.35618) (xy 118.08782 -81.749163) (xy 118.1735 -81.956013) (xy 118.25918 -81.749163)
(xy 118.652163 -81.35618) (xy 119.165619 -81.1435) (xy 119.721381 -81.1435) (xy 120.234837 -81.35618) (xy 120.321444 -81.442787)
(xy 127.469392 -81.442787) (xy 127.538857 -81.200603) (xy 128.062302 -81.013856) (xy 128.617368 -81.041638) (xy 129.001143 -81.200603)
(xy 129.070608 -81.442787) (xy 128.27 -82.243395) (xy 127.469392 -81.442787) (xy 120.321444 -81.442787) (xy 120.62782 -81.749163)
(xy 120.8405 -82.262619) (xy 120.8405 -82.630698) (xy 126.860856 -82.630698) (xy 126.888638 -82.075632) (xy 127.047603 -81.691857)
(xy 127.289787 -81.622392) (xy 128.090395 -82.423) (xy 127.289787 -83.223608) (xy 127.047603 -83.154143) (xy 126.860856 -82.630698)
(xy 120.8405 -82.630698) (xy 120.8405 -82.818381) (xy 120.714116 -83.1235) (xy 123.940653 -83.1235) (xy 124.0155 -83.108612)
(xy 124.090347 -83.1235) (xy 124.090352 -83.1235) (xy 124.312037 -83.167596) (xy 124.563429 -83.335571) (xy 124.605831 -83.39903)
(xy 125.524102 -84.3173) (xy 127.025355 -84.3173) (xy 127.08568 -84.171663) (xy 127.478663 -83.77868) (xy 127.669647 -83.699572)
(xy 127.538857 -83.645397) (xy 127.469392 -83.403213) (xy 128.27 -82.602605) (xy 129.070608 -83.403213) (xy 129.001143 -83.645397)
(xy 128.860607 -83.695535) (xy 129.061337 -83.77868) (xy 129.45432 -84.171663) (xy 129.54 -84.378513) (xy 129.62568 -84.171663)
(xy 130.018663 -83.77868) (xy 130.225513 -83.693) (xy 130.018663 -83.60732) (xy 129.62568 -83.214337) (xy 129.546572 -83.023353)
(xy 129.492397 -83.154143) (xy 129.250213 -83.223608) (xy 128.449605 -82.423) (xy 129.250213 -81.622392) (xy 129.492397 -81.691857)
(xy 129.542535 -81.832393) (xy 129.62568 -81.631663) (xy 130.018663 -81.23868) (xy 130.532119 -81.026) (xy 131.087881 -81.026)
(xy 131.601337 -81.23868) (xy 131.99432 -81.631663) (xy 132.207 -82.145119) (xy 132.207 -82.700881) (xy 131.99432 -83.214337)
(xy 131.601337 -83.60732) (xy 131.394487 -83.693) (xy 131.601337 -83.77868) (xy 131.99432 -84.171663) (xy 132.207 -84.685119)
(xy 132.207 -85.240881) (xy 131.99432 -85.754337) (xy 131.601337 -86.14732) (xy 131.394487 -86.233) (xy 131.601337 -86.31868)
(xy 131.99432 -86.711663) (xy 132.207 -87.225119) (xy 132.207 -87.780881) (xy 131.99432 -88.294337) (xy 131.601337 -88.68732)
(xy 131.410353 -88.766428) (xy 131.541143 -88.820603) (xy 131.610608 -89.062787) (xy 130.81 -89.863395) (xy 130.009392 -89.062787)
(xy 130.078857 -88.820603) (xy 130.219393 -88.770465) (xy 130.018663 -88.68732) (xy 129.62568 -88.294337) (xy 129.54 -88.087487)
(xy 129.45432 -88.294337) (xy 129.061337 -88.68732) (xy 128.854487 -88.773) (xy 129.061337 -88.85868) (xy 129.45432 -89.251663)
(xy 129.533428 -89.442647) (xy 129.587603 -89.311857) (xy 129.829787 -89.242392) (xy 130.630395 -90.043) (xy 130.989605 -90.043)
(xy 131.790213 -89.242392) (xy 132.032397 -89.311857) (xy 132.219144 -89.835302) (xy 132.191362 -90.390368) (xy 132.032397 -90.774143)
(xy 131.790213 -90.843608) (xy 130.989605 -90.043) (xy 130.630395 -90.043) (xy 129.829787 -90.843608) (xy 129.587603 -90.774143)
(xy 129.537465 -90.633607) (xy 129.45432 -90.834337) (xy 129.061337 -91.22732) (xy 128.854487 -91.313) (xy 129.061337 -91.39868)
(xy 129.45432 -91.791663) (xy 129.54 -91.998513) (xy 129.62568 -91.791663) (xy 130.018663 -91.39868) (xy 130.209647 -91.319572)
(xy 130.078857 -91.265397) (xy 130.009392 -91.023213) (xy 130.81 -90.222605) (xy 131.610608 -91.023213) (xy 131.541143 -91.265397)
(xy 131.400607 -91.315535) (xy 131.601337 -91.39868) (xy 131.99432 -91.791663) (xy 132.207 -92.305119) (xy 132.207 -92.860881)
(xy 131.99432 -93.374337) (xy 131.601337 -93.76732) (xy 131.410353 -93.846428) (xy 131.541143 -93.900603) (xy 131.610608 -94.142787)
(xy 130.81 -94.943395) (xy 130.009392 -94.142787) (xy 130.078857 -93.900603) (xy 130.219393 -93.850465) (xy 130.018663 -93.76732)
(xy 129.62568 -93.374337) (xy 129.54 -93.167487) (xy 129.45432 -93.374337) (xy 129.061337 -93.76732) (xy 128.854487 -93.853)
(xy 129.061337 -93.93868) (xy 129.45432 -94.331663) (xy 129.533428 -94.522647) (xy 129.587603 -94.391857) (xy 129.829787 -94.322392)
(xy 130.630395 -95.123) (xy 130.989605 -95.123) (xy 131.790213 -94.322392) (xy 132.032397 -94.391857) (xy 132.219144 -94.915302)
(xy 132.191362 -95.470368) (xy 132.032397 -95.854143) (xy 131.790213 -95.923608) (xy 130.989605 -95.123) (xy 130.630395 -95.123)
(xy 129.829787 -95.923608) (xy 129.587603 -95.854143) (xy 129.537465 -95.713607) (xy 129.45432 -95.914337) (xy 129.061337 -96.30732)
(xy 128.854487 -96.393) (xy 129.061337 -96.47868) (xy 129.45432 -96.871663) (xy 129.54 -97.078513) (xy 129.62568 -96.871663)
(xy 130.018663 -96.47868) (xy 130.209647 -96.399572) (xy 130.078857 -96.345397) (xy 130.009392 -96.103213) (xy 130.81 -95.302605)
(xy 131.610608 -96.103213) (xy 131.541143 -96.345397) (xy 131.400607 -96.395535) (xy 131.601337 -96.47868) (xy 131.99432 -96.871663)
(xy 132.207 -97.385119) (xy 132.207 -97.940881) (xy 131.99432 -98.454337) (xy 131.601337 -98.84732) (xy 131.394487 -98.933)
(xy 131.601337 -99.01868) (xy 131.99432 -99.411663) (xy 132.207 -99.925119) (xy 132.207 -100.298459) (xy 134.117086 -100.298459)
(xy 134.356611 -99.792366) (xy 134.771577 -99.416459) (xy 135.159961 -99.255596) (xy 135.382 -99.377585) (xy 135.382 -100.5205)
(xy 135.636 -100.5205) (xy 135.636 -99.377585) (xy 135.858039 -99.255596) (xy 136.246423 -99.416459) (xy 136.661389 -99.792366)
(xy 136.900914 -100.298459) (xy 136.779629 -100.5205) (xy 135.636 -100.5205) (xy 135.382 -100.5205) (xy 134.238371 -100.5205)
(xy 134.117086 -100.298459) (xy 132.207 -100.298459) (xy 132.207 -100.480881) (xy 131.99432 -100.994337) (xy 131.992116 -100.996541)
(xy 134.117086 -100.996541) (xy 134.238371 -100.7745) (xy 135.382 -100.7745) (xy 135.382 -101.917415) (xy 135.636 -101.917415)
(xy 135.636 -100.7745) (xy 136.779629 -100.7745) (xy 136.900914 -100.996541) (xy 136.661389 -101.502634) (xy 136.246423 -101.878541)
(xy 135.858039 -102.039404) (xy 135.636 -101.917415) (xy 135.382 -101.917415) (xy 135.159961 -102.039404) (xy 134.771577 -101.878541)
(xy 134.356611 -101.502634) (xy 134.117086 -100.996541) (xy 131.992116 -100.996541) (xy 131.601337 -101.38732) (xy 131.394487 -101.473)
(xy 131.601337 -101.55868) (xy 131.99432 -101.951663) (xy 132.207 -102.465119) (xy 132.207 -103.020881) (xy 131.99432 -103.534337)
(xy 131.601337 -103.92732) (xy 131.394487 -104.013) (xy 131.601337 -104.09868) (xy 131.99432 -104.491663) (xy 132.207 -105.005119)
(xy 132.207 -105.560881) (xy 131.99432 -106.074337) (xy 131.601337 -106.46732) (xy 131.410353 -106.546428) (xy 131.541143 -106.600603)
(xy 131.610608 -106.842787) (xy 130.81 -107.643395) (xy 130.009392 -106.842787) (xy 130.078857 -106.600603) (xy 130.219393 -106.550465)
(xy 130.018663 -106.46732) (xy 129.62568 -106.074337) (xy 129.54 -105.867487) (xy 129.45432 -106.074337) (xy 129.061337 -106.46732)
(xy 128.854487 -106.553) (xy 129.061337 -106.63868) (xy 129.45432 -107.031663) (xy 129.533428 -107.222647) (xy 129.587603 -107.091857)
(xy 129.829787 -107.022392) (xy 130.630395 -107.823) (xy 130.989605 -107.823) (xy 131.790213 -107.022392) (xy 132.032397 -107.091857)
(xy 132.219144 -107.615302) (xy 132.191362 -108.170368) (xy 132.032397 -108.554143) (xy 131.790213 -108.623608) (xy 130.989605 -107.823)
(xy 130.630395 -107.823) (xy 129.829787 -108.623608) (xy 129.587603 -108.554143) (xy 129.537465 -108.413607) (xy 129.45432 -108.614337)
(xy 129.061337 -109.00732) (xy 128.854487 -109.093) (xy 129.061337 -109.17868) (xy 129.45432 -109.571663) (xy 129.54 -109.778513)
(xy 129.62568 -109.571663) (xy 130.018663 -109.17868) (xy 130.209647 -109.099572) (xy 130.078857 -109.045397) (xy 130.009392 -108.803213)
(xy 130.81 -108.002605) (xy 131.610608 -108.803213) (xy 131.541143 -109.045397) (xy 131.400607 -109.095535) (xy 131.601337 -109.17868)
(xy 131.99432 -109.571663) (xy 132.207 -110.085119) (xy 132.207 -110.640881) (xy 131.99432 -111.154337) (xy 131.601337 -111.54732)
(xy 131.394487 -111.633) (xy 131.601337 -111.71868) (xy 131.99432 -112.111663) (xy 132.207 -112.625119) (xy 132.207 -113.180881)
(xy 131.99432 -113.694337) (xy 131.601337 -114.08732) (xy 131.410353 -114.166428) (xy 131.541143 -114.220603) (xy 131.610608 -114.462787)
(xy 130.81 -115.263395) (xy 130.009392 -114.462787) (xy 130.078857 -114.220603) (xy 130.219393 -114.170465) (xy 130.018663 -114.08732)
(xy 129.62568 -113.694337) (xy 129.54 -113.487487) (xy 129.45432 -113.694337) (xy 129.061337 -114.08732) (xy 128.854487 -114.173)
(xy 129.061337 -114.25868) (xy 129.45432 -114.651663) (xy 129.533428 -114.842647) (xy 129.587603 -114.711857) (xy 129.829787 -114.642392)
(xy 130.630395 -115.443) (xy 130.989605 -115.443) (xy 131.790213 -114.642392) (xy 132.032397 -114.711857) (xy 132.219144 -115.235302)
(xy 132.191362 -115.790368) (xy 132.032397 -116.174143) (xy 131.790213 -116.243608) (xy 130.989605 -115.443) (xy 130.630395 -115.443)
(xy 129.829787 -116.243608) (xy 129.587603 -116.174143) (xy 129.537465 -116.033607) (xy 129.45432 -116.234337) (xy 129.061337 -116.62732)
(xy 128.854487 -116.713) (xy 129.061337 -116.79868) (xy 129.45432 -117.191663) (xy 129.54 -117.398513) (xy 129.62568 -117.191663)
(xy 130.018663 -116.79868) (xy 130.209647 -116.719572) (xy 130.078857 -116.665397) (xy 130.009392 -116.423213) (xy 130.81 -115.622605)
(xy 131.610608 -116.423213) (xy 131.541143 -116.665397) (xy 131.400607 -116.715535) (xy 131.601337 -116.79868) (xy 131.99432 -117.191663)
(xy 132.207 -117.705119) (xy 132.207 -118.260881) (xy 131.99432 -118.774337) (xy 131.601337 -119.16732) (xy 131.394487 -119.253)
(xy 131.601337 -119.33868) (xy 131.928616 -119.665959) (xy 133.990086 -119.665959) (xy 134.229611 -119.159866) (xy 134.644577 -118.783959)
(xy 135.032961 -118.623096) (xy 135.255 -118.745085) (xy 135.255 -119.888) (xy 134.111371 -119.888) (xy 133.990086 -119.665959)
(xy 131.928616 -119.665959) (xy 131.99432 -119.731663) (xy 132.207 -120.245119) (xy 132.207 -120.364041) (xy 133.990086 -120.364041)
(xy 134.111371 -120.142) (xy 135.255 -120.142) (xy 135.255 -121.284915) (xy 135.509 -121.284915) (xy 135.509 -120.142)
(xy 136.652629 -120.142) (xy 136.773914 -120.364041) (xy 136.534389 -120.870134) (xy 136.119423 -121.246041) (xy 135.731039 -121.406904)
(xy 135.509 -121.284915) (xy 135.255 -121.284915) (xy 135.032961 -121.406904) (xy 134.644577 -121.246041) (xy 134.229611 -120.870134)
(xy 133.990086 -120.364041) (xy 132.207 -120.364041) (xy 132.207 -120.800881) (xy 131.99432 -121.314337) (xy 131.601337 -121.70732)
(xy 131.394487 -121.793) (xy 131.601337 -121.87868) (xy 131.99432 -122.271663) (xy 132.207 -122.785119) (xy 132.207 -123.340881)
(xy 131.99432 -123.854337) (xy 131.601337 -124.24732) (xy 131.410353 -124.326428) (xy 131.541143 -124.380603) (xy 131.610608 -124.622787)
(xy 130.81 -125.423395) (xy 130.009392 -124.622787) (xy 130.078857 -124.380603) (xy 130.219393 -124.330465) (xy 130.018663 -124.24732)
(xy 129.62568 -123.854337) (xy 129.54 -123.647487) (xy 129.45432 -123.854337) (xy 129.061337 -124.24732) (xy 128.854487 -124.333)
(xy 129.061337 -124.41868) (xy 129.45432 -124.811663) (xy 129.533428 -125.002647) (xy 129.587603 -124.871857) (xy 129.829787 -124.802392)
(xy 130.630395 -125.603) (xy 130.989605 -125.603) (xy 131.790213 -124.802392) (xy 132.032397 -124.871857) (xy 132.219144 -125.395302)
(xy 132.191362 -125.950368) (xy 132.032397 -126.334143) (xy 131.790213 -126.403608) (xy 130.989605 -125.603) (xy 130.630395 -125.603)
(xy 129.829787 -126.403608) (xy 129.587603 -126.334143) (xy 129.537465 -126.193607) (xy 129.45432 -126.394337) (xy 129.061337 -126.78732)
(xy 128.854487 -126.873) (xy 129.061337 -126.95868) (xy 129.45432 -127.351663) (xy 129.54 -127.558513) (xy 129.62568 -127.351663)
(xy 130.018663 -126.95868) (xy 130.209647 -126.879572) (xy 130.078857 -126.825397) (xy 130.009392 -126.583213) (xy 130.81 -125.782605)
(xy 131.610608 -126.583213) (xy 131.541143 -126.825397) (xy 131.400607 -126.875535) (xy 131.601337 -126.95868) (xy 131.99432 -127.351663)
(xy 132.207 -127.865119) (xy 132.207 -127.920439) (xy 133.947 -127.920439) (xy 133.947 -127.349561) (xy 134.165466 -126.822138)
(xy 134.569138 -126.418466) (xy 135.096561 -126.2) (xy 135.667439 -126.2) (xy 136.194862 -126.418466) (xy 136.598534 -126.822138)
(xy 136.817 -127.349561) (xy 136.817 -127.920439) (xy 136.598534 -128.447862) (xy 136.194862 -128.851534) (xy 135.667439 -129.07)
(xy 135.096561 -129.07) (xy 134.569138 -128.851534) (xy 134.165466 -128.447862) (xy 133.947 -127.920439) (xy 132.207 -127.920439)
(xy 132.207 -128.420881) (xy 131.99432 -128.934337) (xy 131.601337 -129.32732) (xy 131.394487 -129.413) (xy 131.601337 -129.49868)
(xy 131.99432 -129.891663) (xy 132.207 -130.405119) (xy 132.207 -130.960881) (xy 131.99432 -131.474337) (xy 131.601337 -131.86732)
(xy 131.087881 -132.08) (xy 130.532119 -132.08) (xy 130.018663 -131.86732) (xy 129.62568 -131.474337) (xy 129.54 -131.267487)
(xy 129.45432 -131.474337) (xy 129.061337 -131.86732) (xy 128.547881 -132.08) (xy 127.992119 -132.08) (xy 127.478663 -131.86732)
(xy 127.168643 -131.5573) (xy 125.360696 -131.5573) (xy 125.222 -131.584888) (xy 124.925462 -131.525904) (xy 124.737527 -131.400329)
(xy 124.674071 -131.357929) (xy 124.631672 -131.294474) (xy 123.700699 -130.3635) (xy 120.774591 -130.3635) (xy 120.8405 -130.522619)
(xy 120.8405 -131.078381) (xy 120.62782 -131.591837) (xy 120.234837 -131.98482) (xy 119.721381 -132.1975) (xy 119.165619 -132.1975)
(xy 118.652163 -131.98482) (xy 118.25918 -131.591837) (xy 118.1735 -131.384987) (xy 118.08782 -131.591837) (xy 117.694837 -131.98482)
(xy 117.181381 -132.1975) (xy 116.625619 -132.1975) (xy 116.112163 -131.98482) (xy 115.71918 -131.591837) (xy 115.5065 -131.078381)
(xy 115.5065 -130.551302) (xy 113.43453 -128.479331) (xy 113.371071 -128.436929) (xy 113.203096 -128.185536) (xy 113.159 -127.963851)
(xy 113.159 -127.963847) (xy 113.144112 -127.889) (xy 113.159 -127.814153) (xy 113.159001 -113.485852) (xy 113.144112 -113.411)
(xy 113.203097 -113.114463) (xy 113.32852 -112.926755) (xy 113.371072 -112.863071) (xy 113.434528 -112.820671) (xy 115.5065 -110.748699)
(xy 115.5065 -110.202619) (xy 115.71918 -109.689163) (xy 116.112163 -109.29618) (xy 116.319013 -109.2105) (xy 116.112163 -109.12482)
(xy 115.71918 -108.731837) (xy 115.5065 -108.218381) (xy 115.5065 -107.662619) (xy 115.71918 -107.149163) (xy 116.112163 -106.75618)
(xy 116.319013 -106.6705) (xy 116.112163 -106.58482) (xy 115.71918 -106.191837) (xy 115.5065 -105.678381) (xy 115.5065 -105.122619)
(xy 115.71918 -104.609163) (xy 116.112163 -104.21618) (xy 116.319013 -104.1305) (xy 116.112163 -104.04482) (xy 115.71918 -103.651837)
(xy 115.5065 -103.138381) (xy 115.5065 -102.582619) (xy 115.71918 -102.069163) (xy 116.112163 -101.67618) (xy 116.319013 -101.5905)
(xy 116.112163 -101.50482) (xy 115.71918 -101.111837) (xy 115.5065 -100.598381) (xy 115.5065 -100.042619) (xy 115.71918 -99.529163)
(xy 116.112163 -99.13618) (xy 116.319013 -99.0505) (xy 116.112163 -98.96482) (xy 115.71918 -98.571837) (xy 115.5065 -98.058381)
(xy 115.5065 -97.502619) (xy 115.71918 -96.989163) (xy 116.112163 -96.59618) (xy 116.319013 -96.5105) (xy 116.112163 -96.42482)
(xy 115.71918 -96.031837) (xy 115.5065 -95.518381) (xy 115.5065 -94.962619) (xy 115.71918 -94.449163) (xy 116.112163 -94.05618)
(xy 116.319013 -93.9705) (xy 116.112163 -93.88482) (xy 115.71918 -93.491837) (xy 115.5065 -92.978381) (xy 115.5065 -92.422619)
(xy 115.71918 -91.909163) (xy 116.112163 -91.51618) (xy 116.319013 -91.4305) (xy 116.112163 -91.34482) (xy 115.71918 -90.951837)
(xy 115.5065 -90.438381) (xy 115.5065 -89.9985) (xy 115.237126 -89.9985) (xy 114.85672 -89.840931) (xy 114.58575 -89.569961)
(xy 114.50528 -89.650431) (xy 114.124874 -89.808) (xy 113.713126 -89.808) (xy 113.33272 -89.650431) (xy 113.041569 -89.35928)
(xy 112.884 -88.978874) (xy 112.884 -88.567126) (xy 112.960833 -88.381635) (xy 110.742 -86.162801) (xy 110.742 -88.570957)
(xy 111.016577 -88.754423) (xy 111.33374 -89.229091) (xy 111.445113 -89.789) (xy 111.33374 -90.348909) (xy 111.016577 -90.823577)
(xy 110.541909 -91.14074) (xy 110.123333 -91.224) (xy 109.840667 -91.224) (xy 109.422091 -91.14074) (xy 108.947423 -90.823577)
(xy 108.63026 -90.348909) (xy 108.518887 -89.789) (xy 108.63026 -89.229091) (xy 108.947423 -88.754423) (xy 109.222001 -88.570956)
(xy 109.222 -86.357302) (xy 109.159198 -86.2945) (xy 108.342346 -86.2945) (xy 108.267499 -86.309388) (xy 108.192652 -86.2945)
(xy 108.192648 -86.2945) (xy 107.970963 -86.250404) (xy 107.908402 -86.208602) (xy 107.783026 -86.124829) (xy 107.783024 -86.124827)
(xy 107.719571 -86.082429) (xy 107.677172 -86.018975) (xy 107.456668 -85.79847) (xy 107.441999 -85.801388) (xy 107.367152 -85.7865)
(xy 107.367148 -85.7865) (xy 107.145463 -85.742404) (xy 107.130479 -85.732392) (xy 106.957526 -85.616829) (xy 106.957524 -85.616827)
(xy 106.894071 -85.574429) (xy 106.851673 -85.510975) (xy 106.576698 -85.236) (xy 106.410626 -85.236) (xy 106.03022 -85.078431)
(xy 105.739069 -84.78728) (xy 105.5815 -84.406874) (xy 104.894 -84.406874) (xy 104.894 -93.393283) (xy 104.828146 -93.724355)
(xy 104.577289 -94.099789) (xy 104.201855 -94.350646) (xy 103.759 -94.438735) (xy 103.316146 -94.350646) (xy 102.940712 -94.099789)
(xy 102.906927 -94.049226) (xy 102.550854 -94.287146) (xy 102.108 -94.375235) (xy 101.665145 -94.287146) (xy 101.289711 -94.036289)
(xy 101.038854 -93.660854) (xy 100.973 -93.329782) (xy 100.973001 -82.471288) (xy 100.950765 -82.3595) (xy 101.038854 -81.916646)
(xy 101.069688 -81.8705) (xy 101.289712 -81.541211) (xy 101.38448 -81.477889) (xy 113.4825 -69.379867) (xy 113.482501 -66.850288)
(xy 113.460265 -66.7385) (xy 113.548354 -66.295646) (xy 113.607633 -66.206929) (xy 113.799212 -65.920211) (xy 113.89398 -65.856889)
(xy 117.482389 -62.268479) (xy 117.545711 -62.173711) (xy 117.893239 -61.9415) (xy 117.921145 -61.922854) (xy 118.363999 -61.834765)
(xy 118.475782 -61.857) (xy 120.063283 -61.857) (xy 120.394355 -61.922854) (xy 120.769789 -62.173711) (xy 121.020646 -62.549145)
(xy 121.108735 -62.992) (xy 121.020646 -63.434855) (xy 120.769789 -63.810289) (xy 120.521411 -63.97625) (xy 120.769789 -64.142211)
(xy 121.020646 -64.517645) (xy 121.108735 -64.9605) (xy 121.020646 -65.403355) (xy 120.769789 -65.778789) (xy 120.394355 -66.029646)
(xy 120.063283 -66.0955) (xy 118.961132 -66.0955) (xy 118.466694 -66.589938) (xy 118.534142 -66.562) (xy 119.134858 -66.562)
(xy 119.689846 -66.791884) (xy 120.114616 -67.216654) (xy 120.3445 -67.771642) (xy 120.3445 -67.913368) (xy 120.591107 -68.159975)
(xy 120.643464 -68.238333) (xy 120.857742 -68.452611) (xy 120.8245 -68.372358) (xy 120.8245 -67.771642) (xy 121.054384 -67.216654)
(xy 121.479154 -66.791884) (xy 122.034142 -66.562) (xy 122.634858 -66.562) (xy 123.189846 -66.791884) (xy 123.407902 -67.00994)
(xy 124.952045 -67.00994) (xy 125.035384 -66.756047) (xy 125.599806 -66.55041) (xy 126.199958 -66.576421) (xy 126.633616 -66.756047)
(xy 126.716955 -67.00994) (xy 125.8345 -67.892395) (xy 124.952045 -67.00994) (xy 123.407902 -67.00994) (xy 123.614616 -67.216654)
(xy 123.8445 -67.771642) (xy 123.8445 -67.913368) (xy 123.872613 -67.941482) (xy 123.963022 -68.001891) (xy 124.33875 -68.377619)
(xy 124.31291 -68.306694) (xy 124.338921 -67.706542) (xy 124.518547 -67.272884) (xy 124.77244 -67.189545) (xy 125.654895 -68.072)
(xy 126.014105 -68.072) (xy 126.89656 -67.189545) (xy 127.150453 -67.272884) (xy 127.35609 -67.837306) (xy 127.330079 -68.437458)
(xy 127.150453 -68.871116) (xy 126.89656 -68.954455) (xy 126.014105 -68.072) (xy 125.654895 -68.072) (xy 125.640753 -68.086143)
(xy 125.820358 -68.265748) (xy 125.8345 -68.251605) (xy 126.716955 -69.13406) (xy 126.666917 -69.2865) (xy 128.318283 -69.2865)
(xy 128.397 -69.302158) (xy 128.423854 -69.296816) (xy 128.054384 -68.927346) (xy 127.8245 -68.372358) (xy 127.8245 -67.771642)
(xy 128.054384 -67.216654) (xy 128.479154 -66.791884) (xy 129.034142 -66.562) (xy 129.634858 -66.562) (xy 130.189846 -66.791884)
(xy 130.614616 -67.216654) (xy 130.8445 -67.771642) (xy 130.8445 -68.372358) (xy 130.614616 -68.927346) (xy 130.189846 -69.352116)
(xy 129.634858 -69.582) (xy 129.353131 -69.582) (xy 132.801599 -73.030468) (xy 143.807073 -73.030468) (xy 143.905736 -72.763613)
(xy 144.515461 -72.537092) (xy 145.16546 -72.561144) (xy 145.654264 -72.763613) (xy 145.752927 -73.030468) (xy 144.78 -74.003395)
(xy 143.807073 -73.030468) (xy 132.801599 -73.030468) (xy 134.21867 -74.447539) (xy 143.134092 -74.447539) (xy 143.158144 -73.79754)
(xy 143.360613 -73.308736) (xy 143.627468 -73.210073) (xy 144.600395 -74.183) (xy 144.959605 -74.183) (xy 145.932532 -73.210073)
(xy 146.199387 -73.308736) (xy 146.425908 -73.918461) (xy 146.401856 -74.56846) (xy 146.199387 -75.057264) (xy 145.932532 -75.155927)
(xy 144.959605 -74.183) (xy 144.600395 -74.183) (xy 143.627468 -75.155927) (xy 143.360613 -75.057264) (xy 143.134092 -74.447539)
(xy 134.21867 -74.447539) (xy 136.11687 -76.345739) (xy 136.6648 -76.345739) (xy 136.6648 -75.774861) (xy 136.883266 -75.247438)
(xy 137.286938 -74.843766) (xy 137.814361 -74.6253) (xy 138.385239 -74.6253) (xy 138.912662 -74.843766) (xy 139.316334 -75.247438)
(xy 139.352823 -75.335532) (xy 143.807073 -75.335532) (xy 144.78 -74.362605) (xy 145.752927 -75.335532) (xy 145.654264 -75.602387)
(xy 145.044539 -75.828908) (xy 144.39454 -75.804856) (xy 143.905736 -75.602387) (xy 143.807073 -75.335532) (xy 139.352823 -75.335532)
(xy 139.5348 -75.774861) (xy 139.5348 -76.345739) (xy 139.316334 -76.873162) (xy 138.912662 -77.276834) (xy 138.385239 -77.4953)
(xy 137.814361 -77.4953) (xy 137.286938 -77.276834) (xy 136.883266 -76.873162) (xy 136.6648 -76.345739) (xy 136.11687 -76.345739)
(xy 136.994522 -77.22339) (xy 137.089289 -77.286711) (xy 137.340146 -77.662145) (xy 137.406 -77.993217) (xy 137.406 -77.993218)
(xy 137.408984 -78.008222) (xy 143.145 -78.008222) (xy 143.145 -77.357778) (xy 143.393914 -76.756847) (xy 143.853847 -76.296914)
(xy 144.454778 -76.048) (xy 145.105222 -76.048) (xy 145.706153 -76.296914) (xy 146.166086 -76.756847) (xy 146.415 -77.357778)
(xy 146.415 -78.008222) (xy 146.166086 -78.609153) (xy 145.706153 -79.069086) (xy 145.105222 -79.318) (xy 144.454778 -79.318)
(xy 143.853847 -79.069086) (xy 143.393914 -78.609153) (xy 143.145 -78.008222) (xy 137.408984 -78.008222) (xy 137.428235 -78.105)
(xy 137.406 -78.216783) (xy 137.406 -82.431191) (xy 137.750761 -82.288396) (xy 137.9728 -82.410385) (xy 137.9728 -83.5533)
(xy 138.2268 -83.5533) (xy 138.2268 -82.410385) (xy 138.448839 -82.288396) (xy 138.837223 -82.449259) (xy 139.252189 -82.825166)
(xy 139.491714 -83.331259) (xy 139.370429 -83.5533) (xy 138.2268 -83.5533) (xy 137.9728 -83.5533) (xy 137.9528 -83.5533)
(xy 137.9528 -83.8073) (xy 137.9728 -83.8073) (xy 137.9728 -83.8273) (xy 138.2268 -83.8273) (xy 138.2268 -83.8073)
(xy 139.370429 -83.8073) (xy 139.491714 -84.029341) (xy 139.252189 -84.535434) (xy 138.837223 -84.911341) (xy 138.603317 -85.008222)
(xy 143.145 -85.008222) (xy 143.145 -84.357778) (xy 143.393914 -83.756847) (xy 143.853847 -83.296914) (xy 144.454778 -83.048)
(xy 145.105222 -83.048) (xy 145.706153 -83.296914) (xy 146.166086 -83.756847) (xy 146.415 -84.357778) (xy 146.415 -85.008222)
(xy 146.166086 -85.609153) (xy 145.706153 -86.069086) (xy 145.105222 -86.318) (xy 144.454778 -86.318) (xy 143.853847 -86.069086)
(xy 143.393914 -85.609153) (xy 143.145 -85.008222) (xy 138.603317 -85.008222) (xy 138.480304 -85.059172) (xy 138.957576 -85.536444)
(xy 138.999854 -85.544854) (xy 139.280523 -85.732392) (xy 142.583132 -89.035) (xy 143.233146 -89.035) (xy 143.243343 -88.983735)
(xy 143.383691 -88.773691) (xy 143.593735 -88.633343) (xy 143.8415 -88.58406) (xy 145.5915 -88.58406) (xy 145.839265 -88.633343)
(xy 146.049309 -88.773691) (xy 146.189657 -88.983735) (xy 146.23894 -89.2315) (xy 146.23894 -90.9815) (xy 146.189657 -91.229265)
(xy 146.049309 -91.439309) (xy 145.839265 -91.579657) (xy 145.5915 -91.62894) (xy 143.8415 -91.62894) (xy 143.593735 -91.579657)
(xy 143.383691 -91.439309) (xy 143.293948 -91.305) (xy 142.249632 -91.305) (xy 143.477696 -92.533065) (xy 143.790347 -92.220414)
(xy 144.391278 -91.9715) (xy 145.041722 -91.9715) (xy 145.642653 -92.220414) (xy 146.102586 -92.680347) (xy 146.3515 -93.281278)
(xy 146.3515 -93.931722) (xy 146.102586 -94.532653) (xy 145.642653 -94.992586) (xy 145.041722 -95.2415) (xy 144.391278 -95.2415)
(xy 143.790347 -94.992586) (xy 143.602761 -94.805) (xy 143.121281 -94.805) (xy 143.009499 -94.827235) (xy 142.897717 -94.805)
(xy 142.566645 -94.739146) (xy 142.191211 -94.488289) (xy 142.127889 -94.393521) (xy 139.198812 -91.464443) (xy 139.2475 -91.709217)
(xy 139.269735 -91.821) (xy 139.2475 -91.932783) (xy 139.2475 -95.953968) (xy 143.743573 -95.953968) (xy 143.842236 -95.687113)
(xy 144.451961 -95.460592) (xy 145.10196 -95.484644) (xy 145.590764 -95.687113) (xy 145.689427 -95.953968) (xy 144.7165 -96.926895)
(xy 143.743573 -95.953968) (xy 139.2475 -95.953968) (xy 139.2475 -97.371039) (xy 143.070592 -97.371039) (xy 143.094644 -96.72104)
(xy 143.297113 -96.232236) (xy 143.563968 -96.133573) (xy 144.536895 -97.1065) (xy 144.896105 -97.1065) (xy 145.869032 -96.133573)
(xy 146.135887 -96.232236) (xy 146.362408 -96.841961) (xy 146.338356 -97.49196) (xy 146.135887 -97.980764) (xy 145.869032 -98.079427)
(xy 144.896105 -97.1065) (xy 144.536895 -97.1065) (xy 143.563968 -98.079427) (xy 143.297113 -97.980764) (xy 143.070592 -97.371039)
(xy 139.2475 -97.371039) (xy 139.2475 -98.259032) (xy 143.743573 -98.259032) (xy 144.7165 -97.286105) (xy 145.689427 -98.259032)
(xy 145.590764 -98.525887) (xy 144.981039 -98.752408) (xy 144.33104 -98.728356) (xy 143.842236 -98.525887) (xy 143.743573 -98.259032)
(xy 139.2475 -98.259032) (xy 139.2475 -103.454199) (xy 142.579671 -100.122027) (xy 142.622071 -100.058571) (xy 142.873463 -99.890596)
(xy 143.095148 -99.8465) (xy 143.095152 -99.8465) (xy 143.169999 -99.831612) (xy 143.244846 -99.8465) (xy 143.261591 -99.8465)
(xy 143.330414 -99.680347) (xy 143.790347 -99.220414) (xy 144.391278 -98.9715) (xy 145.041722 -98.9715) (xy 145.642653 -99.220414)
(xy 146.102586 -99.680347) (xy 146.3515 -100.281278) (xy 146.3515 -100.931722) (xy 146.102586 -101.532653) (xy 145.642653 -101.992586)
(xy 145.041722 -102.2415) (xy 144.391278 -102.2415) (xy 143.790347 -101.992586) (xy 143.330414 -101.532653) (xy 143.326968 -101.524334)
(xy 139.2475 -105.603801) (xy 139.2475 -109.171718) (xy 139.269735 -109.283501) (xy 139.181646 -109.726355) (xy 139.129505 -109.804389)
(xy 138.930789 -110.101789) (xy 138.836021 -110.165111) (xy 137.66 -111.341131) (xy 137.66 -114.592446) (xy 137.70648 -114.561389)
(xy 139.961389 -112.306479) (xy 140.024711 -112.211711) (xy 140.400145 -111.960854) (xy 140.731217 -111.895) (xy 140.842999 -111.872765)
(xy 140.954781 -111.895) (xy 143.230448 -111.895) (xy 143.320191 -111.760691) (xy 143.530235 -111.620343) (xy 143.778 -111.57106)
(xy 145.528 -111.57106) (xy 145.775765 -111.620343) (xy 145.985809 -111.760691) (xy 146.126157 -111.970735) (xy 146.17544 -112.2185)
(xy 146.17544 -113.9685) (xy 146.126157 -114.216265) (xy 145.985809 -114.426309) (xy 145.775765 -114.566657) (xy 145.528 -114.61594)
(xy 143.778 -114.61594) (xy 143.530235 -114.566657) (xy 143.320191 -114.426309) (xy 143.179843 -114.216265) (xy 143.169646 -114.165)
(xy 141.313132 -114.165) (xy 139.565 -115.913131) (xy 139.565 -117.401869) (xy 141.160389 -115.806479) (xy 141.223711 -115.711711)
(xy 141.599145 -115.460854) (xy 142.042 -115.372765) (xy 142.153783 -115.395) (xy 143.539261 -115.395) (xy 143.726847 -115.207414)
(xy 144.327778 -114.9585) (xy 144.978222 -114.9585) (xy 145.579153 -115.207414) (xy 146.039086 -115.667347) (xy 146.288 -116.268278)
(xy 146.288 -116.918722) (xy 146.039086 -117.519653) (xy 145.579153 -117.979586) (xy 144.978222 -118.2285) (xy 144.327778 -118.2285)
(xy 143.726847 -117.979586) (xy 143.412261 -117.665) (xy 142.512132 -117.665) (xy 141.236164 -118.940968) (xy 143.680073 -118.940968)
(xy 143.778736 -118.674113) (xy 144.388461 -118.447592) (xy 145.03846 -118.471644) (xy 145.527264 -118.674113) (xy 145.625927 -118.940968)
(xy 144.653 -119.913895) (xy 143.680073 -118.940968) (xy 141.236164 -118.940968) (xy 141.216 -118.961131) (xy 141.216 -120.358039)
(xy 143.007092 -120.358039) (xy 143.031144 -119.70804) (xy 143.233613 -119.219236) (xy 143.500468 -119.120573) (xy 144.473395 -120.0935)
(xy 144.832605 -120.0935) (xy 145.805532 -119.120573) (xy 146.072387 -119.219236) (xy 146.298908 -119.828961) (xy 146.274856 -120.47896)
(xy 146.072387 -120.967764) (xy 145.805532 -121.066427) (xy 144.832605 -120.0935) (xy 144.473395 -120.0935) (xy 143.500468 -121.066427)
(xy 143.233613 -120.967764) (xy 143.007092 -120.358039) (xy 141.216 -120.358039) (xy 141.216 -121.246032) (xy 143.680073 -121.246032)
(xy 144.653 -120.273105) (xy 145.625927 -121.246032) (xy 145.527264 -121.512887) (xy 144.917539 -121.739408) (xy 144.26754 -121.715356)
(xy 143.778736 -121.512887) (xy 143.680073 -121.246032) (xy 141.216 -121.246032) (xy 141.216 -123.918722) (xy 143.018 -123.918722)
(xy 143.018 -123.268278) (xy 143.266914 -122.667347) (xy 143.726847 -122.207414) (xy 144.327778 -121.9585) (xy 144.978222 -121.9585)
(xy 145.579153 -122.207414) (xy 146.039086 -122.667347) (xy 146.288 -123.268278) (xy 146.288 -123.918722) (xy 146.039086 -124.519653)
(xy 145.579153 -124.979586) (xy 144.978222 -125.2285) (xy 144.327778 -125.2285) (xy 143.726847 -124.979586) (xy 143.266914 -124.519653)
(xy 143.018 -123.918722) (xy 141.216 -123.918722) (xy 141.216 -127.418722) (xy 143.018 -127.418722) (xy 143.018 -126.768278)
(xy 143.266914 -126.167347) (xy 143.726847 -125.707414) (xy 144.327778 -125.4585) (xy 144.978222 -125.4585) (xy 145.579153 -125.707414)
(xy 146.039086 -126.167347) (xy 146.288 -126.768278) (xy 146.288 -127.418722) (xy 146.039086 -128.019653) (xy 145.579153 -128.479586)
(xy 144.978222 -128.7285) (xy 144.327778 -128.7285) (xy 143.726847 -128.479586) (xy 143.266914 -128.019653) (xy 143.018 -127.418722)
(xy 141.216 -127.418722) (xy 141.216 -130.918722) (xy 143.018 -130.918722) (xy 143.018 -130.268278) (xy 143.266914 -129.667347)
(xy 143.726847 -129.207414) (xy 144.327778 -128.9585) (xy 144.978222 -128.9585) (xy 145.579153 -129.207414) (xy 146.039086 -129.667347)
(xy 146.288 -130.268278) (xy 146.288 -130.918722) (xy 146.039086 -131.519653) (xy 145.579153 -131.979586) (xy 144.978222 -132.2285)
(xy 144.327778 -132.2285) (xy 143.726847 -131.979586) (xy 143.266914 -131.519653) (xy 143.018 -130.918722) (xy 141.216 -130.918722)
(xy 141.216 -131.714219) (xy 141.238235 -131.826001) (xy 141.195365 -132.041523) (xy 141.150146 -132.268855) (xy 140.899289 -132.644289)
(xy 140.804522 -132.70761) (xy 137.53361 -135.978521) (xy 137.533608 -135.978524) (xy 136.263613 -137.248518) (xy 136.200289 -137.343289)
(xy 135.824855 -137.594146) (xy 135.493783 -137.66) (xy 135.382 -137.682235) (xy 135.270217 -137.66) (xy 113.014781 -137.66)
(xy 112.902999 -137.682235) (xy 112.791217 -137.66) (xy 112.460145 -137.594146) (xy 112.084711 -137.343289) (xy 112.021389 -137.248521)
(xy 105.739477 -130.966608) (xy 105.321482 -130.548613) (xy 105.226711 -130.485289) (xy 104.981773 -130.118712) (xy 104.975854 -130.109854)
(xy 104.887765 -129.667) (xy 104.91 -129.555217) (xy 104.910001 -119.267861) (xy 104.818265 -119.329157) (xy 104.5705 -119.37844)
(xy 102.8205 -119.37844) (xy 102.572735 -119.329157) (xy 102.362691 -119.188809) (xy 102.222343 -118.978765) (xy 102.17306 -118.731)
(xy 102.17306 -116.981) (xy 102.222343 -116.733235) (xy 102.362691 -116.523191) (xy 102.572735 -116.382843) (xy 102.8205 -116.33356)
(xy 104.5705 -116.33356) (xy 104.818265 -116.382843) (xy 104.910001 -116.444139) (xy 104.910001 -110.731533) (xy 98.653369 -104.4749)
(xy 86.001438 -104.4749) (xy 85.729357 -104.5876) (xy 85.238043 -104.5876) (xy 84.784129 -104.399582) (xy 84.436718 -104.052171)
(xy 84.2487 -103.598257) (xy 67.0464 -103.598257) (xy 66.858382 -104.052171) (xy 66.510971 -104.399582) (xy 66.057057 -104.5876)
(xy 65.565743 -104.5876) (xy 65.385643 -104.513) (xy 56.294132 -104.513) (xy 54.579972 -106.22716) (xy 54.832642 -106.1225)
(xy 55.433358 -106.1225) (xy 55.988346 -106.352384) (xy 56.206402 -106.57044) (xy 57.750545 -106.57044) (xy 57.833884 -106.316547)
(xy 58.398306 -106.11091) (xy 58.998458 -106.136921) (xy 59.432116 -106.316547) (xy 59.515455 -106.57044) (xy 58.633 -107.452895)
(xy 57.750545 -106.57044) (xy 56.206402 -106.57044) (xy 56.413116 -106.777154) (xy 56.643 -107.332142) (xy 56.643 -107.867194)
(xy 57.11141 -107.867194) (xy 57.137421 -107.267042) (xy 57.317047 -106.833384) (xy 57.57094 -106.750045) (xy 58.453395 -107.6325)
(xy 58.812605 -107.6325) (xy 59.69506 -106.750045) (xy 59.948953 -106.833384) (xy 60.15459 -107.397806) (xy 60.131401 -107.932858)
(xy 60.623 -107.932858) (xy 60.623 -107.332142) (xy 60.852884 -106.777154) (xy 61.277654 -106.352384) (xy 61.832642 -106.1225)
(xy 62.433358 -106.1225) (xy 62.988346 -106.352384) (xy 63.413116 -106.777154) (xy 63.643 -107.332142) (xy 63.643 -107.932858)
(xy 64.123 -107.932858) (xy 64.123 -107.332142) (xy 64.352884 -106.777154) (xy 64.777654 -106.352384) (xy 65.332642 -106.1225)
(xy 65.933358 -106.1225) (xy 66.488346 -106.352384) (xy 66.913116 -106.777154) (xy 67.143 -107.332142) (xy 67.143 -107.932858)
(xy 66.913116 -108.487846) (xy 66.488346 -108.912616) (xy 66.368537 -108.962243) (xy 71.633 -108.962243) (xy 71.633 -107.953757)
(xy 72.01893 -107.022038) (xy 72.732038 -106.30893) (xy 73.663757 -105.923) (xy 74.672243 -105.923) (xy 75.603962 -106.30893)
(xy 76.31707 -107.022038) (xy 76.703 -107.953757) (xy 76.703 -108.962243) (xy 76.31707 -109.893962) (xy 75.603962 -110.60707)
(xy 74.672243 -110.993) (xy 73.663757 -110.993) (xy 72.732038 -110.60707) (xy 72.01893 -109.893962) (xy 71.633 -108.962243)
(xy 66.368537 -108.962243) (xy 65.933358 -109.1425) (xy 65.332642 -109.1425) (xy 64.777654 -108.912616) (xy 64.352884 -108.487846)
(xy 64.123 -107.932858) (xy 63.643 -107.932858) (xy 63.413116 -108.487846) (xy 62.988346 -108.912616) (xy 62.433358 -109.1425)
(xy 61.832642 -109.1425) (xy 61.277654 -108.912616) (xy 60.852884 -108.487846) (xy 60.623 -107.932858) (xy 60.131401 -107.932858)
(xy 60.128579 -107.997958) (xy 59.948953 -108.431616) (xy 59.69506 -108.514955) (xy 58.812605 -107.6325) (xy 58.453395 -107.6325)
(xy 57.57094 -108.514955) (xy 57.317047 -108.431616) (xy 57.11141 -107.867194) (xy 56.643 -107.867194) (xy 56.643 -107.932858)
(xy 56.413116 -108.487846) (xy 56.206402 -108.69456) (xy 57.750545 -108.69456) (xy 58.633 -107.812105) (xy 59.515455 -108.69456)
(xy 59.432116 -108.948453) (xy 58.867694 -109.15409) (xy 58.267542 -109.128079) (xy 57.833884 -108.948453) (xy 57.750545 -108.69456)
(xy 56.206402 -108.69456) (xy 55.988346 -108.912616) (xy 55.433358 -109.1425) (xy 54.832642 -109.1425) (xy 54.277654 -108.912616)
(xy 53.852884 -108.487846) (xy 53.623 -107.932858) (xy 53.623 -107.332142) (xy 53.72766 -107.079472) (xy 53.143 -107.664131)
(xy 53.143 -107.932858) (xy 52.913116 -108.487846) (xy 52.488346 -108.912616) (xy 51.933358 -109.1425) (xy 51.332642 -109.1425)
(xy 50.777654 -108.912616) (xy 50.352884 -108.487846) (xy 50.123 -107.932858) (xy 49.65544 -107.932858) (xy 49.65544 -108.5075)
(xy 49.606157 -108.755265) (xy 49.465809 -108.965309) (xy 49.255765 -109.105657) (xy 49.008 -109.15494) (xy 47.258 -109.15494)
(xy 47.010235 -109.105657) (xy 46.800191 -108.965309) (xy 46.659843 -108.755265) (xy 46.61056 -108.5075) (xy 43.903342 -108.5075)
(xy 43.937 -108.588757) (xy 43.937 -109.597243) (xy 43.55107 -110.528962) (xy 42.837962 -111.24207) (xy 41.906243 -111.628)
(xy 40.897757 -111.628) (xy 39.966038 -111.24207) (xy 39.25293 -110.528962) (xy 38.867 -109.597243) (xy 25.177027 -109.597243)
(xy 25.168914 -109.638027) (xy 25.097167 -109.745404) (xy 25.043339 -109.825964) (xy 25.043337 -109.825966) (xy 25.000939 -109.889419)
(xy 24.937486 -109.931817) (xy 22.22851 -112.640791) (xy 22.22851 -116.709243) (xy 36.581 -116.709243) (xy 36.581 -115.700757)
(xy 36.96693 -114.769038) (xy 37.680038 -114.05593) (xy 38.611757 -113.67) (xy 39.620243 -113.67) (xy 40.551962 -114.05593)
(xy 41.26507 -114.769038) (xy 41.651 -115.700757) (xy 41.651 -116.709243) (xy 73.03 -116.709243) (xy 73.03 -115.700757)
(xy 73.41593 -114.769038) (xy 74.129038 -114.05593) (xy 75.060757 -113.67) (xy 76.069243 -113.67) (xy 77.000962 -114.05593)
(xy 77.71407 -114.769038) (xy 78.1 -115.700757) (xy 78.1 -116.709243) (xy 77.71407 -117.640962) (xy 77.198674 -118.156358)
(xy 84.6855 -118.156358) (xy 84.6855 -117.555642) (xy 84.915384 -117.000654) (xy 85.340154 -116.575884) (xy 85.895142 -116.346)
(xy 86.495858 -116.346) (xy 87.050846 -116.575884) (xy 87.475616 -117.000654) (xy 87.7055 -117.555642) (xy 87.7055 -118.156358)
(xy 87.475616 -118.711346) (xy 87.394 -118.792962) (xy 87.394 -119.769) (xy 89.812869 -119.769) (xy 89.409869 -119.366)
(xy 89.395142 -119.366) (xy 88.840154 -119.136116) (xy 88.415384 -118.711346) (xy 88.1855 -118.156358) (xy 88.1855 -117.555642)
(xy 88.415384 -117.000654) (xy 88.840154 -116.575884) (xy 89.395142 -116.346) (xy 89.995858 -116.346) (xy 90.550846 -116.575884)
(xy 90.768902 -116.79394) (xy 92.313045 -116.79394) (xy 92.396384 -116.540047) (xy 92.960806 -116.33441) (xy 93.560958 -116.360421)
(xy 93.994616 -116.540047) (xy 94.077955 -116.79394) (xy 93.1955 -117.676395) (xy 92.313045 -116.79394) (xy 90.768902 -116.79394)
(xy 90.975616 -117.000654) (xy 91.2055 -117.555642) (xy 91.2055 -117.951369) (xy 91.862524 -118.608393) (xy 91.67391 -118.090694)
(xy 91.699921 -117.490542) (xy 91.879547 -117.056884) (xy 92.13344 -116.973545) (xy 93.015895 -117.856) (xy 93.375105 -117.856)
(xy 94.25756 -116.973545) (xy 94.511453 -117.056884) (xy 94.71709 -117.621306) (xy 94.693901 -118.156358) (xy 95.1855 -118.156358)
(xy 95.1855 -117.555642) (xy 95.415384 -117.000654) (xy 95.840154 -116.575884) (xy 96.395142 -116.346) (xy 96.995858 -116.346)
(xy 97.550846 -116.575884) (xy 97.975616 -117.000654) (xy 98.2055 -117.555642) (xy 98.2055 -118.156358) (xy 98.6855 -118.156358)
(xy 98.6855 -117.555642) (xy 98.915384 -117.000654) (xy 99.340154 -116.575884) (xy 99.895142 -116.346) (xy 100.495858 -116.346)
(xy 101.050846 -116.575884) (xy 101.475616 -117.000654) (xy 101.7055 -117.555642) (xy 101.7055 -118.156358) (xy 101.475616 -118.711346)
(xy 101.050846 -119.136116) (xy 100.495858 -119.366) (xy 99.895142 -119.366) (xy 99.340154 -119.136116) (xy 98.915384 -118.711346)
(xy 98.6855 -118.156358) (xy 98.2055 -118.156358) (xy 97.975616 -118.711346) (xy 97.550846 -119.136116) (xy 96.995858 -119.366)
(xy 96.395142 -119.366) (xy 95.840154 -119.136116) (xy 95.415384 -118.711346) (xy 95.1855 -118.156358) (xy 94.693901 -118.156358)
(xy 94.691079 -118.221458) (xy 94.511453 -118.655116) (xy 94.25756 -118.738455) (xy 93.375105 -117.856) (xy 93.015895 -117.856)
(xy 93.001753 -117.870143) (xy 93.181358 -118.049748) (xy 93.1955 -118.035605) (xy 94.077955 -118.91806) (xy 93.994616 -119.171953)
(xy 93.430194 -119.37759) (xy 92.830042 -119.351579) (xy 92.447085 -119.192954) (xy 108.202115 -134.947983) (xy 108.292523 -135.008392)
(xy 111.214132 -137.93) (xy 137.197869 -137.93) (xy 139.961389 -135.166479) (xy 140.024711 -135.071711) (xy 140.305111 -134.884354)
(xy 140.400145 -134.820854) (xy 140.842999 -134.732765) (xy 140.954782 -134.755) (xy 143.251807 -134.755) (xy 143.256691 -134.747691)
(xy 143.466735 -134.607343) (xy 143.7145 -134.55806) (xy 145.4645 -134.55806) (xy 145.712265 -134.607343) (xy 145.922309 -134.747691)
(xy 146.062657 -134.957735) (xy 146.11194 -135.2055) (xy 146.11194 -136.9555) (xy 146.062657 -137.203265) (xy 145.922309 -137.413309)
(xy 145.712265 -137.553657) (xy 145.4645 -137.60294) (xy 143.7145 -137.60294) (xy 143.466735 -137.553657) (xy 143.256691 -137.413309)
(xy 143.116343 -137.203265) (xy 143.080884 -137.025) (xy 141.313132 -137.025) (xy 138.549613 -139.788518) (xy 138.486289 -139.883289)
(xy 138.110855 -140.134146) (xy 137.779783 -140.2) (xy 137.699346 -140.216) (xy 139.356869 -140.216) (xy 140.906389 -138.666479)
(xy 140.969711 -138.571711) (xy 141.292327 -138.356146) (xy 141.345145 -138.320854) (xy 141.788 -138.232765) (xy 141.899783 -138.255)
(xy 143.602761 -138.255) (xy 143.663347 -138.194414) (xy 144.264278 -137.9455) (xy 144.914722 -137.9455) (xy 145.515653 -138.194414)
(xy 145.975586 -138.654347) (xy 146.2245 -139.255278) (xy 146.2245 -139.905722) (xy 145.975586 -140.506653) (xy 145.515653 -140.966586)
(xy 144.914722 -141.2155) (xy 144.264278 -141.2155) (xy 143.663347 -140.966586) (xy 143.221761 -140.525) (xy 142.258132 -140.525)
(xy 140.855164 -141.927968) (xy 143.616573 -141.927968) (xy 143.715236 -141.661113) (xy 144.324961 -141.434592) (xy 144.97496 -141.458644)
(xy 145.463764 -141.661113) (xy 145.562427 -141.927968) (xy 144.5895 -142.900895) (xy 143.616573 -141.927968) (xy 140.855164 -141.927968)
(xy 140.708613 -142.074518) (xy 140.645289 -142.169289) (xy 140.269855 -142.420146) (xy 139.938783 -142.486) (xy 139.827 -142.508235)
(xy 139.715217 -142.486) (xy 121.661752 -142.486) (xy 121.685 -142.542126) (xy 121.685 -142.953874) (xy 121.527431 -143.33428)
(xy 121.23628 -143.625431) (xy 121.164576 -143.655132) (xy 121.177 -143.685126) (xy 121.177 -144.096874) (xy 121.019431 -144.47728)
(xy 120.776211 -144.7205) (xy 123.848665 -144.7205) (xy 124.10681 -144.771848) (xy 124.399549 -144.967451) (xy 124.576795 -145.232717)
(xy 127.197579 -147.8535) (xy 127.627922 -147.8535) (xy 128.471577 -147.009844) (xy 128.520951 -146.935951) (xy 128.594844 -146.886577)
(xy 128.594845 -146.886576) (xy 128.70588 -146.812385) (xy 128.81369 -146.740348) (xy 129.071835 -146.689) (xy 129.071839 -146.689)
(xy 129.158999 -146.671663) (xy 129.246159 -146.689) (xy 133.449733 -146.689) (xy 132.981759 -146.221026) (xy 132.6415 -145.399569)
(xy 132.6415 -144.510431) (xy 132.981759 -143.688974) (xy 133.610474 -143.060259) (xy 134.431931 -142.72) (xy 135.321069 -142.72)
(xy 136.142526 -143.060259) (xy 136.427306 -143.345039) (xy 142.943592 -143.345039) (xy 142.967644 -142.69504) (xy 143.170113 -142.206236)
(xy 143.436968 -142.107573) (xy 144.409895 -143.0805) (xy 144.769105 -143.0805) (xy 145.742032 -142.107573) (xy 146.008887 -142.206236)
(xy 146.235408 -142.815961) (xy 146.211356 -143.46596) (xy 146.008887 -143.954764) (xy 145.742032 -144.053427) (xy 144.769105 -143.0805)
(xy 144.409895 -143.0805) (xy 143.436968 -144.053427) (xy 143.170113 -143.954764) (xy 142.943592 -143.345039) (xy 136.427306 -143.345039)
(xy 136.771241 -143.688974) (xy 136.996597 -144.233032) (xy 143.616573 -144.233032) (xy 144.5895 -143.260105) (xy 145.562427 -144.233032)
(xy 145.463764 -144.499887) (xy 144.854039 -144.726408) (xy 144.20404 -144.702356) (xy 143.715236 -144.499887) (xy 143.616573 -144.233032)
(xy 136.996597 -144.233032) (xy 137.1115 -144.510431) (xy 137.1115 -145.399569) (xy 136.771241 -146.221026) (xy 136.303267 -146.689)
(xy 136.602922 -146.689) (xy 137.466077 -145.825844) (xy 137.515451 -145.751951) (xy 137.589344 -145.702577) (xy 137.589345 -145.702576)
(xy 137.750125 -145.595146) (xy 137.80819 -145.556348) (xy 138.066335 -145.505) (xy 138.066339 -145.505) (xy 138.1535 -145.487663)
(xy 138.240661 -145.505) (xy 143.352761 -145.505) (xy 143.663347 -145.194414) (xy 144.264278 -144.9455) (xy 144.914722 -144.9455)
(xy 145.515653 -145.194414) (xy 145.975586 -145.654347) (xy 146.2245 -146.255278) (xy 146.2245 -146.905722) (xy 145.975586 -147.506653)
(xy 145.515653 -147.966586) (xy 144.914722 -148.2155) (xy 144.264278 -148.2155) (xy 143.663347 -147.966586) (xy 143.203414 -147.506653)
(xy 143.10746 -147.275) (xy 138.520079 -147.275) (xy 137.656925 -148.138153) (xy 137.607549 -148.212049) (xy 137.31481 -148.407652)
(xy 137.056665 -148.459) (xy 137.056661 -148.459) (xy 136.9695 -148.476337) (xy 136.882339 -148.459) (xy 136.212131 -148.459)
(xy 136.295541 -148.551077) (xy 136.456404 -148.939461) (xy 136.334415 -149.1615) (xy 135.1915 -149.1615) (xy 135.1915 -149.1415)
(xy 134.9375 -149.1415) (xy 134.9375 -149.1615) (xy 133.794585 -149.1615) (xy 133.672596 -148.939461) (xy 133.833459 -148.551077)
(xy 133.916869 -148.459) (xy 129.525579 -148.459) (xy 128.8795 -149.105078) (xy 128.8795 -149.573939) (xy 128.853156 -149.637539)
(xy 133.672596 -149.637539) (xy 133.794585 -149.4155) (xy 134.9375 -149.4155) (xy 134.9375 -150.559129) (xy 135.1915 -150.559129)
(xy 135.1915 -149.4155) (xy 136.334415 -149.4155) (xy 136.456404 -149.637539) (xy 136.295541 -150.025923) (xy 135.919634 -150.440889)
(xy 135.413541 -150.680414) (xy 135.1915 -150.559129) (xy 134.9375 -150.559129) (xy 134.715459 -150.680414) (xy 134.209366 -150.440889)
(xy 133.833459 -150.025923) (xy 133.672596 -149.637539) (xy 128.853156 -149.637539) (xy 128.661034 -150.101362) (xy 128.257362 -150.505034)
(xy 127.729939 -150.7235) (xy 127.159061 -150.7235) (xy 126.631638 -150.505034) (xy 126.227966 -150.101362) (xy 126.0095 -149.573939)
(xy 126.0095 -149.168579) (xy 123.331422 -146.4905) (xy 119.174628 -146.4905) (xy 119.321063 -146.535956) (xy 119.518343 -147.08225)
(xy 119.491548 -147.662456) (xy 119.321063 -148.074044) (xy 119.072353 -148.151248) (xy 118.226105 -147.305) (xy 118.240248 -147.290858)
(xy 118.060643 -147.111253) (xy 118.0465 -147.125395) (xy 117.200252 -146.279147) (xy 117.277456 -146.030437) (xy 117.282219 -146.028717)
(xy 117.219476 -146.002728) (xy 116.926248 -145.7095) (xy 103.863132 -145.7095) (xy 103.449611 -146.12302) (xy 103.449609 -146.123023)
(xy 102.044882 -147.52775) (xy 116.574657 -147.52775) (xy 116.601452 -146.947544) (xy 116.771937 -146.535956) (xy 117.020647 -146.458752)
(xy 117.866895 -147.305) (xy 117.020647 -148.151248) (xy 116.771937 -148.074044) (xy 116.574657 -147.52775) (xy 102.044882 -147.52775)
(xy 100.753485 -148.819147) (xy 117.200252 -148.819147) (xy 117.27604 -148.575) (xy 117.200252 -148.330853) (xy 118.0465 -147.484605)
(xy 118.892748 -148.330853) (xy 118.81696 -148.575) (xy 118.892748 -148.819147) (xy 118.0465 -149.665395) (xy 117.200252 -148.819147)
(xy 100.753485 -148.819147) (xy 99.504882 -150.06775) (xy 116.574657 -150.06775) (xy 116.601452 -149.487544) (xy 116.771937 -149.075956)
(xy 117.020647 -148.998752) (xy 117.866895 -149.845) (xy 118.226105 -149.845) (xy 119.072353 -148.998752) (xy 119.321063 -149.075956)
(xy 119.518343 -149.62225) (xy 119.491548 -150.202456) (xy 119.321063 -150.614044) (xy 119.072353 -150.691248) (xy 118.226105 -149.845)
(xy 117.866895 -149.845) (xy 117.020647 -150.691248) (xy 116.771937 -150.614044) (xy 116.574657 -150.06775) (xy 99.504882 -150.06775)
(xy 97.528 -152.044631) (xy 97.528 -155.145717) (xy 97.550235 -155.2575) (xy 97.462146 -155.700355) (xy 97.411243 -155.776536)
(xy 97.211289 -156.075789) (xy 97.116521 -156.139111) (xy 93.497023 -159.758608) (xy 93.216354 -159.946146) (xy 92.7735 -160.034235)
(xy 92.330646 -159.946146) (xy 91.955212 -159.695288) (xy 91.704354 -159.319854) (xy 91.616265 -158.877) (xy 91.704354 -158.434146)
(xy 91.877622 -158.174833) (xy 91.642069 -157.93928) (xy 91.4845 -157.558874) (xy 91.4845 -157.147126) (xy 91.559016 -156.967227)
(xy 91.388069 -156.79628) (xy 91.2305 -156.415874) (xy 91.2305 -156.004126) (xy 91.388069 -155.62372) (xy 91.67922 -155.332569)
(xy 92.059626 -155.175) (xy 92.471374 -155.175) (xy 92.79157 -155.307629) (xy 94.172501 -153.926696) (xy 94.1725 -150.823847)
(xy 94.157612 -150.749) (xy 94.1725 -150.674153) (xy 94.1725 -150.674149) (xy 94.216596 -150.452464) (xy 94.384571 -150.201071)
(xy 94.44803 -150.158669) (xy 102.116681 -142.490017) (xy 102.159082 -142.42656) (xy 102.410474 -142.258585) (xy 102.632159 -142.214489)
(xy 102.632164 -142.214489) (xy 102.707011 -142.199601) (xy 102.781858 -142.214489) (xy 110.120358 -142.214489) (xy 110.052711 -142.169289)
(xy 109.989389 -142.074521) (xy 106.083479 -138.16861) (xy 106.083476 -138.168608) (xy 89.953869 -122.039) (xy 86.979782 -122.039)
(xy 86.867999 -122.061235) (xy 86.540945 -121.99618) (xy 86.425145 -121.973146) (xy 86.049711 -121.722289) (xy 85.986387 -121.627518)
(xy 85.535482 -121.176613) (xy 85.440711 -121.113289) (xy 85.189855 -120.737855) (xy 85.189854 -120.737854) (xy 85.101765 -120.295)
(xy 85.124 -120.183216) (xy 85.124001 -118.919963) (xy 84.915384 -118.711346) (xy 84.6855 -118.156358) (xy 77.198674 -118.156358)
(xy 77.000962 -118.35407) (xy 76.069243 -118.74) (xy 75.060757 -118.74) (xy 74.129038 -118.35407) (xy 73.41593 -117.640962)
(xy 73.03 -116.709243) (xy 41.651 -116.709243) (xy 41.26507 -117.640962) (xy 40.551962 -118.35407) (xy 39.620243 -118.74)
(xy 38.611757 -118.74) (xy 37.680038 -118.35407) (xy 36.96693 -117.640962) (xy 36.581 -116.709243) (xy 22.22851 -116.709243)
(xy 22.22851 -117.165708) (xy 22.539802 -117.477) (xy 31.363789 -117.477) (xy 31.48122 -117.359569) (xy 31.861626 -117.202)
(xy 32.273374 -117.202) (xy 32.65378 -117.359569) (xy 32.944931 -117.65072) (xy 33.1025 -118.031126) (xy 33.1025 -118.442874)
(xy 32.944931 -118.82328) (xy 32.65378 -119.114431) (xy 32.273374 -119.272) (xy 31.861626 -119.272) (xy 31.48122 -119.114431)
(xy 31.363789 -118.997) (xy 22.299846 -118.997) (xy 22.224999 -119.011888) (xy 22.150152 -118.997) (xy 22.150148 -118.997)
(xy 21.928463 -118.952904) (xy 21.928461 -118.952903) (xy 21.928462 -118.952903) (xy 21.7785 -118.852702) (xy 21.7785 -119.827199)
(xy 22.603302 -120.652) (xy 31.363789 -120.652) (xy 31.48122 -120.534569) (xy 31.861626 -120.377) (xy 32.273374 -120.377)
(xy 32.65378 -120.534569) (xy 32.944931 -120.82572) (xy 33.1025 -121.206126) (xy 33.1025 -121.617874) (xy 32.944931 -121.99828)
(xy 32.65378 -122.289431) (xy 32.273374 -122.447) (xy 31.861626 -122.447) (xy 31.48122 -122.289431) (xy 31.363789 -122.172)
(xy 22.363346 -122.172) (xy 22.288499 -122.186888) (xy 22.213652 -122.172) (xy 22.213648 -122.172) (xy 21.991963 -122.127904)
(xy 21.740571 -121.959929) (xy 21.698171 -121.896473) (xy 20.534028 -120.732329) (xy 20.470572 -120.689929) (xy 20.428172 -120.626473)
(xy 20.428171 -120.626472) (xy 20.359033 -120.523) (xy 20.302597 -120.438537) (xy 20.290357 -120.377) (xy 20.243612 -120.142)
(xy 20.258501 -120.067148) (xy 20.2585 -112.088847) (xy 20.243612 -112.014) (xy 20.2585 -111.939153) (xy 20.2585 -111.939149)
(xy 20.302596 -111.717464) (xy 20.470571 -111.466071) (xy 20.53403 -111.423669) (xy 22.159698 -109.798) (xy 21.656561 -109.798)
(xy 21.129138 -109.579534) (xy 20.725466 -109.175862) (xy 20.672 -109.046784) (xy 20.618534 -109.175862) (xy 20.214862 -109.579534)
(xy 19.687439 -109.798) (xy 19.116561 -109.798) (xy 18.589138 -109.579534) (xy 18.185466 -109.175862) (xy 18.132 -109.046784)
(xy 18.078534 -109.175862) (xy 17.674862 -109.579534) (xy 17.147439 -109.798) (xy 16.576561 -109.798) (xy 16.049138 -109.579534)
(xy 15.645466 -109.175862) (xy 15.592 -109.046784) (xy 15.538534 -109.175862) (xy 15.134862 -109.579534) (xy 14.607439 -109.798)
(xy 14.036561 -109.798) (xy 13.509138 -109.579534) (xy 13.105466 -109.175862) (xy 13.052 -109.046784) (xy 12.998534 -109.175862)
(xy 12.594862 -109.579534) (xy 12.067439 -109.798) (xy 11.496561 -109.798) (xy 10.969138 -109.579534) (xy 10.787 -109.397396)
(xy 10.787 -109.702369) (xy 14.503024 -113.418391) (xy 14.597789 -113.481711) (xy 14.848646 -113.857145) (xy 14.9145 -114.188217)
(xy 14.9145 -114.188218) (xy 14.936735 -114.299999) (xy 14.9145 -114.411781) (xy 14.9145 -126.560308) (xy 15.932 -126.560308)
(xy 15.932 -125.392692) (xy 16.378827 -124.313956) (xy 17.204456 -123.488327) (xy 18.283192 -123.0415) (xy 19.450808 -123.0415)
(xy 20.529544 -123.488327) (xy 21.088678 -124.047461) (xy 22.992096 -124.047461) (xy 23.152959 -123.659077) (xy 23.528866 -123.244111)
(xy 24.034959 -123.004586) (xy 24.257 -123.125871) (xy 24.257 -124.2695) (xy 24.511 -124.2695) (xy 24.511 -123.125871)
(xy 24.733041 -123.004586) (xy 25.239134 -123.244111) (xy 25.615041 -123.659077) (xy 25.775904 -124.047461) (xy 25.653915 -124.2695)
(xy 24.511 -124.2695) (xy 24.257 -124.2695) (xy 23.114085 -124.2695) (xy 22.992096 -124.047461) (xy 21.088678 -124.047461)
(xy 21.355173 -124.313956) (xy 21.53394 -124.745539) (xy 22.992096 -124.745539) (xy 23.114085 -124.5235) (xy 24.257 -124.5235)
(xy 24.257 -125.667129) (xy 24.511 -125.667129) (xy 24.511 -124.5235) (xy 25.653915 -124.5235) (xy 25.775904 -124.745539)
(xy 25.615041 -125.133923) (xy 25.239134 -125.548889) (xy 24.733041 -125.788414) (xy 24.511 -125.667129) (xy 24.257 -125.667129)
(xy 24.034959 -125.788414) (xy 23.528866 -125.548889) (xy 23.152959 -125.133923) (xy 22.992096 -124.745539) (xy 21.53394 -124.745539)
(xy 21.802 -125.392692) (xy 21.802 -126.560308) (xy 21.355173 -127.639044) (xy 20.529544 -128.464673) (xy 19.450808 -128.9115)
(xy 18.283192 -128.9115) (xy 17.204456 -128.464673) (xy 16.378827 -127.639044) (xy 15.932 -126.560308) (xy 14.9145 -126.560308)
(xy 14.9145 -129.110719) (xy 14.936735 -129.222501) (xy 14.885998 -129.477571) (xy 14.848646 -129.665355) (xy 14.597789 -130.040789)
(xy 14.503021 -130.104111) (xy 11.105113 -133.502018) (xy 11.041789 -133.596789) (xy 10.733921 -133.8025) (xy 15.769032 -133.8025)
(xy 15.880815 -133.780265) (xy 15.992598 -133.8025) (xy 16.32367 -133.868354) (xy 16.427235 -133.937554) (xy 16.68572 -133.679069)
(xy 17.066126 -133.5215) (xy 17.477874 -133.5215) (xy 17.85828 -133.679069) (xy 17.975711 -133.7965) (xy 20.386199 -133.7965)
(xy 28.544543 -125.638154) (xy 28.586941 -125.574701) (xy 28.650394 -125.532303) (xy 28.650396 -125.532301) (xy 28.68545 -125.508879)
(xy 30.282303 -123.912024) (xy 30.324701 -123.848571) (xy 30.388154 -123.806173) (xy 30.388156 -123.806171) (xy 30.426832 -123.780329)
(xy 30.576093 -123.680596) (xy 30.762678 -123.643482) (xy 30.787466 -123.583638) (xy 31.191138 -123.179966) (xy 31.718561 -122.9615)
(xy 32.289439 -122.9615) (xy 32.816862 -123.179966) (xy 33.220534 -123.583638) (xy 33.439 -124.111061) (xy 33.439 -124.681939)
(xy 33.220534 -125.209362) (xy 32.816862 -125.613034) (xy 32.289439 -125.8315) (xy 32.138079 -125.8315) (xy 31.366533 -126.603045)
(xy 31.382337 -126.6825) (xy 31.365 -126.769661) (xy 31.365 -126.769665) (xy 31.313652 -127.02781) (xy 31.253723 -127.1175)
(xy 31.167424 -127.246655) (xy 31.167423 -127.246656) (xy 31.118049 -127.320549) (xy 31.044156 -127.369922) (xy 30.871079 -127.543)
(xy 30.979657 -127.543) (xy 31.433571 -127.731018) (xy 31.780982 -128.078429) (xy 31.87865 -128.314219) (xy 34.159018 -126.03385)
(xy 34.259018 -125.792429) (xy 34.606429 -125.445018) (xy 35.060343 -125.257) (xy 35.551657 -125.257) (xy 36.005571 -125.445018)
(xy 36.352982 -125.792429) (xy 36.541 -126.246343) (xy 36.541 -126.560308) (xy 64.932 -126.560308) (xy 64.932 -125.392692)
(xy 65.378827 -124.313956) (xy 66.204456 -123.488327) (xy 67.283192 -123.0415) (xy 68.450808 -123.0415) (xy 69.529544 -123.488327)
(xy 70.355173 -124.313956) (xy 70.802 -125.392692) (xy 70.802 -126.560308) (xy 70.355173 -127.639044) (xy 69.529544 -128.464673)
(xy 68.450808 -128.9115) (xy 67.283192 -128.9115) (xy 66.204456 -128.464673) (xy 65.378827 -127.639044) (xy 64.932 -126.560308)
(xy 36.541 -126.560308) (xy 36.541 -126.737657) (xy 36.352982 -127.191571) (xy 36.005571 -127.538982) (xy 35.76415 -127.638982)
(xy 17.51861 -145.884521) (xy 17.518608 -145.884524) (xy 15.29611 -148.107021) (xy 15.296108 -148.107024) (xy 15.259052 -148.14408)
(xy 15.544862 -148.262466) (xy 15.948534 -148.666138) (xy 16.096161 -149.02254) (xy 20.251673 -144.867027) (xy 20.294073 -144.803571)
(xy 20.545465 -144.635596) (xy 20.76715 -144.5915) (xy 20.767154 -144.5915) (xy 20.842002 -144.576612) (xy 20.91685 -144.5915)
(xy 28.252289 -144.5915) (xy 28.36972 -144.474069) (xy 28.750126 -144.3165) (xy 29.161874 -144.3165) (xy 29.54228 -144.474069)
(xy 29.833431 -144.76522) (xy 29.991 -145.145626) (xy 29.991 -145.434367) (xy 30.083626 -145.396) (xy 30.495374 -145.396)
(xy 30.87578 -145.553569) (xy 31.166931 -145.84472) (xy 31.3245 -146.225126) (xy 31.3245 -146.636874) (xy 31.166931 -147.01728)
(xy 30.87578 -147.308431) (xy 30.495374 -147.466) (xy 30.083626 -147.466) (xy 29.70322 -147.308431) (xy 29.585789 -147.191)
(xy 20.952302 -147.191) (xy 11.203363 -156.939939) (xy 19.3295 -156.939939) (xy 19.3295 -156.369061) (xy 19.547966 -155.841638)
(xy 19.951638 -155.437966) (xy 20.479061 -155.2195) (xy 21.049939 -155.2195) (xy 21.577362 -155.437966) (xy 21.981034 -155.841638)
(xy 22.173155 -156.305461) (xy 26.992596 -156.305461) (xy 27.153459 -155.917077) (xy 27.529366 -155.502111) (xy 28.035459 -155.262586)
(xy 28.2575 -155.383871) (xy 28.2575 -156.5275) (xy 28.5115 -156.5275) (xy 28.5115 -155.383871) (xy 28.733541 -155.262586)
(xy 29.239634 -155.502111) (xy 29.615541 -155.917077) (xy 29.776404 -156.305461) (xy 29.654415 -156.5275) (xy 28.5115 -156.5275)
(xy 28.2575 -156.5275) (xy 27.114585 -156.5275) (xy 26.992596 -156.305461) (xy 22.173155 -156.305461) (xy 22.1995 -156.369061)
(xy 22.1995 -156.939939) (xy 22.173156 -157.003539) (xy 26.992596 -157.003539) (xy 27.114585 -156.7815) (xy 28.2575 -156.7815)
(xy 28.2575 -157.925129) (xy 28.5115 -157.925129) (xy 28.5115 -156.7815) (xy 29.654415 -156.7815) (xy 29.776404 -157.003539)
(xy 29.615541 -157.391923) (xy 29.239634 -157.806889) (xy 28.733541 -158.046414) (xy 28.5115 -157.925129) (xy 28.2575 -157.925129)
(xy 28.035459 -158.046414) (xy 27.529366 -157.806889) (xy 27.153459 -157.391923) (xy 26.992596 -157.003539) (xy 22.173156 -157.003539)
(xy 21.981034 -157.467362) (xy 21.577362 -157.871034) (xy 21.049939 -158.0895) (xy 20.479061 -158.0895) (xy 19.951638 -157.871034)
(xy 19.547966 -157.467362) (xy 19.3295 -156.939939) (xy 11.203363 -156.939939) (xy 9.035831 -159.10747) (xy 8.993429 -159.170929)
(xy 8.868741 -159.254243) (xy 36.581 -159.254243) (xy 36.581 -158.245757) (xy 36.96693 -157.314038) (xy 37.680038 -156.60093)
(xy 38.611757 -156.215) (xy 39.620243 -156.215) (xy 40.551962 -156.60093) (xy 41.26507 -157.314038) (xy 41.651 -158.245757)
(xy 41.651 -158.305439) (xy 44.51 -158.305439) (xy 44.51 -157.734561) (xy 44.728466 -157.207138) (xy 45.132138 -156.803466)
(xy 45.261216 -156.75) (xy 45.132138 -156.696534) (xy 44.728466 -156.292862) (xy 44.51 -155.765439) (xy 44.51 -155.194561)
(xy 44.728466 -154.667138) (xy 45.132138 -154.263466) (xy 45.261216 -154.21) (xy 45.132138 -154.156534) (xy 44.728466 -153.752862)
(xy 44.51 -153.225439) (xy 44.51 -152.654561) (xy 44.728466 -152.127138) (xy 45.132138 -151.723466) (xy 45.659561 -151.505)
(xy 46.230439 -151.505) (xy 46.757862 -151.723466) (xy 47.161534 -152.127138) (xy 47.215 -152.256216) (xy 47.268466 -152.127138)
(xy 47.672138 -151.723466) (xy 48.199561 -151.505) (xy 48.770439 -151.505) (xy 49.297862 -151.723466) (xy 49.701534 -152.127138)
(xy 49.755 -152.256216) (xy 49.808466 -152.127138) (xy 50.212138 -151.723466) (xy 50.739561 -151.505) (xy 51.310439 -151.505)
(xy 51.837862 -151.723466) (xy 52.241534 -152.127138) (xy 52.295 -152.256216) (xy 52.348466 -152.127138) (xy 52.752138 -151.723466)
(xy 53.279561 -151.505) (xy 53.850439 -151.505) (xy 54.377862 -151.723466) (xy 54.781534 -152.127138) (xy 54.835 -152.256216)
(xy 54.888466 -152.127138) (xy 55.292138 -151.723466) (xy 55.819561 -151.505) (xy 56.390439 -151.505) (xy 56.759999 -151.658077)
(xy 56.759999 -150.067033) (xy 56.745111 -149.992186) (xy 56.749402 -149.970613) (xy 56.717069 -149.93828) (xy 56.5595 -149.557874)
(xy 56.5595 -149.146126) (xy 56.717069 -148.76572) (xy 57.00822 -148.474569) (xy 57.388626 -148.317) (xy 57.800374 -148.317)
(xy 58.18078 -148.474569) (xy 58.217023 -148.510812) (xy 58.531626 -148.3805) (xy 58.943374 -148.3805) (xy 59.32378 -148.538069)
(xy 59.614931 -148.82922) (xy 59.7725 -149.209626) (xy 59.7725 -149.621374) (xy 59.614931 -150.00178) (xy 59.4975 -150.119211)
(xy 59.4975 -151.763104) (xy 59.861534 -152.127138) (xy 59.915 -152.256216) (xy 59.968466 -152.127138) (xy 60.372138 -151.723466)
(xy 60.899561 -151.505) (xy 61.470439 -151.505) (xy 61.997862 -151.723466) (xy 62.401534 -152.127138) (xy 62.455 -152.256216)
(xy 62.508466 -152.127138) (xy 62.912138 -151.723466) (xy 63.439561 -151.505) (xy 64.010439 -151.505) (xy 64.537862 -151.723466)
(xy 64.941534 -152.127138) (xy 64.995 -152.256216) (xy 65.048466 -152.127138) (xy 65.452138 -151.723466) (xy 65.979561 -151.505)
(xy 66.550439 -151.505) (xy 67.077862 -151.723466) (xy 67.286651 -151.932255) (xy 67.976861 -151.932255) (xy 68.050995 -151.686136)
(xy 68.588223 -151.493035) (xy 69.158454 -151.520222) (xy 69.559005 -151.686136) (xy 69.633139 -151.932255) (xy 68.805 -152.760395)
(xy 67.976861 -151.932255) (xy 67.286651 -151.932255) (xy 67.481534 -152.127138) (xy 67.528525 -152.240583) (xy 67.551136 -152.185995)
(xy 67.797255 -152.111861) (xy 68.625395 -152.94) (xy 68.984605 -152.94) (xy 69.812745 -152.111861) (xy 70.058864 -152.185995)
(xy 70.251965 -152.723223) (xy 70.224778 -153.293454) (xy 70.058864 -153.694005) (xy 69.812745 -153.768139) (xy 68.984605 -152.94)
(xy 68.625395 -152.94) (xy 67.797255 -153.768139) (xy 67.551136 -153.694005) (xy 67.530126 -153.635552) (xy 67.481534 -153.752862)
(xy 67.077862 -154.156534) (xy 66.948784 -154.21) (xy 67.077862 -154.263466) (xy 67.481534 -154.667138) (xy 67.535 -154.796216)
(xy 67.588466 -154.667138) (xy 67.992138 -154.263466) (xy 68.105583 -154.216475) (xy 68.050995 -154.193864) (xy 67.976861 -153.947745)
(xy 68.805 -153.119605) (xy 69.633139 -153.947745) (xy 69.559005 -154.193864) (xy 69.500552 -154.214874) (xy 69.617862 -154.263466)
(xy 70.021534 -154.667138) (xy 70.24 -155.194561) (xy 70.24 -155.765439) (xy 70.021534 -156.292862) (xy 69.617862 -156.696534)
(xy 69.090439 -156.915) (xy 68.519561 -156.915) (xy 67.992138 -156.696534) (xy 67.588466 -156.292862) (xy 67.535 -156.163784)
(xy 67.481534 -156.292862) (xy 67.077862 -156.696534) (xy 66.550439 -156.915) (xy 65.979561 -156.915) (xy 65.452138 -156.696534)
(xy 65.048466 -156.292862) (xy 64.995 -156.163784) (xy 64.941534 -156.292862) (xy 64.537862 -156.696534) (xy 64.010439 -156.915)
(xy 63.439561 -156.915) (xy 62.912138 -156.696534) (xy 62.508466 -156.292862) (xy 62.455 -156.163784) (xy 62.401534 -156.292862)
(xy 61.997862 -156.696534) (xy 61.470439 -156.915) (xy 60.899561 -156.915) (xy 60.372138 -156.696534) (xy 59.968466 -156.292862)
(xy 59.915 -156.163784) (xy 59.861534 -156.292862) (xy 59.457862 -156.696534) (xy 58.930439 -156.915) (xy 58.359561 -156.915)
(xy 57.832138 -156.696534) (xy 57.428466 -156.292862) (xy 57.375 -156.163784) (xy 57.321534 -156.292862) (xy 56.917862 -156.696534)
(xy 56.788784 -156.75) (xy 56.917862 -156.803466) (xy 57.321534 -157.207138) (xy 57.54 -157.734561) (xy 57.54 -158.305439)
(xy 57.321534 -158.832862) (xy 56.917862 -159.236534) (xy 56.875109 -159.254243) (xy 73.03 -159.254243) (xy 73.03 -158.245757)
(xy 73.41593 -157.314038) (xy 74.129038 -156.60093) (xy 75.060757 -156.215) (xy 76.069243 -156.215) (xy 77.000962 -156.60093)
(xy 77.71407 -157.314038) (xy 78.1 -158.245757) (xy 78.1 -159.254243) (xy 77.71407 -160.185962) (xy 77.420158 -160.479874)
(xy 82.785 -160.479874) (xy 82.785 -160.068126) (xy 82.942569 -159.68772) (xy 83.06 -159.570289) (xy 83.060001 -157.104212)
(xy 82.942569 -156.98678) (xy 82.785 -156.606374) (xy 82.785 -156.194626) (xy 82.942569 -155.81422) (xy 83.23372 -155.523069)
(xy 83.614126 -155.3655) (xy 84.025874 -155.3655) (xy 84.40628 -155.523069) (xy 84.697431 -155.81422) (xy 84.855 -156.194626)
(xy 84.855 -156.606374) (xy 84.697431 -156.98678) (xy 84.58 -157.104211) (xy 84.58 -159.570289) (xy 84.697431 -159.68772)
(xy 84.855 -160.068126) (xy 84.855 -160.479874) (xy 84.697431 -160.86028) (xy 84.40628 -161.151431) (xy 84.025874 -161.309)
(xy 83.614126 -161.309) (xy 83.23372 -161.151431) (xy 82.942569 -160.86028) (xy 82.785 -160.479874) (xy 77.420158 -160.479874)
(xy 77.000962 -160.89907) (xy 76.069243 -161.285) (xy 75.060757 -161.285) (xy 74.129038 -160.89907) (xy 73.41593 -160.185962)
(xy 73.03 -159.254243) (xy 56.875109 -159.254243) (xy 56.390439 -159.455) (xy 55.819561 -159.455) (xy 55.292138 -159.236534)
(xy 54.888466 -158.832862) (xy 54.835 -158.703784) (xy 54.781534 -158.832862) (xy 54.377862 -159.236534) (xy 53.850439 -159.455)
(xy 53.279561 -159.455) (xy 52.752138 -159.236534) (xy 52.348466 -158.832862) (xy 52.295 -158.703784) (xy 52.241534 -158.832862)
(xy 51.837862 -159.236534) (xy 51.310439 -159.455) (xy 50.739561 -159.455) (xy 50.212138 -159.236534) (xy 49.808466 -158.832862)
(xy 49.755 -158.703784) (xy 49.701534 -158.832862) (xy 49.297862 -159.236534) (xy 48.770439 -159.455) (xy 48.199561 -159.455)
(xy 47.672138 -159.236534) (xy 47.268466 -158.832862) (xy 47.215 -158.703784) (xy 47.161534 -158.832862) (xy 46.757862 -159.236534)
(xy 46.230439 -159.455) (xy 45.659561 -159.455) (xy 45.132138 -159.236534) (xy 44.728466 -158.832862) (xy 44.51 -158.305439)
(xy 41.651 -158.305439) (xy 41.651 -159.254243) (xy 41.26507 -160.185962) (xy 40.551962 -160.89907) (xy 39.620243 -161.285)
(xy 38.611757 -161.285) (xy 37.680038 -160.89907) (xy 36.96693 -160.185962) (xy 36.581 -159.254243) (xy 8.868741 -159.254243)
(xy 8.742037 -159.338904) (xy 8.520352 -159.383) (xy 8.520347 -159.383) (xy 8.4455 -159.397888) (xy 8.370653 -159.383)
(xy 6.170846 -159.383) (xy 6.095999 -159.397888) (xy 6.021152 -159.383) (xy 6.021148 -159.383) (xy 5.799463 -159.338904)
(xy 5.799461 -159.338903) (xy 5.799462 -159.338903) (xy 5.611526 -159.213329) (xy 5.611524 -159.213327) (xy 5.548071 -159.170929)
(xy 5.505673 -159.107476) (xy 3.643028 -157.244829) (xy 3.579572 -157.202429) (xy 3.537172 -157.138973) (xy 3.537171 -157.138972)
(xy 3.411597 -156.951037) (xy 3.352612 -156.6545) (xy 3.367501 -156.579648) (xy 3.3675 -143.537634) (xy 3.352612 -143.462787)
(xy 3.3675 -143.38794) (xy 3.3675 -143.387936) (xy 3.411596 -143.166251) (xy 3.579571 -142.914858) (xy 3.64303 -142.872456)
(xy 5.23446 -141.281024) (xy 5.276858 -141.217571) (xy 5.308636 -141.196338) (xy 5.535414 -140.648847) (xy 5.995347 -140.188914)
(xy 6.596278 -139.94) (xy 7.246722 -139.94) (xy 7.847653 -140.188914) (xy 8.1935 -140.534761) (xy 8.1935 -140.268802)
(xy 7.832883 -139.908185) (xy 7.69107 -139.813428) (xy 7.64867 -139.749972) (xy 7.502678 -139.60398) (xy 7.246722 -139.71)
(xy 6.596278 -139.71) (xy 5.995347 -139.461086) (xy 5.535414 -139.001153) (xy 5.2865 -138.400222) (xy 5.2865 -137.749778)
(xy 5.535414 -137.148847) (xy 5.995347 -136.688914) (xy 6.596278 -136.44) (xy 7.246722 -136.44) (xy 7.847653 -136.688914)
(xy 8.307586 -137.148847) (xy 8.5565 -137.749778) (xy 8.5565 -138.400222) (xy 8.524874 -138.476573) (xy 8.671116 -138.622814)
(xy 8.812928 -138.71757) (xy 8.855329 -138.781028) (xy 9.437976 -139.363673) (xy 9.501429 -139.406071) (xy 9.543827 -139.469524)
(xy 9.543829 -139.469526) (xy 9.669403 -139.657462) (xy 9.669404 -139.657463) (xy 9.7135 -139.879148) (xy 9.7135 -139.879152)
(xy 9.728388 -139.953999) (xy 9.7135 -140.028846) (xy 9.7135 -141.509959) (xy 13.340086 -141.509959) (xy 13.579611 -141.003866)
(xy 13.994577 -140.627959) (xy 14.382961 -140.467096) (xy 14.605 -140.589085) (xy 14.605 -141.732) (xy 13.461371 -141.732)
(xy 13.340086 -141.509959) (xy 9.7135 -141.509959) (xy 9.7135 -141.937154) (xy 9.728388 -142.012002) (xy 9.7135 -142.08685)
(xy 9.7135 -142.086854) (xy 9.669404 -142.308539) (xy 9.669404 -142.30854) (xy 9.543829 -142.496475) (xy 9.501429 -142.559931)
(xy 9.437973 -142.602331) (xy 8.099521 -143.940782) (xy 8.307586 -144.148847) (xy 8.5565 -144.749778) (xy 8.5565 -145.400222)
(xy 8.307586 -146.001153) (xy 7.847653 -146.461086) (xy 7.246722 -146.71) (xy 6.596278 -146.71) (xy 5.995347 -146.461086)
(xy 5.586 -146.051739) (xy 5.586 -147.422468) (xy 5.948573 -147.422468) (xy 6.047236 -147.155613) (xy 6.656961 -146.929092)
(xy 7.30696 -146.953144) (xy 7.795764 -147.155613) (xy 7.894427 -147.422468) (xy 6.9215 -148.395395) (xy 5.948573 -147.422468)
(xy 5.586 -147.422468) (xy 5.586 -147.669721) (xy 5.768968 -147.602073) (xy 6.741895 -148.575) (xy 7.101105 -148.575)
(xy 8.074032 -147.602073) (xy 8.340887 -147.700736) (xy 8.567408 -148.310461) (xy 8.543356 -148.96046) (xy 8.340887 -149.449264)
(xy 8.074032 -149.547927) (xy 7.101105 -148.575) (xy 6.741895 -148.575) (xy 5.768968 -149.547927) (xy 5.586 -149.480279)
(xy 5.586 -149.727532) (xy 5.948573 -149.727532) (xy 6.9215 -148.754605) (xy 7.894427 -149.727532) (xy 7.795764 -149.994387)
(xy 7.186039 -150.220908) (xy 6.53604 -150.196856) (xy 6.047236 -149.994387) (xy 5.948573 -149.727532) (xy 5.586 -149.727532)
(xy 5.586 -151.098261) (xy 5.995347 -150.688914) (xy 6.596278 -150.44) (xy 7.246722 -150.44) (xy 7.397086 -150.502283)
(xy 9.174976 -148.724392) (xy 9.197582 -148.709287) (xy 12.611476 -145.295392) (xy 12.611478 -145.29539) (xy 14.262476 -143.644391)
(xy 14.262482 -143.644387) (xy 14.612869 -143.294) (xy 14.604998 -143.294) (xy 14.604998 -143.128916) (xy 14.382961 -143.250904)
(xy 13.994577 -143.090041) (xy 13.579611 -142.714134) (xy 13.340086 -142.208041) (xy 13.461371 -141.986) (xy 14.605 -141.986)
(xy 14.605 -142.006) (xy 14.859 -142.006) (xy 14.859 -141.986) (xy 14.879 -141.986) (xy 14.879 -141.732)
(xy 14.859 -141.732) (xy 14.859 -140.589085) (xy 15.081039 -140.467096) (xy 15.469423 -140.627959) (xy 15.884389 -141.003866)
(xy 16.123914 -141.509959) (xy 16.00263 -141.731998) (xy 16.167 -141.731998) (xy 16.167 -141.739869) (xy 19.596476 -138.310392)
(xy 19.596479 -138.31039) (xy 21.468368 -136.438501) (xy 18.503485 -136.438501) (xy 18.280789 -136.771789) (xy 17.905355 -137.022646)
(xy 17.574283 -137.0885) (xy 17.008598 -137.0885) (xy 16.896815 -137.110735) (xy 16.785032 -137.0885) (xy 16.45396 -137.022646)
(xy 16.078526 -136.771789) (xy 16.015204 -136.677021) (xy 15.410684 -136.0725) (xy 4.937783 -136.0725) (xy 4.826 -136.094735)
(xy 4.714217 -136.0725) (xy 4.383145 -136.006646) (xy 4.007711 -135.755789) (xy 3.944389 -135.661021) (xy 0.324892 -132.041523)
(xy 0.137354 -131.760854) (xy 0.049265 -131.318) (xy 0.137354 -130.875146) (xy 0.388212 -130.499712) (xy 0.763646 -130.248854)
(xy 1.2065 -130.160765) (xy 1.649354 -130.248854) (xy 1.930023 -130.436392) (xy 5.296132 -133.8025) (xy 5.509639 -133.8025)
(xy 5.448343 -133.710765) (xy 5.39906 -133.463) (xy 5.39906 -131.713) (xy 5.448343 -131.465235) (xy 5.588691 -131.255191)
(xy 5.798735 -131.114843) (xy 6.0465 -131.06556) (xy 7.7965 -131.06556) (xy 8.044265 -131.114843) (xy 8.254309 -131.255191)
(xy 8.394657 -131.465235) (xy 8.430116 -131.6435) (xy 9.753369 -131.6435) (xy 12.644501 -128.752367) (xy 12.644501 -127.414954)
(xy 12.502289 -127.627789) (xy 12.407521 -127.691111) (xy 10.096613 -130.002018) (xy 10.033289 -130.096789) (xy 9.657855 -130.347646)
(xy 9.326783 -130.4135) (xy 9.215 -130.435735) (xy 9.103217 -130.4135) (xy 7.908239 -130.4135) (xy 7.847653 -130.474086)
(xy 7.246722 -130.723) (xy 6.596278 -130.723) (xy 5.995347 -130.474086) (xy 5.535414 -130.014153) (xy 5.2865 -129.413222)
(xy 5.2865 -128.762778) (xy 5.535414 -128.161847) (xy 5.995347 -127.701914) (xy 6.596278 -127.453) (xy 7.246722 -127.453)
(xy 7.847653 -127.701914) (xy 8.289239 -128.1435) (xy 8.744869 -128.1435) (xy 10.549001 -126.339367) (xy 10.549 -115.722632)
(xy 7.15048 -112.324111) (xy 7.055712 -112.260789) (xy 6.890813 -112.014) (xy 6.804854 -111.885354) (xy 6.716765 -111.4425)
(xy 6.739001 -111.330712) (xy 6.739001 -110.892031) (xy 6.388962 -111.24207) (xy 5.457243 -111.628) (xy 4.448757 -111.628)
(xy 3.517038 -111.24207) (xy 2.80393 -110.528962) (xy 2.418 -109.597243) (xy 2.418 -108.588757) (xy 2.80393 -107.657038)
(xy 3.517038 -106.94393) (xy 4.448757 -106.558) (xy 5.457243 -106.558) (xy 6.388962 -106.94393) (xy 6.739001 -107.293969)
(xy 6.739 -100.187783) (xy 6.716765 -100.076) (xy 6.746777 -99.925119) (xy 6.804854 -99.633146) (xy 7.055711 -99.257711)
(xy 7.150482 -99.194387) (xy 9.705868 -96.639) (xy 9.275482 -96.639) (xy 9.143309 -96.836809) (xy 8.933265 -96.977157)
(xy 8.6855 -97.02644) (xy 6.9355 -97.02644) (xy 6.687735 -96.977157) (xy 6.477691 -96.836809) (xy 6.337343 -96.626765)
(xy 6.28806 -96.379) (xy 6.28806 -94.629) (xy 6.337343 -94.381235) (xy 6.477691 -94.171191) (xy 6.687735 -94.030843)
(xy 6.9355 -93.98156) (xy 8.6855 -93.98156) (xy 8.933265 -94.030843) (xy 9.143309 -94.171191) (xy 9.275482 -94.369)
(xy 14.896869 -94.369) (xy 22.8045 -86.461368) (xy 22.8045 -86.131055) (xy 22.758021 -86.162111) (xy 16.248613 -92.671518)
(xy 16.185289 -92.766289) (xy 15.809855 -93.017146) (xy 15.478783 -93.083) (xy 15.367 -93.105235) (xy 15.255217 -93.083)
(xy 10.116315 -93.083) (xy 9.834783 -93.139) (xy 8.987739 -93.139) (xy 8.736653 -93.390086) (xy 8.135722 -93.639)
(xy 7.485278 -93.639) (xy 6.884347 -93.390086) (xy 6.424414 -92.930153) (xy 6.1755 -92.329222) (xy 6.1755 -91.678778)
(xy 6.424414 -91.077847) (xy 6.884347 -90.617914) (xy 7.485278 -90.369) (xy 8.135722 -90.369) (xy 8.736653 -90.617914)
(xy 8.987739 -90.869) (xy 9.385685 -90.869) (xy 9.667217 -90.813) (xy 14.896869 -90.813) (xy 15.414456 -90.295413)
(xy 15.051146 -90.223146) (xy 14.675712 -89.972289) (xy 14.424855 -89.596855) (xy 14.359001 -89.265783) (xy 14.359 -58.760354)
(xy 14.307735 -58.750157) (xy 14.104181 -58.614146) (xy 14.077257 -58.654441) (xy 13.899289 -58.920789) (xy 13.804521 -58.984111)
(xy 12.375113 -60.413518) (xy 12.311789 -60.508289) (xy 11.936355 -60.759146) (xy 11.605283 -60.825) (xy 11.4935 -60.847235)
(xy 11.381717 -60.825) (xy 9.496985 -60.825) (xy 9.474157 -60.939765) (xy 9.333809 -61.149809) (xy 9.123765 -61.290157)
(xy 8.876 -61.33944) (xy 7.126 -61.33944) (xy 6.878235 -61.290157) (xy 6.668191 -61.149809) (xy 6.527843 -60.939765)
(xy 6.47856 -60.692) (xy 6.47856 -58.942) (xy 6.527843 -58.694235) (xy 6.668191 -58.484191) (xy 6.878235 -58.343843)
(xy 7.126 -58.29456) (xy 8.876 -58.29456) (xy 9.123765 -58.343843) (xy 9.333809 -58.484191) (xy 9.381122 -58.555)
(xy 11.023369 -58.555) (xy 11.946 -57.632368) (xy 11.946001 -55.102788) (xy 11.927808 -55.011324) (xy 10.025613 -56.913518)
(xy 9.962289 -57.008289) (xy 9.586855 -57.259146) (xy 9.317519 -57.31272) (xy 8.927153 -57.703086) (xy 8.326222 -57.952)
(xy 7.675778 -57.952) (xy 7.074847 -57.703086) (xy 6.614914 -57.243153) (xy 6.366 -56.642222) (xy 6.366 -55.991778)
(xy 6.614914 -55.390847) (xy 7.074847 -54.930914) (xy 7.675778 -54.682) (xy 8.326222 -54.682) (xy 8.835796 -54.893073)
(xy 11.78239 -51.946478) (xy 11.845712 -51.85171) (xy 12.181796 -51.627146) (xy 12.221146 -51.600853) (xy 12.664 -51.512764)
(xy 12.667424 -51.513445) (xy 12.834387 -51.346482) (xy 12.897711 -51.251711) (xy 13.228819 -51.030472) (xy 13.273145 -51.000854)
(xy 13.716 -50.912765) (xy 13.827783 -50.935) (xy 28.912653 -50.935) (xy 29.024436 -50.912765) (xy 29.136219 -50.935)
(xy 29.467291 -51.000854) (xy 29.842725 -51.251711) (xy 29.906049 -51.346482) (xy 33.717521 -55.157953) (xy 33.812289 -55.221275)
(xy 34.063146 -55.596709) (xy 34.129 -55.927781) (xy 34.151235 -56.039563) (xy 34.129 -56.151345) (xy 34.129 -56.340038)
(xy 34.210616 -56.421654) (xy 34.2345 -56.479316) (xy 34.234501 -43.512717) (xy 34.300355 -43.181645) (xy 34.41218 -43.014288)
(xy 34.428569 -42.97472) (xy 34.458853 -42.944436) (xy 34.551212 -42.806211) (xy 34.689437 -42.713852) (xy 34.71972 -42.683569)
(xy 34.752479 -42.67) (xy 34.426936 -42.67) (xy 34.352089 -42.684888) (xy 34.277242 -42.67) (xy 34.277238 -42.67)
(xy 34.055553 -42.625904) (xy 34.055551 -42.625903) (xy 34.055552 -42.625903) (xy 33.867616 -42.500329) (xy 33.867614 -42.500327)
(xy 33.804161 -42.457929) (xy 33.761763 -42.394476) (xy 32.345029 -40.97774) (xy 32.281571 -40.935339) (xy 32.113596 -40.683947)
(xy 32.0695 -40.462262) (xy 32.0695 -40.462257) (xy 32.054612 -40.38741) (xy 32.057764 -40.371565) (xy 31.054199 -39.368)
(xy 14.284803 -39.368) (xy 13.333 -40.319801) (xy 13.333 -41.327154) (xy 13.347888 -41.402001) (xy 13.333 -41.476848)
(xy 13.333 -41.476852) (xy 13.291008 -41.687961) (xy 15.054596 -41.687961) (xy 15.215459 -41.299577) (xy 15.591366 -40.884611)
(xy 16.097459 -40.645086) (xy 16.3195 -40.766371) (xy 16.3195 -41.91) (xy 16.5735 -41.91) (xy 16.5735 -40.766371)
(xy 16.795541 -40.645086) (xy 17.301634 -40.884611) (xy 17.677541 -41.299577) (xy 17.838404 -41.687961) (xy 17.716415 -41.91)
(xy 16.5735 -41.91) (xy 16.3195 -41.91) (xy 15.176585 -41.91) (xy 15.054596 -41.687961) (xy 13.291008 -41.687961)
(xy 13.288904 -41.698537) (xy 13.197188 -41.8358) (xy 13.163329 -41.886474) (xy 13.163327 -41.886476) (xy 13.120929 -41.949929)
(xy 13.057476 -41.992327) (xy 12.663764 -42.386039) (xy 15.054596 -42.386039) (xy 15.176585 -42.164) (xy 16.3195 -42.164)
(xy 16.3195 -43.307629) (xy 16.5735 -43.307629) (xy 16.5735 -42.164) (xy 17.716415 -42.164) (xy 17.803461 -42.322439)
(xy 22.6315 -42.322439) (xy 22.6315 -41.751561) (xy 22.849966 -41.224138) (xy 23.253638 -40.820466) (xy 23.781061 -40.602)
(xy 24.351939 -40.602) (xy 24.879362 -40.820466) (xy 25.283034 -41.224138) (xy 25.5015 -41.751561) (xy 25.5015 -42.322439)
(xy 25.283034 -42.849862) (xy 24.879362 -43.253534) (xy 24.351939 -43.472) (xy 23.781061 -43.472) (xy 23.253638 -43.253534)
(xy 22.849966 -42.849862) (xy 22.6315 -42.322439) (xy 17.803461 -42.322439) (xy 17.838404 -42.386039) (xy 17.677541 -42.774423)
(xy 17.301634 -43.189389) (xy 16.795541 -43.428914) (xy 16.5735 -43.307629) (xy 16.3195 -43.307629) (xy 16.097459 -43.428914)
(xy 15.591366 -43.189389) (xy 15.215459 -42.774423) (xy 15.054596 -42.386039) (xy 12.663764 -42.386039) (xy 9.68483 -45.364971)
(xy 9.642428 -45.42843) (xy 9.616842 -45.445526) (xy 9.636 -45.491778) (xy 9.636 -46.142222) (xy 9.387086 -46.743153)
(xy 8.927153 -47.203086) (xy 8.326222 -47.452) (xy 7.675778 -47.452) (xy 7.074847 -47.203086) (xy 6.614914 -46.743153)
(xy 6.366 -46.142222) (xy 6.366 -45.635802) (xy 2.35958 -49.642222) (xy 6.366 -49.642222) (xy 6.366 -48.991778)
(xy 6.614914 -48.390847) (xy 7.074847 -47.930914) (xy 7.675778 -47.682) (xy 8.326222 -47.682) (xy 8.927153 -47.930914)
(xy 9.387086 -48.390847) (xy 9.636 -48.991778) (xy 9.636 -49.642222) (xy 9.387086 -50.243153) (xy 8.927153 -50.703086)
(xy 8.326222 -50.952) (xy 7.675778 -50.952) (xy 7.074847 -50.703086) (xy 6.614914 -50.243153) (xy 6.366 -49.642222)
(xy 2.35958 -49.642222) (xy 2.06983 -49.931971) (xy 2.027428 -49.99543) (xy 1.776036 -50.163405) (xy 1.554351 -50.207501)
(xy 1.554346 -50.207501) (xy 1.479499 -50.222389) (xy 1.404652 -50.207501) (xy 0.844159 -50.207501) (xy 0.750431 -50.43378)
(xy 0.45928 -50.724931) (xy 0.078874 -50.8825) (xy -0.265 -50.8825) (xy -0.265 -51.664468) (xy 7.028073 -51.664468)
(xy 7.126736 -51.397613) (xy 7.736461 -51.171092) (xy 8.38646 -51.195144) (xy 8.875264 -51.397613) (xy 8.973927 -51.664468)
(xy 8.001 -52.637395) (xy 7.028073 -51.664468) (xy -0.265 -51.664468) (xy -0.265 -53.081539) (xy 6.355092 -53.081539)
(xy 6.379144 -52.43154) (xy 6.581613 -51.942736) (xy 6.848468 -51.844073) (xy 7.821395 -52.817) (xy 8.180605 -52.817)
(xy 9.153532 -51.844073) (xy 9.420387 -51.942736) (xy 9.646908 -52.552461) (xy 9.622856 -53.20246) (xy 9.420387 -53.691264)
(xy 9.153532 -53.789927) (xy 8.180605 -52.817) (xy 7.821395 -52.817) (xy 6.848468 -53.789927) (xy 6.581613 -53.691264)
(xy 6.355092 -53.081539) (xy -0.265 -53.081539) (xy -0.265 -53.969532) (xy 7.028073 -53.969532) (xy 8.001 -52.996605)
(xy 8.973927 -53.969532) (xy 8.875264 -54.236387) (xy 8.265539 -54.462908) (xy 7.61554 -54.438856) (xy 7.126736 -54.236387)
(xy 7.028073 -53.969532) (xy -0.265 -53.969532) (xy -0.265 -67.052243) (xy 2.418 -67.052243) (xy 2.418 -66.043757)
(xy 2.80393 -65.112038) (xy 3.517038 -64.39893) (xy 4.448757 -64.013) (xy 5.457243 -64.013) (xy 6.388962 -64.39893)
(xy 7.10207 -65.112038) (xy 7.488 -66.043757) (xy 7.488 -67.052243) (xy 7.10207 -67.983962) (xy 6.388962 -68.69707)
(xy 5.457243 -69.083) (xy 4.448757 -69.083) (xy 3.517038 -68.69707) (xy 2.80393 -67.983962) (xy 2.418 -67.052243)
(xy -0.265 -67.052243) (xy -0.265 -78.329222) (xy 6.1755 -78.329222) (xy 6.1755 -77.678778) (xy 6.424414 -77.077847)
(xy 6.884347 -76.617914) (xy 7.485278 -76.369) (xy 8.135722 -76.369) (xy 8.736653 -76.617914) (xy 9.196586 -77.077847)
(xy 9.4455 -77.678778) (xy 9.4455 -78.329222) (xy 9.196586 -78.930153) (xy 8.736653 -79.390086) (xy 8.135722 -79.639)
(xy 7.485278 -79.639) (xy 6.884347 -79.390086) (xy 6.424414 -78.930153) (xy 6.1755 -78.329222) (xy -0.265 -78.329222)
(xy -0.265 -81.829222) (xy 6.1755 -81.829222) (xy 6.1755 -81.178778) (xy 6.424414 -80.577847) (xy 6.884347 -80.117914)
(xy 7.485278 -79.869) (xy 8.135722 -79.869) (xy 8.736653 -80.117914) (xy 9.196586 -80.577847) (xy 9.4455 -81.178778)
(xy 9.4455 -81.829222) (xy 9.196586 -82.430153) (xy 8.736653 -82.890086) (xy 8.135722 -83.139) (xy 7.485278 -83.139)
(xy 6.884347 -82.890086) (xy 6.424414 -82.430153) (xy 6.1755 -81.829222) (xy -0.265 -81.829222) (xy -0.265 -85.329222)
(xy 6.1755 -85.329222) (xy 6.1755 -84.678778) (xy 6.424414 -84.077847) (xy 6.884347 -83.617914) (xy 7.485278 -83.369)
(xy 8.135722 -83.369) (xy 8.736653 -83.617914) (xy 9.196586 -84.077847) (xy 9.4455 -84.678778) (xy 9.4455 -85.329222)
(xy 9.196586 -85.930153) (xy 8.736653 -86.390086) (xy 8.135722 -86.639) (xy 7.485278 -86.639) (xy 6.884347 -86.390086)
(xy 6.424414 -85.930153) (xy 6.1755 -85.329222) (xy -0.265 -85.329222) (xy -0.265 -87.351468) (xy 6.837573 -87.351468)
(xy 6.936236 -87.084613) (xy 7.545961 -86.858092) (xy 8.19596 -86.882144) (xy 8.684764 -87.084613) (xy 8.783427 -87.351468)
(xy 7.8105 -88.324395) (xy 6.837573 -87.351468) (xy -0.265 -87.351468) (xy -0.265 -88.768539) (xy 6.164592 -88.768539)
(xy 6.188644 -88.11854) (xy 6.391113 -87.629736) (xy 6.657968 -87.531073) (xy 7.630895 -88.504) (xy 7.990105 -88.504)
(xy 8.963032 -87.531073) (xy 9.229887 -87.629736) (xy 9.456408 -88.239461) (xy 9.432356 -88.88946) (xy 9.229887 -89.378264)
(xy 8.963032 -89.476927) (xy 7.990105 -88.504) (xy 7.630895 -88.504) (xy 6.657968 -89.476927) (xy 6.391113 -89.378264)
(xy 6.164592 -88.768539) (xy -0.265 -88.768539) (xy -0.265 -89.656532) (xy 6.837573 -89.656532) (xy 7.8105 -88.683605)
(xy 8.783427 -89.656532) (xy 8.684764 -89.923387) (xy 8.075039 -90.149908) (xy 7.42504 -90.125856) (xy 6.936236 -89.923387)
(xy 6.837573 -89.656532) (xy -0.265 -89.656532) (xy -0.265 -111.995) (xy 0.142374 -111.995) (xy 0.52278 -112.152569)
(xy 0.813931 -112.44372) (xy 0.9715 -112.824126) (xy 0.9715 -112.990199) (xy 3.394523 -115.413222) (xy 5.2865 -115.413222)
(xy 5.2865 -114.762778) (xy 5.535414 -114.161847) (xy 5.995347 -113.701914) (xy 6.596278 -113.453) (xy 7.246722 -113.453)
(xy 7.847653 -113.701914) (xy 8.307586 -114.161847) (xy 8.5565 -114.762778) (xy 8.5565 -115.413222) (xy 8.307586 -116.014153)
(xy 7.847653 -116.474086) (xy 7.246722 -116.723) (xy 6.596278 -116.723) (xy 5.995347 -116.474086) (xy 5.535414 -116.014153)
(xy 5.2865 -115.413222) (xy 3.394523 -115.413222) (xy 5.589281 -117.60798) (xy 5.995347 -117.201914) (xy 6.596278 -116.953)
(xy 7.246722 -116.953) (xy 7.847653 -117.201914) (xy 8.307586 -117.661847) (xy 8.5565 -118.262778) (xy 8.5565 -118.913222)
(xy 8.307586 -119.514153) (xy 7.847653 -119.974086) (xy 7.246722 -120.223) (xy 6.596278 -120.223) (xy 5.995347 -119.974086)
(xy 5.54725 -119.525989) (xy 5.436605 -119.50398) (xy 5.388462 -119.494404) (xy 5.214911 -119.37844) (xy 5.137071 -119.326429)
(xy 5.094671 -119.262973) (xy -0.103301 -114.065) (xy -0.265 -114.065) (xy -0.265 -122.413222) (xy 5.2865 -122.413222)
(xy 5.2865 -121.762778) (xy 5.535414 -121.161847) (xy 5.995347 -120.701914) (xy 6.596278 -120.453) (xy 7.246722 -120.453)
(xy 7.847653 -120.701914) (xy 8.307586 -121.161847) (xy 8.5565 -121.762778) (xy 8.5565 -122.413222) (xy 8.307586 -123.014153)
(xy 7.847653 -123.474086) (xy 7.246722 -123.723) (xy 6.596278 -123.723) (xy 5.995347 -123.474086) (xy 5.535414 -123.014153)
(xy 5.2865 -122.413222) (xy -0.265 -122.413222) (xy -0.265 -124.435468) (xy 5.948573 -124.435468) (xy 6.047236 -124.168613)
(xy 6.656961 -123.942092) (xy 7.30696 -123.966144) (xy 7.795764 -124.168613) (xy 7.894427 -124.435468) (xy 6.9215 -125.408395)
(xy 5.948573 -124.435468) (xy -0.265 -124.435468) (xy -0.265 -125.852539) (xy 5.275592 -125.852539) (xy 5.299644 -125.20254)
(xy 5.502113 -124.713736) (xy 5.768968 -124.615073) (xy 6.741895 -125.588) (xy 7.101105 -125.588) (xy 8.074032 -124.615073)
(xy 8.340887 -124.713736) (xy 8.567408 -125.323461) (xy 8.543356 -125.97346) (xy 8.340887 -126.462264) (xy 8.074032 -126.560927)
(xy 7.101105 -125.588) (xy 6.741895 -125.588) (xy 5.768968 -126.560927) (xy 5.502113 -126.462264) (xy 5.275592 -125.852539)
(xy -0.265 -125.852539) (xy -0.265 -126.740532) (xy 5.948573 -126.740532) (xy 6.9215 -125.767605) (xy 7.894427 -126.740532)
(xy 7.795764 -127.007387) (xy 7.186039 -127.233908) (xy 6.53604 -127.209856) (xy 6.047236 -127.007387) (xy 5.948573 -126.740532)
(xy -0.265 -126.740532) (xy -0.265 -159.97394) (xy 20.382545 -159.97394) (xy 20.465884 -159.720047) (xy 21.030306 -159.51441)
(xy 21.630458 -159.540421) (xy 22.064116 -159.720047) (xy 22.147455 -159.97394) (xy 21.265 -160.856395) (xy 20.382545 -159.97394)
(xy -0.265 -159.97394) (xy -0.265 -161.270694) (xy 19.74341 -161.270694) (xy 19.769421 -160.670542) (xy 19.949047 -160.236884)
(xy 20.20294 -160.153545) (xy 21.085395 -161.036) (xy 21.444605 -161.036) (xy 22.32706 -160.153545) (xy 22.475879 -160.202394)
(xy 22.484884 -160.180654) (xy 22.909654 -159.755884) (xy 23.464642 -159.526) (xy 24.065358 -159.526) (xy 24.620346 -159.755884)
(xy 24.765 -159.900538) (xy 24.909654 -159.755884) (xy 25.464642 -159.526) (xy 26.065358 -159.526) (xy 26.620346 -159.755884)
(xy 27.015 -160.150538) (xy 27.409654 -159.755884) (xy 27.964642 -159.526) (xy 28.565358 -159.526) (xy 29.120346 -159.755884)
(xy 29.545116 -160.180654) (xy 29.775 -160.735642) (xy 29.775 -161.336358) (xy 29.545116 -161.891346) (xy 29.120346 -162.316116)
(xy 28.565358 -162.546) (xy 27.964642 -162.546) (xy 27.409654 -162.316116) (xy 27.015 -161.921462) (xy 26.620346 -162.316116)
(xy 26.065358 -162.546) (xy 25.464642 -162.546) (xy 24.909654 -162.316116) (xy 24.765 -162.171462) (xy 24.620346 -162.316116)
(xy 24.065358 -162.546) (xy 23.464642 -162.546) (xy 22.909654 -162.316116) (xy 22.484884 -161.891346) (xy 22.475879 -161.869606)
(xy 22.32706 -161.918455) (xy 21.444605 -161.036) (xy 21.085395 -161.036) (xy 20.20294 -161.918455) (xy 19.949047 -161.835116)
(xy 19.74341 -161.270694) (xy -0.265 -161.270694) (xy -0.265 -167.000275) (xy 1.4946 -167.000275) (xy 1.4946 -165.454725)
(xy 2.086056 -164.026824) (xy 3.178924 -162.933956) (xy 4.606825 -162.3425) (xy 6.152375 -162.3425) (xy 7.580276 -162.933956)
(xy 8.673144 -164.026824) (xy 8.726551 -164.15576) (xy 16.135 -164.15576) (xy 16.135 -163.33624) (xy 16.448616 -162.579104)
(xy 17.028104 -161.999616) (xy 17.78524 -161.686) (xy 18.60476 -161.686) (xy 19.361896 -161.999616) (xy 19.46034 -162.09806)
(xy 20.382545 -162.09806) (xy 21.265 -161.215605) (xy 22.147455 -162.09806) (xy 22.064116 -162.351953) (xy 21.499694 -162.55759)
(xy 20.899542 -162.531579) (xy 20.465884 -162.351953) (xy 20.382545 -162.09806) (xy 19.46034 -162.09806) (xy 19.941384 -162.579104)
(xy 20.255 -163.33624) (xy 20.255 -164.15576) (xy 29.275 -164.15576) (xy 29.275 -163.33624) (xy 29.588616 -162.579104)
(xy 30.168104 -161.999616) (xy 30.92524 -161.686) (xy 31.74476 -161.686) (xy 32.501896 -161.999616) (xy 33.081384 -162.579104)
(xy 33.395 -163.33624) (xy 33.395 -164.15576) (xy 33.081384 -164.912896) (xy 32.501896 -165.492384) (xy 31.74476 -165.806)
(xy 30.92524 -165.806) (xy 30.168104 -165.492384) (xy 29.588616 -164.912896) (xy 29.275 -164.15576) (xy 20.255 -164.15576)
(xy 19.941384 -164.912896) (xy 19.361896 -165.492384) (xy 18.60476 -165.806) (xy 17.78524 -165.806) (xy 17.028104 -165.492384)
(xy 16.448616 -164.912896) (xy 16.135 -164.15576) (xy 8.726551 -164.15576) (xy 9.2646 -165.454725) (xy 9.2646 -166.223)
(xy 81.85906 -166.223) (xy 81.85906 -163.723) (xy 81.908343 -163.475235) (xy 82.048691 -163.265191) (xy 82.258735 -163.124843)
(xy 82.5065 -163.07556) (xy 85.0065 -163.07556) (xy 85.254265 -163.124843) (xy 85.464309 -163.265191) (xy 85.604657 -163.475235)
(xy 85.637366 -163.63968) (xy 87.682785 -163.63968) (xy 87.812033 -163.346877) (xy 88.512306 -163.078612) (xy 89.261935 -163.09875)
(xy 89.587009 -163.2334) (xy 96.81206 -163.2334) (xy 96.81206 -161.6834) (xy 96.861343 -161.435635) (xy 97.001691 -161.225591)
(xy 97.211735 -161.085243) (xy 97.4595 -161.03596) (xy 99.0095 -161.03596) (xy 99.257265 -161.085243) (xy 99.467309 -161.225591)
(xy 99.607657 -161.435635) (xy 99.65694 -161.6834) (xy 99.65694 -162.738867) (xy 101.8245 -162.738867) (xy 101.8245 -162.177933)
(xy 102.039159 -161.659699) (xy 102.435799 -161.263059) (xy 102.954033 -161.0484) (xy 103.514967 -161.0484) (xy 104.033201 -161.263059)
(xy 104.429841 -161.659699) (xy 104.6445 -162.177933) (xy 104.6445 -162.738867) (xy 104.429841 -163.257101) (xy 104.033201 -163.653741)
(xy 103.514967 -163.8684) (xy 102.954033 -163.8684) (xy 102.435799 -163.653741) (xy 102.039159 -163.257101) (xy 101.8245 -162.738867)
(xy 99.65694 -162.738867) (xy 99.65694 -163.2334) (xy 99.607657 -163.481165) (xy 99.467309 -163.691209) (xy 99.257265 -163.831557)
(xy 99.0095 -163.88084) (xy 97.4595 -163.88084) (xy 97.211735 -163.831557) (xy 97.001691 -163.691209) (xy 96.861343 -163.481165)
(xy 96.81206 -163.2334) (xy 89.587009 -163.2334) (xy 89.860967 -163.346877) (xy 89.990215 -163.63968) (xy 88.8365 -164.793395)
(xy 87.682785 -163.63968) (xy 85.637366 -163.63968) (xy 85.65394 -163.723) (xy 85.65394 -165.297194) (xy 86.942112 -165.297194)
(xy 86.96225 -164.547565) (xy 87.210377 -163.948533) (xy 87.50318 -163.819285) (xy 88.656895 -164.973) (xy 89.016105 -164.973)
(xy 90.16982 -163.819285) (xy 90.462623 -163.948533) (xy 90.730888 -164.648806) (xy 90.71075 -165.398435) (xy 90.462623 -165.997467)
(xy 90.16982 -166.126715) (xy 89.016105 -164.973) (xy 88.656895 -164.973) (xy 87.50318 -166.126715) (xy 87.210377 -165.997467)
(xy 86.942112 -165.297194) (xy 85.65394 -165.297194) (xy 85.65394 -166.223) (xy 85.637367 -166.30632) (xy 87.682785 -166.30632)
(xy 88.8365 -165.152605) (xy 89.990215 -166.30632) (xy 89.978924 -166.3319) (xy 110.410469 -166.3319) (xy 110.537365 -165.693955)
(xy 110.807515 -165.289647) (xy 115.087414 -161.009747) (xy 115.178631 -160.873231) (xy 115.384548 -160.735642) (xy 115.719454 -160.511864)
(xy 116.3574 -160.384969) (xy 116.518431 -160.417) (xy 117.772851 -160.417) (xy 117.610474 -160.349741) (xy 116.981759 -159.721026)
(xy 116.6415 -158.899569) (xy 116.6415 -158.010431) (xy 116.981759 -157.188974) (xy 117.610474 -156.560259) (xy 118.033586 -156.385)
(xy 117.756088 -156.385) (xy 117.219476 -156.162728) (xy 116.808772 -155.752024) (xy 116.5865 -155.215412) (xy 116.5865 -154.634588)
(xy 116.808772 -154.097976) (xy 117.219476 -153.687272) (xy 117.297387 -153.655) (xy 117.219476 -153.622728) (xy 116.808772 -153.212024)
(xy 116.5865 -152.675412) (xy 116.5865 -152.094588) (xy 116.808772 -151.557976) (xy 117.219476 -151.147272) (xy 117.281914 -151.121409)
(xy 117.277456 -151.119563) (xy 117.200252 -150.870853) (xy 118.0465 -150.024605) (xy 118.892748 -150.870853) (xy 118.815544 -151.119563)
(xy 118.810781 -151.121283) (xy 118.873524 -151.147272) (xy 119.284228 -151.557976) (xy 119.5065 -152.094588) (xy 119.5065 -152.675412)
(xy 119.284228 -153.212024) (xy 118.873524 -153.622728) (xy 118.795613 -153.655) (xy 118.873524 -153.687272) (xy 119.091974 -153.905722)
(xy 142.9545 -153.905722) (xy 142.9545 -153.255278) (xy 143.203414 -152.654347) (xy 143.663347 -152.194414) (xy 144.264278 -151.9455)
(xy 144.914722 -151.9455) (xy 145.515653 -152.194414) (xy 145.975586 -152.654347) (xy 146.2245 -153.255278) (xy 146.2245 -153.905722)
(xy 145.975586 -154.506653) (xy 145.515653 -154.966586) (xy 144.914722 -155.2155) (xy 144.264278 -155.2155) (xy 143.663347 -154.966586)
(xy 143.203414 -154.506653) (xy 142.9545 -153.905722) (xy 119.091974 -153.905722) (xy 119.284228 -154.097976) (xy 119.5065 -154.634588)
(xy 119.5065 -155.215412) (xy 119.284228 -155.752024) (xy 118.873524 -156.162728) (xy 118.735257 -156.22) (xy 119.321069 -156.22)
(xy 120.142526 -156.560259) (xy 120.771241 -157.188974) (xy 121.1115 -158.010431) (xy 121.1115 -158.899569) (xy 120.771241 -159.721026)
(xy 120.142526 -160.349741) (xy 119.980149 -160.417) (xy 123.15597 -160.417) (xy 123.317 -160.384969) (xy 123.47803 -160.417)
(xy 123.478031 -160.417) (xy 123.954945 -160.511864) (xy 124.495769 -160.873231) (xy 124.586988 -161.00975) (xy 126.915045 -163.337806)
(xy 126.9565 -163.32956) (xy 129.4565 -163.32956) (xy 129.704265 -163.378843) (xy 129.914309 -163.519191) (xy 130.054657 -163.729235)
(xy 130.10394 -163.977) (xy 130.10394 -165.60195) (xy 131.4015 -165.60195) (xy 131.4015 -164.85205) (xy 131.688474 -164.159233)
(xy 132.218733 -163.628974) (xy 132.91155 -163.342) (xy 133.66145 -163.342) (xy 134.173022 -163.5539) (xy 135.885931 -163.5539)
(xy 136.362845 -163.648764) (xy 136.903669 -164.010131) (xy 137.265036 -164.550955) (xy 137.391931 -165.1889) (xy 137.265036 -165.826845)
(xy 136.903669 -166.367669) (xy 136.362845 -166.729036) (xy 135.885931 -166.8239) (xy 134.355393 -166.8239) (xy 134.354267 -166.825026)
(xy 134.141457 -166.913175) (xy 142.7354 -166.913175) (xy 142.7354 -165.367625) (xy 143.326856 -163.939724) (xy 144.419724 -162.846856)
(xy 145.847625 -162.2554) (xy 147.393175 -162.2554) (xy 148.821076 -162.846856) (xy 149.913944 -163.939724) (xy 150.5054 -165.367625)
(xy 150.5054 -166.913175) (xy 149.913944 -168.341076) (xy 148.821076 -169.433944) (xy 147.393175 -170.0254) (xy 145.847625 -170.0254)
(xy 144.419724 -169.433944) (xy 143.326856 -168.341076) (xy 142.7354 -166.913175) (xy 134.141457 -166.913175) (xy 133.66145 -167.112)
(xy 132.91155 -167.112) (xy 132.218733 -166.825026) (xy 131.688474 -166.294767) (xy 131.4015 -165.60195) (xy 130.10394 -165.60195)
(xy 130.10394 -166.477) (xy 130.054657 -166.724765) (xy 129.914309 -166.934809) (xy 129.704265 -167.075157) (xy 129.4565 -167.12444)
(xy 126.9565 -167.12444) (xy 126.708735 -167.075157) (xy 126.498691 -166.934809) (xy 126.444773 -166.854116) (xy 125.815954 -166.729036)
(xy 125.411646 -166.458886) (xy 125.411644 -166.458884) (xy 125.275131 -166.367669) (xy 125.183916 -166.231155) (xy 122.639762 -163.687)
(xy 117.034639 -163.687) (xy 114.415139 -166.3065) (xy 118.170887 -166.3065) (xy 118.28226 -165.746591) (xy 118.599423 -165.271923)
(xy 119.074091 -164.95476) (xy 119.492667 -164.8715) (xy 119.775333 -164.8715) (xy 120.193909 -164.95476) (xy 120.668577 -165.271923)
(xy 120.98574 -165.746591) (xy 121.097113 -166.3065) (xy 120.98574 -166.866409) (xy 120.668577 -167.341077) (xy 120.193909 -167.65824)
(xy 119.775333 -167.7415) (xy 119.492667 -167.7415) (xy 119.074091 -167.65824) (xy 118.599423 -167.341077) (xy 118.28226 -166.866409)
(xy 118.170887 -166.3065) (xy 114.415139 -166.3065) (xy 113.119753 -167.601885) (xy 112.715445 -167.872035) (xy 112.0775 -167.998931)
(xy 111.439555 -167.872035) (xy 110.898732 -167.510668) (xy 110.537365 -166.969845) (xy 110.410469 -166.3319) (xy 89.978924 -166.3319)
(xy 89.860967 -166.599123) (xy 89.160694 -166.867388) (xy 88.411065 -166.84725) (xy 87.812033 -166.599123) (xy 87.682785 -166.30632)
(xy 85.637367 -166.30632) (xy 85.604657 -166.470765) (xy 85.464309 -166.680809) (xy 85.254265 -166.821157) (xy 85.0065 -166.87044)
(xy 82.5065 -166.87044) (xy 82.258735 -166.821157) (xy 82.048691 -166.680809) (xy 81.908343 -166.470765) (xy 81.85906 -166.223)
(xy 9.2646 -166.223) (xy 9.2646 -167.000275) (xy 8.673144 -168.428176) (xy 7.580276 -169.521044) (xy 7.276433 -169.6469)
(xy 96.74856 -169.6469) (xy 96.74856 -168.0969) (xy 96.797843 -167.849135) (xy 96.938191 -167.639091) (xy 97.148235 -167.498743)
(xy 97.396 -167.44946) (xy 98.946 -167.44946) (xy 99.193765 -167.498743) (xy 99.403809 -167.639091) (xy 99.544157 -167.849135)
(xy 99.59344 -168.0969) (xy 99.59344 -169.152367) (xy 101.841 -169.152367) (xy 101.841 -168.591433) (xy 102.055659 -168.073199)
(xy 102.452299 -167.676559) (xy 102.970533 -167.4619) (xy 103.531467 -167.4619) (xy 104.049701 -167.676559) (xy 104.446341 -168.073199)
(xy 104.661 -168.591433) (xy 104.661 -169.152367) (xy 104.446341 -169.670601) (xy 104.049701 -170.067241) (xy 103.531467 -170.2819)
(xy 102.970533 -170.2819) (xy 102.452299 -170.067241) (xy 102.055659 -169.670601) (xy 101.841 -169.152367) (xy 99.59344 -169.152367)
(xy 99.59344 -169.6469) (xy 99.544157 -169.894665) (xy 99.403809 -170.104709) (xy 99.193765 -170.245057) (xy 98.946 -170.29434)
(xy 97.396 -170.29434) (xy 97.148235 -170.245057) (xy 96.938191 -170.104709) (xy 96.797843 -169.894665) (xy 96.74856 -169.6469)
(xy 7.276433 -169.6469) (xy 6.152375 -170.1125) (xy 4.606825 -170.1125) (xy 3.178924 -169.521044) (xy 2.086056 -168.428176)
(xy 1.4946 -167.000275) (xy -0.265 -167.000275) (xy -0.265 -167.969843) (xy -0.191857 -168.859504) (xy 0.018238 -169.695929)
(xy 0.362123 -170.48681) (xy 0.83056 -171.210902) (xy 1.410973 -171.848766) (xy 2.087767 -172.383265) (xy 2.842769 -172.800049)
(xy 3.655713 -173.087927) (xy 4.517453 -173.241427) (xy 5.01732 -173.265) (xy 146.969843 -173.265)
)
)
(filled_polygon
(pts
(xy 68.858466 -54.718138) (xy 69.262138 -54.314466) (xy 69.375583 -54.267475) (xy 69.320995 -54.244864) (xy 69.246861 -53.998745)
(xy 70.075 -53.170605) (xy 70.903139 -53.998745) (xy 70.829005 -54.244864) (xy 70.770552 -54.265874) (xy 70.887862 -54.314466)
(xy 71.118343 -54.544947) (xy 71.122001 -54.541288) (xy 71.122 -53.807315) (xy 71.082745 -53.819139) (xy 70.254605 -52.991)
(xy 70.268748 -52.976858) (xy 70.089142 -52.797252) (xy 70.075 -52.811395) (xy 69.246861 -51.983255) (xy 69.259589 -51.941)
(xy 68.514396 -51.941) (xy 68.751534 -52.178138) (xy 68.798525 -52.291583) (xy 68.821136 -52.236995) (xy 69.067255 -52.162861)
(xy 69.895395 -52.991) (xy 69.067255 -53.819139) (xy 68.821136 -53.745005) (xy 68.800126 -53.686552) (xy 68.751534 -53.803862)
(xy 68.347862 -54.207534) (xy 68.218784 -54.261) (xy 68.347862 -54.314466) (xy 68.751534 -54.718138) (xy 68.805 -54.847216)
)
)
(filled_polygon
(pts
(xy 129.62568 -101.951663) (xy 130.018663 -101.55868) (xy 130.225513 -101.473) (xy 130.018663 -101.38732) (xy 129.62568 -100.994337)
(xy 129.546572 -100.803353) (xy 129.492397 -100.934143) (xy 129.250213 -101.003608) (xy 128.449605 -100.203) (xy 129.250213 -99.402392)
(xy 129.492397 -99.471857) (xy 129.542535 -99.612393) (xy 129.62568 -99.411663) (xy 130.018663 -99.01868) (xy 130.225513 -98.933)
(xy 130.018663 -98.84732) (xy 129.62568 -98.454337) (xy 129.54 -98.247487) (xy 129.45432 -98.454337) (xy 129.061337 -98.84732)
(xy 128.870353 -98.926428) (xy 129.001143 -98.980603) (xy 129.070608 -99.222787) (xy 128.27 -100.023395) (xy 127.469392 -99.222787)
(xy 127.538857 -98.980603) (xy 127.679393 -98.930465) (xy 127.478663 -98.84732) (xy 127.168643 -98.5373) (xy 125.360694 -98.5373)
(xy 125.222 -98.564888) (xy 125.221999 -98.564888) (xy 124.925462 -98.505903) (xy 124.737783 -98.3805) (xy 124.674071 -98.337929)
(xy 124.631672 -98.274474) (xy 123.637199 -97.28) (xy 120.748288 -97.28) (xy 120.8405 -97.502619) (xy 120.8405 -98.058381)
(xy 120.62782 -98.571837) (xy 120.234837 -98.96482) (xy 120.027987 -99.0505) (xy 120.234837 -99.13618) (xy 120.62782 -99.529163)
(xy 120.8405 -100.042619) (xy 120.8405 -100.410698) (xy 126.860856 -100.410698) (xy 126.888638 -99.855632) (xy 127.047603 -99.471857)
(xy 127.289787 -99.402392) (xy 128.090395 -100.203) (xy 127.289787 -101.003608) (xy 127.047603 -100.934143) (xy 126.860856 -100.410698)
(xy 120.8405 -100.410698) (xy 120.8405 -100.598381) (xy 120.687813 -100.967) (xy 124.004153 -100.967) (xy 124.079 -100.952112)
(xy 124.153847 -100.967) (xy 124.153852 -100.967) (xy 124.375537 -101.011096) (xy 124.626929 -101.179071) (xy 124.669331 -101.24253)
(xy 125.524102 -102.0973) (xy 127.025355 -102.0973) (xy 127.08568 -101.951663) (xy 127.478663 -101.55868) (xy 127.669647 -101.479572)
(xy 127.538857 -101.425397) (xy 127.469392 -101.183213) (xy 128.27 -100.382605) (xy 129.070608 -101.183213) (xy 129.001143 -101.425397)
(xy 128.860607 -101.475535) (xy 129.061337 -101.55868) (xy 129.45432 -101.951663) (xy 129.54 -102.158513)
)
)
(filled_polygon
(pts
(xy 129.62568 -122.271663) (xy 130.018663 -121.87868) (xy 130.225513 -121.793) (xy 130.018663 -121.70732) (xy 129.62568 -121.314337)
(xy 129.546572 -121.123353) (xy 129.492397 -121.254143) (xy 129.250213 -121.323608) (xy 128.449605 -120.523) (xy 129.250213 -119.722392)
(xy 129.492397 -119.791857) (xy 129.542535 -119.932393) (xy 129.62568 -119.731663) (xy 130.018663 -119.33868) (xy 130.225513 -119.253)
(xy 130.018663 -119.16732) (xy 129.62568 -118.774337) (xy 129.54 -118.567487) (xy 129.45432 -118.774337) (xy 129.061337 -119.16732)
(xy 128.870353 -119.246428) (xy 129.001143 -119.300603) (xy 129.070608 -119.542787) (xy 128.27 -120.343395) (xy 127.469392 -119.542787)
(xy 127.538857 -119.300603) (xy 127.679393 -119.250465) (xy 127.478663 -119.16732) (xy 127.168643 -118.8573) (xy 125.360694 -118.8573)
(xy 125.222 -118.884888) (xy 125.221999 -118.884888) (xy 124.925462 -118.825903) (xy 124.737527 -118.700329) (xy 124.674071 -118.657929)
(xy 124.631672 -118.594474) (xy 123.637199 -117.6) (xy 120.748288 -117.6) (xy 120.8405 -117.822619) (xy 120.8405 -118.378381)
(xy 120.62782 -118.891837) (xy 120.234837 -119.28482) (xy 120.027987 -119.3705) (xy 120.234837 -119.45618) (xy 120.62782 -119.849163)
(xy 120.8405 -120.362619) (xy 120.8405 -120.730698) (xy 126.860856 -120.730698) (xy 126.888638 -120.175632) (xy 127.047603 -119.791857)
(xy 127.289787 -119.722392) (xy 128.090395 -120.523) (xy 127.289787 -121.323608) (xy 127.047603 -121.254143) (xy 126.860856 -120.730698)
(xy 120.8405 -120.730698) (xy 120.8405 -120.918381) (xy 120.766721 -121.0965) (xy 123.813653 -121.0965) (xy 123.8885 -121.081612)
(xy 123.963347 -121.0965) (xy 123.963352 -121.0965) (xy 124.185037 -121.140596) (xy 124.436429 -121.308571) (xy 124.478831 -121.37203)
(xy 125.524102 -122.4173) (xy 127.025355 -122.4173) (xy 127.08568 -122.271663) (xy 127.478663 -121.87868) (xy 127.669647 -121.799572)
(xy 127.538857 -121.745397) (xy 127.469392 -121.503213) (xy 128.27 -120.702605) (xy 129.070608 -121.503213) (xy 129.001143 -121.745397)
(xy 128.860607 -121.795535) (xy 129.061337 -121.87868) (xy 129.45432 -122.271663) (xy 129.54 -122.478513)
)
)
)
)
| KiCad | 4 | fredrick-dominy/open-source-rover | electrical/pcb/control_board/Control Board.kicad_pcb | [
"Apache-2.0"
] |
import React from 'react'
import Image from 'next/image'
const Page = () => {
return (
<div>
<p>Layout Intrinsic</p>
<Image
id="intrinsic1"
src="/wide.png"
width="1200"
height="700"
layout="intrinsic"
></Image>
<Image
id="intrinsic2"
src="/wide.png"
width="1200"
height="700"
layout="intrinsic"
></Image>
<Image
id="intrinsic3"
src="/wide.png"
width="1200"
height="700"
layout="intrinsic"
></Image>
<Image
id="intrinsic4"
src="/wide.png"
width="1200"
height="700"
layout="intrinsic"
></Image>
<p>Layout Intrinsic</p>
</div>
)
}
export default Page
| JavaScript | 3 | blomqma/next.js | test/integration/image-component/default/pages/layout-intrinsic.js | [
"MIT"
] |
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/canbus/vehicle/neolix_edu/protocol/aeb_rearwheelspeed_354.h"
#include "glog/logging.h"
#include "modules/drivers/canbus/common/byte.h"
#include "modules/drivers/canbus/common/canbus_consts.h"
namespace apollo {
namespace canbus {
namespace neolix_edu {
using ::apollo::drivers::canbus::Byte;
Aebrearwheelspeed354::Aebrearwheelspeed354() {}
const int32_t Aebrearwheelspeed354::ID = 0x354;
void Aebrearwheelspeed354::Parse(const std::uint8_t* bytes, int32_t length,
ChassisDetail* chassis) const {
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_wheelspeed_rl_valid(wheelspeed_rl_valid(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_wheelspeed_rl(wheelspeed_rl(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_wheelspeed_rr_valid(wheelspeed_rr_valid(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_wheelspeed_rr(wheelspeed_rr(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_wheelspeed_rl_direct(wheelspeed_rl_direct(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_wheelspeed_rr_direct(wheelspeed_rr_direct(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_alivecounter_rear(alivecounter_rear(bytes, length));
chassis->mutable_neolix_edu()
->mutable_aeb_rearwheelspeed_354()
->set_checksum_rear(checksum_rear(bytes, length));
}
// config detail: {'description': '0x0:Invalid;0x1:Valid', 'offset': 0.0,
// 'precision': 1.0, 'len': 1, 'name': 'wheelspeed_rl_valid', 'is_signed_var':
// False, 'physical_range': '[0.0|1.0]', 'bit': 23, 'type': 'bool', 'order':
// 'motorola', 'physical_unit': 'bit'}
bool Aebrearwheelspeed354::wheelspeed_rl_valid(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 2);
int32_t x = t0.get_byte(7, 1);
bool ret = x;
return ret;
}
// config detail: {'name': 'wheelspeed_rl', 'offset': 0.0, 'precision': 0.01,
// 'len': 15, 'is_signed_var': False, 'physical_range': '[0.0|327.67]', 'bit':
// 22, 'type': 'double', 'order': 'motorola', 'physical_unit': 'km/h'}
double Aebrearwheelspeed354::wheelspeed_rl(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 2);
int32_t x = t0.get_byte(0, 7);
Byte t1(bytes + 3);
int32_t t = t1.get_byte(0, 8);
x <<= 8;
x |= t;
double ret = x * 0.010000;
return ret;
}
// config detail: {'description': '0x0:Invalid;0x1:Valid', 'offset': 0.0,
// 'precision': 1.0, 'len': 1, 'name': 'wheelspeed_rr_valid', 'is_signed_var':
// False, 'physical_range': '[0.0|1.0]', 'bit': 39, 'type': 'bool', 'order':
// 'motorola', 'physical_unit': 'bit'}
bool Aebrearwheelspeed354::wheelspeed_rr_valid(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 4);
int32_t x = t0.get_byte(7, 1);
bool ret = x;
return ret;
}
// config detail: {'name': 'wheelspeed_rr', 'offset': 0.0, 'precision': 0.01,
// 'len': 15, 'is_signed_var': False, 'physical_range': '[0.0|327.67]', 'bit':
// 38, 'type': 'double', 'order': 'motorola', 'physical_unit': 'km/h'}
double Aebrearwheelspeed354::wheelspeed_rr(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 4);
int32_t x = t0.get_byte(0, 7);
Byte t1(bytes + 5);
int32_t t = t1.get_byte(0, 8);
x <<= 8;
x |= t;
double ret = x * 0.010000;
return ret;
}
// config detail: {'description': '0x0:Invalid;0x1:D;0x2:N;0x3:R', 'offset':
// 0.0, 'precision': 1.0, 'len': 2, 'name': 'wheelspeed_rl_direct',
// 'is_signed_var': False, 'physical_range': '[0.0|3.0]', 'bit': 53, 'type':
// 'double', 'order': 'motorola', 'physical_unit': 'bit'}
double Aebrearwheelspeed354::wheelspeed_rl_direct(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 6);
int32_t x = t0.get_byte(4, 2);
double ret = x;
return ret;
}
// config detail: {'description': '0x0:Invalid;0x1:D;0x2:N;0x3:R', 'offset':
// 0.0, 'precision': 1.0, 'len': 2, 'name': 'wheelspeed_rr_direct',
// 'is_signed_var': False, 'physical_range': '[0.0|3.0]', 'bit': 55, 'type':
// 'double', 'order': 'motorola', 'physical_unit': 'bit'}
double Aebrearwheelspeed354::wheelspeed_rr_direct(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 6);
int32_t x = t0.get_byte(6, 2);
double ret = x;
return ret;
}
// config detail: {'name': 'alivecounter_rear', 'offset': 0.0, 'precision': 1.0,
// 'len': 4, 'is_signed_var': False, 'physical_range': '[0.0|15.0]', 'bit': 51,
// 'type': 'double', 'order': 'motorola', 'physical_unit': ''}
double Aebrearwheelspeed354::alivecounter_rear(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 6);
int32_t x = t0.get_byte(0, 4);
double ret = x;
return ret;
}
// config detail: {'name': 'checksum_rear', 'offset': 0.0, 'precision': 1.0,
// 'len': 8, 'is_signed_var': False, 'physical_range': '[0.0|255.0]', 'bit': 63,
// 'type': 'double', 'order': 'motorola', 'physical_unit': ''}
double Aebrearwheelspeed354::checksum_rear(const std::uint8_t* bytes,
int32_t length) const {
Byte t0(bytes + 7);
int32_t x = t0.get_byte(0, 8);
double ret = x;
return ret;
}
} // namespace neolix_edu
} // namespace canbus
} // namespace apollo
| C++ | 5 | jzjonah/apollo | modules/canbus/vehicle/neolix_edu/protocol/aeb_rearwheelspeed_354.cc | [
"Apache-2.0"
] |
export default function Home() {
return (
<main>
<div className="test1">Hello</div>
<div className="test2">Hello</div>
</main>
)
}
| JavaScript | 3 | blomqma/next.js | test/integration/css-fixtures/next-issue-15468/pages/index.js | [
"MIT"
] |
function fakeBattCap(){
if(typeof usleep == "undefined")
usleep = @encode(void(int))(dlsym(-1,"usleep"))
if(typeof dispatch_async == "undefined")
dispatch_async = @encode(void (void*,void (^dispatch_block_t)(void)))(dlsym(-1,"dispatch_async"))
if(typeof dispatch_queue_create == "undefined")
dispatch_queue_create = @encode(void* (char*,void*))(dlsym(-1,"dispatch_queue_create"))
var battMenu = choose(BatteryViewInMenu)[0];
var currCap = battMenu->_batteryInfo[@"BatteryInfo"][0]->_psDescriptionDictionary[@"Current Capacity"].integerValue
dispatch_async(dispatch_queue_create("t", 0), ^void(){
for (var i=currCap;i<=100;i++){
[battMenu _updateBatteryTextCellWithString:[NSString stringWithFormat:@"%@%%",[NSNumber numberWithInt:i]]];
[battMenu setNeedsDisplay:YES];
usleep(40000);
}
});
}
fakeBattCap()
| Cycript | 3 | smola/language-dataset | data/github.com/cocoahuke/quicklycharging/e6a44d9a84d6d7a13b4fbf512db837d142184d93/haha.cy | [
"MIT"
] |
PREFIX : <http://example.org/>
SELECT *
WHERE
{
:x :p :z
GRAPH ?g { :x :b ?a }
}
| SPARQL | 4 | alpano-unibz/ontop | test/sparql-compliance/src/test/resources/testcases-dawg/data-r2/syntax-sparql2/syntax-graph-04.rq | [
"Apache-2.0"
] |
# This file is part of NIT ( http://www.nitlanguage.org ).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import html
class NitHomepage
super HTMLPage
redef fun head do
add("meta").attr("charset", "utf-8")
add("title").text("Nit")
add("link").attr("rel", "icon").attr("href", "http://nitlanguage.org/favicon.ico").attr("type", "image/x-icon")
add("link").attr("rel", "stylesheet").attr("href", "http://nitlanguage.org/style.css").attr("type", "text/css")
add("link").attr("rel", "stylesheet").attr("href", "http://nitlanguage.org/local.css").attr("type", "text/css")
end
redef fun body do
open("article").add_class("page")
open("section").add_class("pageheader")
add_html("<a id='toptitle_first' class='toptitle'>the</a><a id='toptitle_second' class='toptitle' href=''>Nit</a><a id='toptitle_third' class='toptitle' href=''>Programming Language</a>")
open("header").add_class("header")
open("div").add_class("topsubtitle")
add("p").text("A Fun Language for Serious Programming")
close("div")
close("header")
close("section")
open("div").attr("id", "pagebody")
open("section").attr("id", "content")
add("h1").text("# What is Nit?")
add("p").text("Nit is an object-oriented programming language. The goal of Nit is to propose a robust statically typed programming language where structure is not a pain.")
add("p").text("So, what does the famous hello world program look like, in Nit?")
add_html("<pre><tt><span class='normal'>print </span><span class='string'>'Hello, World!'</span></tt></pre>")
add("h1").text("# Feature Highlights")
add("h2").text("Usability")
add("p").text("Nit's goal is to be usable by real programmers for real projects")
open("ul")
open("li")
add("a").attr("href", "http://en.wikipedia.org/wiki/KISS_principle").text("KISS principle")
close("li")
add("li").text("Script-like language without verbosity nor cryptic statements")
add("li").text("Painless static types: static typing should help programmers")
add("li").text("Efficient development, efficient execution, efficient evolution.")
close("ul")
add("h2").text("Robustness")
add("p").text("Nit will help you to write bug-free programs")
open("ul")
add("li").text("Strong static typing")
add("li").text("No more NullPointerException")
close("ul")
add("h2").text("Object-Oriented")
add("p").text("Nit's guideline is to follow the most powerful OO principles")
open("ul")
open("li")
add("a").attr("href", "./everything_is_an_object/").text("Everything is an object")
close("li")
open("li")
add("a").attr("href", "./multiple_inheritance/").text("Multiple inheritance")
close("li")
open("li")
add("a").attr("href", "./refinement/").text("Open classes")
close("li")
open("li")
add("a").attr("href", "./virtual_types/").text("Virtual types")
close("li")
close("ul")
add("h1").text("# Getting Started")
add("p").text("Get Nit from its Git repository:")
add_html("<pre><code>$ git clone http://nitlanguage.org/nit.git</code></pre>")
add("p").text("Build the compiler (may be long):")
add_html("<pre><code>$ cd nit\n")
add_html("$ make</code></pre>")
add("p").text("Compile a program:")
add_html("<pre><code>$ bin/nitc examples/hello_world.nit</code></pre>")
add("p").text("Execute the program:")
add_html("<pre><code>$ ./hello_world</code></pre>")
close("section")
close("div")
close("article")
end
end
var page = new NitHomepage
page.write_to stdout
page.write_to_file("nit.html")
| Nit | 4 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Nit/html_page.nit | [
"MIT"
] |
** This is a test script to check ** is treated as a comment prefix when prefix is customized
CREATE TABLE QRTZ_TEST_TABLE (
SCHED_NAME VARCHAR(120) NOT NULL,
CALENDAR_NAME VARCHAR (200) NOT NULL
);
** Another comment
COMMIT;
| SQL | 2 | yiou362/spring-boot-2.2.9.RELEASE | spring-boot-project/spring-boot-autoconfigure/src/test/resources/org/springframework/boot/autoconfigure/quartz/tables_custom_comment_prefix.sql | [
"Apache-2.0"
] |
class Foo
{
Int a
private Int b := 3
static Str c { get; private set }
Int d := 0 { get {} set {} }
abstract Bool e
Bool f := true
Int g := 5 { get {} private set }
} | Fantom | 2 | fanx-dev/fanx | compiler/testCompilerx/res/parser/testField.fan | [
"AFL-3.0"
] |
if [[ "${TRAVIS}" != "" ]] || [[ "${LINT}" != "" ]]; then
if which swiftlint >/dev/null; then
swiftlint
else
echo "warning: SwiftLint is not installed"
fi
else
echo "To run swiftlint please set TRAVIS or LINT environmental variable."
fi
| Shell | 3 | JacksonJang/RxSwift | scripts/swiftlint.sh | [
"MIT"
] |
@echo off
rem Start IDLE using the appropriate Python interpreter
set CURRDIR=%~dp0
start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9
| Batchfile | 2 | shawwn/cpython | Lib/idlelib/idle.bat | [
"0BSD"
] |
-- Island of Misfit Toys
local M = {}
function M.redir_exec()
error('redir_exec is deprecated, use nvim_exec() or pcall_err()')
end
return M
| Lua | 3 | uga-rosa/neovim | test/deprecated.lua | [
"Vim"
] |
-- Copyright 2014-2015 The Howl Developers
-- License: MIT (see LICENSE.md at the top-level directory of the distribution)
mode_reg =
name: 'php'
extensions: { 'php', 'php3', 'php4', 'phtml' }
shebangs: '[/ ]php.*$'
create: -> bundle_load('php_mode')
parent: 'curly_mode'
howl.mode.register mode_reg
unload = -> howl.mode.unregister 'php'
return {
info:
author: 'Copyright 2014-2015 The Howl Developers',
description: 'PHP support',
license: 'MIT',
:unload
}
| MoonScript | 3 | felipetavares/folt-howl | bundles/php/init.moon | [
"MIT"
] |
- // MIR for `dont_remove_comparison` before SimplifyComparisonIntegral
+ // MIR for `dont_remove_comparison` after SimplifyComparisonIntegral
fn dont_remove_comparison(_1: i8) -> i32 {
debug a => _1; // in scope 0 at $DIR/if-condition-int.rs:43:27: 43:28
let mut _0: i32; // return place in scope 0 at $DIR/if-condition-int.rs:43:37: 43:40
let _2: bool; // in scope 0 at $DIR/if-condition-int.rs:44:9: 44:10
let mut _3: i8; // in scope 0 at $DIR/if-condition-int.rs:44:13: 44:14
let mut _4: i32; // in scope 0 at $DIR/if-condition-int.rs:46:23: 46:31
let mut _5: bool; // in scope 0 at $DIR/if-condition-int.rs:46:23: 46:24
let mut _6: i32; // in scope 0 at $DIR/if-condition-int.rs:47:23: 47:31
let mut _7: bool; // in scope 0 at $DIR/if-condition-int.rs:47:23: 47:24
scope 1 {
debug b => _2; // in scope 1 at $DIR/if-condition-int.rs:44:9: 44:10
}
bb0: {
StorageLive(_2); // scope 0 at $DIR/if-condition-int.rs:44:9: 44:10
StorageLive(_3); // scope 0 at $DIR/if-condition-int.rs:44:13: 44:14
_3 = _1; // scope 0 at $DIR/if-condition-int.rs:44:13: 44:14
- _2 = Eq(move _3, const 17_i8); // scope 0 at $DIR/if-condition-int.rs:44:13: 44:20
- StorageDead(_3); // scope 0 at $DIR/if-condition-int.rs:44:19: 44:20
- switchInt(_2) -> [false: bb2, otherwise: bb1]; // scope 1 at $DIR/if-condition-int.rs:45:5: 45:12
+ _2 = Eq(_3, const 17_i8); // scope 0 at $DIR/if-condition-int.rs:44:13: 44:20
+ nop; // scope 0 at $DIR/if-condition-int.rs:44:19: 44:20
+ switchInt(move _3) -> [17_i8: bb1, otherwise: bb2]; // scope 1 at $DIR/if-condition-int.rs:45:5: 45:12
}
bb1: {
+ StorageDead(_3); // scope 1 at $DIR/if-condition-int.rs:45:5: 45:12
StorageLive(_6); // scope 1 at $DIR/if-condition-int.rs:47:23: 47:31
StorageLive(_7); // scope 1 at $DIR/if-condition-int.rs:47:23: 47:24
_7 = _2; // scope 1 at $DIR/if-condition-int.rs:47:23: 47:24
_6 = move _7 as i32 (Misc); // scope 1 at $DIR/if-condition-int.rs:47:23: 47:31
StorageDead(_7); // scope 1 at $DIR/if-condition-int.rs:47:30: 47:31
_0 = Add(const 100_i32, move _6); // scope 1 at $DIR/if-condition-int.rs:47:17: 47:31
StorageDead(_6); // scope 1 at $DIR/if-condition-int.rs:47:30: 47:31
goto -> bb3; // scope 1 at $DIR/if-condition-int.rs:47:30: 47:31
}
bb2: {
+ StorageDead(_3); // scope 1 at $DIR/if-condition-int.rs:45:5: 45:12
StorageLive(_4); // scope 1 at $DIR/if-condition-int.rs:46:23: 46:31
StorageLive(_5); // scope 1 at $DIR/if-condition-int.rs:46:23: 46:24
_5 = _2; // scope 1 at $DIR/if-condition-int.rs:46:23: 46:24
_4 = move _5 as i32 (Misc); // scope 1 at $DIR/if-condition-int.rs:46:23: 46:31
StorageDead(_5); // scope 1 at $DIR/if-condition-int.rs:46:30: 46:31
_0 = Add(const 10_i32, move _4); // scope 1 at $DIR/if-condition-int.rs:46:18: 46:31
StorageDead(_4); // scope 1 at $DIR/if-condition-int.rs:46:30: 46:31
goto -> bb3; // scope 1 at $DIR/if-condition-int.rs:46:30: 46:31
}
bb3: {
StorageDead(_2); // scope 0 at $DIR/if-condition-int.rs:49:1: 49:2
return; // scope 0 at $DIR/if-condition-int.rs:49:2: 49:2
}
}
| Diff | 4 | mbc-git/rust | src/test/mir-opt/if_condition_int.dont_remove_comparison.SimplifyComparisonIntegral.diff | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
#include <torch/csrc/jit/tensorexpr/hash_provider.h>
#include <torch/csrc/jit/tensorexpr/ir_simplifier.h>
#include <c10/util/irange.h>
namespace torch {
namespace jit {
namespace tensorexpr {
bool SimplifierHashType::operator==(const SimplifierHashType& other) const {
return _h == other._h;
}
bool SimplifierHashType::operator!=(const SimplifierHashType& other) const {
return _h != other._h;
}
bool SimplifierHashType::operator<(const SimplifierHashType& other) const {
return _h < other._h;
}
bool SimplifierHashType::operator==(const size_t other) const {
return _h == other;
}
bool SimplifierHashType::operator!=(const size_t other) const {
return _h != other;
}
void HashProvider::visit(AddPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "+", hashOf(v->rhs())));
}
void HashProvider::visit(SubPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "-", hashOf(v->rhs())));
}
void HashProvider::visit(MulPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "*", hashOf(v->rhs())));
}
void HashProvider::visit(DivPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "/", hashOf(v->rhs())));
}
void HashProvider::visit(ModPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "%", hashOf(v->rhs())));
}
void HashProvider::visit(RoundOffPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "rof", hashOf(v->rhs())));
}
void HashProvider::visit(MaxPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "Mx", hashOf(v->rhs())));
}
void HashProvider::visit(MinPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "Mn", hashOf(v->rhs())));
}
void HashProvider::visit(AndPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "&", hashOf(v->rhs())));
}
void HashProvider::visit(OrPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "|", hashOf(v->rhs())));
}
void HashProvider::visit(XorPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "^", hashOf(v->rhs())));
}
void HashProvider::visit(LshiftPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), "<<", hashOf(v->rhs())));
}
void HashProvider::visit(RshiftPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
putHash(v, hash_combine(hashOf(v->lhs()), ">>", hashOf(v->rhs())));
}
void HashProvider::visit(CompareSelectPtr v) {
CACHE_GUARD();
v->lhs()->accept(this);
v->rhs()->accept(this);
v->ret_val1()->accept(this);
v->ret_val2()->accept(this);
putHash(
v,
hash_combine(
hashOf(v->lhs()),
(int)v->compare_select_op(),
hashOf(v->rhs()),
hashOf(v->ret_val1()),
hashOf(v->ret_val2())));
}
void HashProvider::visit(CastPtr v) {
CACHE_GUARD();
v->src_value()->accept(this);
putHash(v, hash_combine("cast", v->dtype(), hashOf(v->src_value())));
}
void HashProvider::visit(VarPtr v) {
CACHE_GUARD();
putHash(v, hash_combine("var", name_manager_.get_unique_name(v)));
}
void HashProvider::visit(RampPtr v) {
CACHE_GUARD();
v->base()->accept(this);
v->stride()->accept(this);
putHash(
v,
hash_combine("ramp", hashOf(v->base()), hashOf(v->stride()), v->lanes()));
}
void HashProvider::visit(LoadPtr v) {
CACHE_GUARD();
v->base_handle()->accept(this);
SimplifierHashType indices_hash;
for (ExprPtr ind : v->indices()) {
ind->accept(this);
indices_hash = hash_combine(indices_hash, hashOf(ind));
}
putHash(v, hash_combine("load", hashOf(v->base_handle()), indices_hash));
}
void HashProvider::visit(StorePtr v) {
CACHE_GUARD();
v->base_handle()->accept(this);
SimplifierHashType indices_hash;
for (ExprPtr ind : v->indices()) {
ind->accept(this);
indices_hash = hash_combine(indices_hash, hashOf(ind));
}
v->value()->accept(this);
putHash(
v,
hash_combine(
"store", hashOf(v->base_handle()), indices_hash, hashOf(v->value())));
}
void HashProvider::visit(BlockPtr v) {
CACHE_GUARD();
SimplifierHashType hash;
for (StmtPtr s : *v) {
s->accept(this);
hash = hash_combine(hash, hashOf(s));
}
putHash(v, hash);
}
void HashProvider::visit(ForPtr v) {
CACHE_GUARD();
v->var()->accept(this);
v->start()->accept(this);
v->stop()->accept(this);
SimplifierHashType hash = hash_combine(
"for", hashOf(v->var()), hashOf(v->start()), hashOf(v->stop()));
hash = hash_combine(hash, v->loop_options().ToString());
if (v->body()) {
v->body()->accept(this);
hash = hash_combine(hash, hashOf(v->body()));
}
putHash(v, hash);
}
void HashProvider::visit(BroadcastPtr v) {
CACHE_GUARD();
v->value()->accept(this);
putHash(v, hash_combine("broadcast", hashOf(v->value()), v->lanes()));
}
void HashProvider::visit(IfThenElsePtr v) {
CACHE_GUARD();
v->condition()->accept(this);
v->true_value()->accept(this);
v->false_value()->accept(this);
putHash(
v,
hash_combine(
"ifthenelse",
hashOf(v->condition()),
hashOf(v->true_value()),
hashOf(v->false_value())));
}
void HashProvider::visit(IntrinsicsPtr v) {
CACHE_GUARD();
// calls to rand are not symbolic and have a different value each time, they
// should not hash to anything and this is the best we can do.
if (v->op_type() == kRand) {
// NOLINTNEXTLINE(clang-analyzer-security.insecureAPI.rand)
putHash(v, (SimplifierHashType)rand());
return;
}
SimplifierHashType hash(te_hash(v->func_name()));
for (const auto i : c10::irange(v->nparams())) {
v->param(i)->accept(this);
hash = hash_combine(hash, hashOf(v->param(i)));
}
putHash(v, hash);
}
void HashProvider::visit(AllocatePtr v) {
CACHE_GUARD();
VarPtr buffer_var = v->buffer_var();
buffer_var->accept(this);
SimplifierHashType hash =
hash_combine("allocate", hashOf(buffer_var), v->dtype());
std::vector<ExprPtr> dims = v->dims();
for (ExprPtr dim : dims) {
dim->accept(this);
hash = hash_combine(hash, hashOf(dim));
}
putHash(v, hash);
}
void HashProvider::visit(FreePtr v) {
CACHE_GUARD();
VarPtr buffer_var = v->buffer_var();
buffer_var->accept(this);
putHash(v, hash_combine("free", hashOf(buffer_var)));
}
void HashProvider::visit(CondPtr v) {
CACHE_GUARD();
ExprPtr condition = v->condition();
StmtPtr true_stmt = v->true_stmt();
StmtPtr false_stmt = v->false_stmt();
condition->accept(this);
SimplifierHashType hash = hash_combine("cond", hashOf(condition));
if (true_stmt) {
true_stmt->accept(this);
hash = hash_combine(hash, hashOf(true_stmt));
}
if (false_stmt) {
false_stmt->accept(this);
hash = hash_combine(hash, hashOf(false_stmt));
}
putHash(v, hash);
}
void HashProvider::visit(TermPtr v) {
CACHE_GUARD();
v->scalar()->accept(this);
SimplifierHashType hash = hash_combine("term", hashOf(v->scalar()));
for (auto c : v->variables()) {
c->accept(this);
hash = hash_combine(hash, hashOf(c));
}
putHash(v, hash);
}
void HashProvider::visit(PolynomialPtr v) {
CACHE_GUARD();
v->scalar()->accept(this);
SimplifierHashType hash = hash_combine("term", hashOf(v->scalar()));
for (auto c : v->variables()) {
c->accept(this);
hash = hash_combine(hash, hashOf(c));
}
putHash(v, hash);
}
void HashProvider::visit(MaxTermPtr v) {
CACHE_GUARD();
SimplifierHashType hash = hash_combine("maxterm");
if (v->scalar()) {
v->scalar()->accept(this);
hash = hash_combine(hash, hashOf(v->scalar()));
}
for (auto c : v->variables()) {
c->accept(this);
hash = hash_combine(hash, hashOf(c));
}
putHash(v, hash);
}
void HashProvider::visit(MinTermPtr v) {
CACHE_GUARD();
SimplifierHashType hash = hash_combine("minterm");
if (v->scalar()) {
v->scalar()->accept(this);
hash = hash_combine(hash, hashOf(v->scalar()));
}
for (auto c : v->variables()) {
c->accept(this);
hash = hash_combine(hash, hashOf(c));
}
putHash(v, hash);
}
} // namespace tensorexpr
} // namespace jit
} // namespace torch
| C++ | 4 | Hacky-DH/pytorch | torch/csrc/jit/tensorexpr/hash_provider.cpp | [
"Intel"
] |
program-id. GildedRose as "GildedRose".
file-control.
select in-items assign 'in-items'.
select items assign 'items'.
data division.
file section.
fd in-items.
01 in-item pic x(58).
fd items.
01 item.
02 sell-in pic 9(4).
02 quality pic 9(4).
02 name pic x(50).
working-storage section.
procedure division.
open input in-items output items.
start-lable.
read in-items end go to end-lable.
move in-item to item.
if name not equal "Aged Brie" and name not equal "Backstage passes to a TAFKAL80ETC concert"
if quality greater then 0
if name not equal to "Sulfuras, Hand of Ragnaros"
compute quality = quality - 1
end-if
end-if
else
if quality is less then 50
compute quality = quality + 1
if name equals "Backstage passes to a TAFKAL80ETC concert"
if sell-in less then 11
if quality less then 50
compute quality = quality + 1
end-if
end-if
if sell-in less then 6
if quality less then 50
compute quality = quality + 1
end-if
end-if
end-if
end-if
end-if
if name not equal "Sulfuras, Hand of Ragnaros"
compute sell-in = sell-in - 1
end-if
if sell-in is less then 0
if name is not equal to "Aged Brie"
if name is not equal to "Backstage passes to a TAFKAL80ETC concert"
if quality is greater then 0
if name is equal to "Sulfuras, Hand of Ragnaros"
compute quality = quality - 1
end-if
end-if
else
compute quality = quality - quality
end-if
else
if quality is less then 50
compute quality = quality + 1
end-if
end-if
end-if
write item.
go to start-lable.
end-lable.
close items.
goback.
end program GildedRose.
| COBOL | 3 | yangyangisyou/GildedRose-Refactoring-Kata | COBOL/mf/src/GildedRose.cbl | [
"MIT"
] |
<a class="close" href="#">×</a>
<p><strong>Update found:</strong> A new version of RethinkDB is available (version {{last_version}}): see the <a href="{{link_changelog}}" target="_blank" class="release_link">release announcement</a> for details.</p>
| Handlebars | 2 | zadcha/rethinkdb | admin/static/handlebars/has_update.hbs | [
"Apache-2.0"
] |
---
title: "v1.12.0 - 2020-07-09"
linkTitle: "v1.12.0 - 2020-07-09"
weight: -79
---
<html>
<head>
<title>kubernetes/minikube - Leaderboard</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load("current", {packages:["corechart"]});
</script>
<style>
body {
font-family: 'Open Sans', sans-serif;
background-color: #f7f7fa;
padding: 1em;
}
h1 {
color: rgba(66,133,244);
margin-bottom: 0em;
}
.subtitle {
color: rgba(23,90,201);
font-size: small;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
color: #666;
font-size: small;
}
h2.cli {
color: #666;
}
h2 {
color: #333;
}
.board p {
font-size: small;
color: #999;
text-align: center;
}
.board {
clear: right;
display: inline-block;
padding: 0.5em;
margin: 0.5em;
background-color: #fff;
}
.board:nth-child(4n+3) {
border: 2px solid rgba(66,133,244,0.25);
color: rgba(66,133,244);
}
.board:nth-child(4n+2) {
border: 2px solid rgba(219,68,55,0.25);
color: rgba rgba(219,68,55);
}
.board:nth-child(4n+1) {
border: 2px solid rgba(244,160,0,0.25);
color: rgba(244,160,0);
}
.board:nth-child(4n) {
border: 2px solid rgba(15,157,88,0.25);
color: rgba(15,157,88);
}
h3 {
text-align: center;
}
</style>
</head>
<body>
<h1>kubernetes/minikube</h1>
<div class="subtitle">2020-05-29 — 2020-07-09</div>
<h2>Reviewers</h2>
<div class="board">
<h3>Most Influential</h3>
<p># of Merged PRs reviewed</p>
<div id="chart_reviewCounts" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawreviewCounts);
function drawreviewCounts() {
var data = new google.visualization.arrayToDataTable([
['', '# of Merged PRs reviewed', { role: 'annotation' }],
["medyagh", 24, "24"],
["afbjorklund", 9, "9"],
["priyawadhwa", 6, "6"],
["tstromberg", 6, "6"],
["sharifelgamal", 6, "6"],
["panchoh", 1, "1"],
["RA489", 1, "1"],
["Chili-Man", 1, "1"],
["celestehorgan", 1, "1"],
["clcollins", 1, "1"],
["alonyb", 1, "1"],
["prasadkatti", 1, "1"],
["fabiand", 1, "1"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_reviewCounts'));
chart.draw(data, options);
};
</script>
</div>
<div class="board">
<h3>Most Helpful</h3>
<p># of words written in merged PRs</p>
<div id="chart_reviewWords" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawreviewWords);
function drawreviewWords() {
var data = new google.visualization.arrayToDataTable([
['', '# of words written in merged PRs', { role: 'annotation' }],
["medyagh", 1256, "1256"],
["afbjorklund", 649, "649"],
["priyawadhwa", 260, "260"],
["tstromberg", 222, "222"],
["sharifelgamal", 112, "112"],
["prasadkatti", 59, "59"],
["panchoh", 44, "44"],
["celestehorgan", 42, "42"],
["Chili-Man", 42, "42"],
["clcollins", 21, "21"],
["alonyb", 19, "19"],
["fabiand", 17, "17"],
["RA489", 17, "17"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_reviewWords'));
chart.draw(data, options);
};
</script>
</div>
<div class="board">
<h3>Most Demanding</h3>
<p># of Review Comments in merged PRs</p>
<div id="chart_reviewComments" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawreviewComments);
function drawreviewComments() {
var data = new google.visualization.arrayToDataTable([
['', '# of Review Comments in merged PRs', { role: 'annotation' }],
["medyagh", 27, "27"],
["priyawadhwa", 16, "16"],
["tstromberg", 12, "12"],
["afbjorklund", 9, "9"],
["sharifelgamal", 5, "5"],
["clcollins", 1, "1"],
["celestehorgan", 1, "1"],
["fabiand", 1, "1"],
["RA489", 0, "0"],
["panchoh", 0, "0"],
["alonyb", 0, "0"],
["Chili-Man", 0, "0"],
["prasadkatti", 0, "0"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_reviewComments'));
chart.draw(data, options);
};
</script>
</div>
<h2>Pull Requests</h2>
<div class="board">
<h3>Most Active</h3>
<p># of Pull Requests Merged</p>
<div id="chart_prCounts" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawprCounts);
function drawprCounts() {
var data = new google.visualization.arrayToDataTable([
['', '# of Pull Requests Merged', { role: 'annotation' }],
["medyagh", 28, "28"],
["afbjorklund", 26, "26"],
["tstromberg", 14, "14"],
["priyawadhwa", 13, "13"],
["prasadkatti", 2, "2"],
["govargo", 2, "2"],
["n0npax", 2, "2"],
["zhijianli88", 2, "2"],
["Harkishen-Singh", 2, "2"],
["sharifelgamal", 2, "2"],
["radeksm", 1, "1"],
["tsraza", 1, "1"],
["nezorflame", 1, "1"],
["kadern0", 1, "1"],
["colvin", 1, "1"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_prCounts'));
chart.draw(data, options);
};
</script>
</div>
<div class="board">
<h3>Big Movers</h3>
<p>Lines of code (delta)</p>
<div id="chart_prDeltas" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawprDeltas);
function drawprDeltas() {
var data = new google.visualization.arrayToDataTable([
['', 'Lines of code (delta)', { role: 'annotation' }],
["medyagh", 23729, "23729"],
["awgreene", 21523, "21523"],
["afbjorklund", 2693, "2693"],
["tstromberg", 2641, "2641"],
["priyawadhwa", 1301, "1301"],
["n0npax", 621, "621"],
["colvin", 189, "189"],
["prasadkatti", 167, "167"],
["ashleyschuett", 136, "136"],
["nezorflame", 123, "123"],
["Harkishen-Singh", 79, "79"],
["zhijianli88", 77, "77"],
["kadern0", 61, "61"],
["sharifelgamal", 54, "54"],
["mbbroberg", 51, "51"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_prDeltas'));
chart.draw(data, options);
};
</script>
</div>
<div class="board">
<h3>Most difficult to review</h3>
<p>Average PR size (added+changed)</p>
<div id="chart_prSize" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawprSize);
function drawprSize() {
var data = new google.visualization.arrayToDataTable([
['', 'Average PR size (added+changed)', { role: 'annotation' }],
["awgreene", 11148, "11148"],
["medyagh", 431, "431"],
["colvin", 185, "185"],
["tstromberg", 152, "152"],
["ashleyschuett", 136, "136"],
["n0npax", 132, "132"],
["nezorflame", 107, "107"],
["priyawadhwa", 86, "86"],
["afbjorklund", 85, "85"],
["prasadkatti", 78, "78"],
["kadern0", 46, "46"],
["sunny-b", 34, "34"],
["mbbroberg", 34, "34"],
["Harkishen-Singh", 29, "29"],
["maciaszczykm", 24, "24"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_prSize'));
chart.draw(data, options);
};
</script>
</div>
<h2>Issues</h2>
<div class="board">
<h3>Most Active</h3>
<p># of comments</p>
<div id="chart_comments" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawcomments);
function drawcomments() {
var data = new google.visualization.arrayToDataTable([
['', '# of comments', { role: 'annotation' }],
["medyagh", 27, "27"],
["afbjorklund", 24, "24"],
["tstromberg", 9, "9"],
["sharifelgamal", 7, "7"],
["paddy-hack", 6, "6"],
["bolipereira", 3, "3"],
["priyawadhwa", 3, "3"],
["vinu2003", 3, "3"],
["MansM", 2, "2"],
["croensch", 2, "2"],
["marcominetti", 2, "2"],
["cwegener", 1, "1"],
["iRON5", 1, "1"],
["gordillo-ramon", 1, "1"],
["colangelo", 1, "1"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_comments'));
chart.draw(data, options);
};
</script>
</div>
<div class="board">
<h3>Most Helpful</h3>
<p># of words (excludes authored)</p>
<div id="chart_commentWords" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawcommentWords);
function drawcommentWords() {
var data = new google.visualization.arrayToDataTable([
['', '# of words (excludes authored)', { role: 'annotation' }],
["afbjorklund", 1479, "1479"],
["medyagh", 1437, "1437"],
["martin-schaefer", 875, "875"],
["xAt0mZ", 824, "824"],
["paddy-hack", 823, "823"],
["pkankar", 615, "615"],
["croensch", 386, "386"],
["DanielFallon", 302, "302"],
["marcominetti", 254, "254"],
["vinu2003", 252, "252"],
["bolipereira", 240, "240"],
["khusseini", 220, "220"],
["sharifelgamal", 199, "199"],
["tstromberg", 178, "178"],
["iRON5", 150, "150"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_commentWords'));
chart.draw(data, options);
};
</script>
</div>
<div class="board">
<h3>Top Closers</h3>
<p># of issues closed (excludes authored)</p>
<div id="chart_issueCloser" style="width: 450px; height: 350px;"></div>
<script type="text/javascript">
google.charts.setOnLoadCallback(drawissueCloser);
function drawissueCloser() {
var data = new google.visualization.arrayToDataTable([
['', '# of issues closed (excludes authored)', { role: 'annotation' }],
["medyagh", 67, "67"],
["sharifelgamal", 31, "31"],
["priyawadhwa", 19, "19"],
["tstromberg", 18, "18"],
["RA489", 5, "5"],
["afbjorklund", 3, "3"],
["", 1, "1"],
]);
var options = {
axisTitlesPosition: 'none',
bars: 'horizontal', // Required for Material Bar Charts.
axes: {
x: {
y: { side: 'top'} // Top x-axis.
}
},
legend: { position: "none" },
bar: { groupWidth: "85%" }
};
var chart = new google.visualization.BarChart(document.getElementById('chart_issueCloser'));
chart.draw(data, options);
};
</script>
</div>
</body>
</html>
| HTML | 3 | skyplaying/minikube | site/content/en/docs/contrib/leaderboard/v1.12.0.html | [
"Apache-2.0"
] |
/* { } */a b {}
/* test */a b {}
/* { } */ a b {}
/* test */ a b {}
a/* { } */b {}
a/* test */b {}
a /* { } */ b {}
a /* test */ b {}
a b/* { } */ {}
a b/* test */ {}
a b /* { } */ {}
a b /* test */ {}
a b/* { } */{}
a b/* test */{}
a/* test */,/* test */b{}
a /* test */ , /* test */ b {}
| CSS | 0 | mengxy/swc | crates/swc_css_parser/tests/fixture/selector/comments/input.css | [
"Apache-2.0"
] |
_ = require 'underscore'
React = require "react"
ReactDOM = require 'react-dom'
ReactTestUtils = require 'react-addons-test-utils'
CategoryPickerPopover = require('../lib/category-picker-popover').default
{Utils,
Category,
Thread,
Actions,
AccountStore,
CategoryStore,
DatabaseStore,
TaskFactory,
SyncbackCategoryTask,
FocusedPerspectiveStore,
MailboxPerspective,
NylasTestUtils,
TaskQueueStatusStore} = require 'nylas-exports'
{Categories} = require 'nylas-observables'
describe 'CategoryPickerPopover', ->
beforeEach ->
CategoryStore._categoryCache = {}
afterEach ->
NylasEnv.testOrganizationUnit = null
setupFor = (organizationUnit) ->
NylasEnv.testOrganizationUnit = organizationUnit
@account = {
id: TEST_ACCOUNT_ID
usesLabels: -> organizationUnit is "label"
usesFolders: -> organizationUnit isnt "label"
}
@inboxCategory = new Category(id: 'id-123', name: 'inbox', displayName: "INBOX", accountId: TEST_ACCOUNT_ID)
@archiveCategory = new Category(id: 'id-456', name: 'archive', displayName: "ArCHIVe", accountId: TEST_ACCOUNT_ID)
@userCategory = new Category(id: 'id-789', name: null, displayName: "MyCategory", accountId: TEST_ACCOUNT_ID)
observable = NylasTestUtils.mockObservable([@inboxCategory, @archiveCategory, @userCategory])
observable.sort = => observable
spyOn(Categories, "forAccount").andReturn observable
spyOn(CategoryStore, "getStandardCategory").andReturn @inboxCategory
spyOn(AccountStore, "accountForItems").andReturn @account
spyOn(Actions, "closePopover")
# By default we're going to set to "inbox". This has implications for
# what categories get filtered out of the list.
spyOn(FocusedPerspectiveStore, 'current').andCallFake =>
MailboxPerspective.forCategory(@inboxCategory)
setupForCreateNew = (orgUnit = "folder") ->
setupFor.call(@, orgUnit)
@testThread = new Thread(id: 't1', subject: "fake", accountId: TEST_ACCOUNT_ID, categories: [])
@picker = ReactTestUtils.renderIntoDocument(
<CategoryPickerPopover threads={[@testThread]} account={@account} />
)
describe 'when using labels', ->
beforeEach ->
setupFor.call(@, "label")
describe 'when using folders', ->
beforeEach ->
setupFor.call(@, "folder")
@testThread = new Thread(id: 't1', subject: "fake", accountId: TEST_ACCOUNT_ID, categories: [])
@picker = ReactTestUtils.renderIntoDocument(
<CategoryPickerPopover threads={[@testThread]} account={@account} />
)
it 'lists the desired categories', ->
data = @picker.state.categoryData
# NOTE: The inbox category is not included here because it's the
# currently focused category, which gets filtered out of the list.
expect(data.length).toBe 3
expect(data[0].id).toBe "id-456"
expect(data[0].name).toBe "archive"
expect(data[0].category).toBe @archiveCategory
expect(data[1].divider).toBe true
expect(data[1].id).toBe "category-divider"
expect(data[2].id).toBe "id-789"
expect(data[2].name).toBeUndefined()
expect(data[2].category).toBe @userCategory
describe "'create new' item", ->
beforeEach ->
setupForCreateNew.call @
afterEach -> NylasEnv.testOrganizationUnit = null
it "is not visible when the search box is empty", ->
count = ReactTestUtils.scryRenderedDOMComponentsWithClass(@picker, 'category-create-new').length
expect(count).toBe 0
it "is visible when the search box has text", ->
inputNode = ReactDOM.findDOMNode(ReactTestUtils.scryRenderedDOMComponentsWithTag(@picker, "input")[0])
ReactTestUtils.Simulate.change inputNode, target: { value: "calendar" }
count = ReactTestUtils.scryRenderedDOMComponentsWithClass(@picker, 'category-create-new').length
expect(count).toBe 1
it "shows folder icon if we're using exchange", ->
inputNode = ReactDOM.findDOMNode(ReactTestUtils.scryRenderedDOMComponentsWithTag(@picker, "input")[0])
ReactTestUtils.Simulate.change inputNode, target: { value: "calendar" }
count = ReactTestUtils.scryRenderedDOMComponentsWithClass(@picker, 'category-create-new-folder').length
expect(count).toBe 1
describe "'create new' item with labels", ->
beforeEach ->
setupForCreateNew.call @, "label"
it "shows label icon if we're using gmail", ->
inputNode = ReactDOM.findDOMNode(ReactTestUtils.scryRenderedDOMComponentsWithTag(@picker, "input")[0])
ReactTestUtils.Simulate.change inputNode, target: { value: "calendar" }
count = ReactTestUtils.scryRenderedDOMComponentsWithClass(@picker, 'category-create-new-tag').length
expect(count).toBe 1
describe "_onSelectCategory", ->
beforeEach ->
setupForCreateNew.call @, "folder"
spyOn(Actions, "applyCategoryToThreads")
spyOn(Actions, "removeCategoryFromThreads")
spyOn(Actions, "queueTask")
spyOn(Actions, "queueTasks")
it "closes the popover", ->
@picker._onSelectCategory { usage: 0, category: "asdf" }
expect(Actions.closePopover).toHaveBeenCalled()
describe "when selecting a category currently on all the selected items", ->
it "fires a task to remove the category", ->
input =
category: "asdf"
usage: 1
@picker._onSelectCategory(input)
expect(Actions.removeCategoryFromThreads).toHaveBeenCalledWith
threads: [@testThread]
source: 'Category Picker: Existing Category'
categoryToRemove: "asdf"
describe "when selecting a category not on all the selected items", ->
it "fires a task to add the category", ->
input =
category: "asdf"
usage: 0
@picker._onSelectCategory(input)
expect(Actions.applyCategoryToThreads).toHaveBeenCalledWith
source: 'Category Picker: Existing Category'
threads: [@testThread]
categoryToApply: "asdf"
describe "when selecting a new category", ->
beforeEach ->
@input =
newCategoryItem: true
@picker.setState(searchValue: "teSTing!")
it "queues a new syncback task for creating a category", ->
@picker._onSelectCategory(@input)
expect(Actions.queueTask).toHaveBeenCalled()
syncbackTask = Actions.queueTask.calls[0].args[0]
newCategory = syncbackTask.category
expect(newCategory instanceof Category).toBe(true)
expect(newCategory.displayName).toBe "teSTing!"
expect(newCategory.accountId).toBe TEST_ACCOUNT_ID
it "queues a task for applying the category after it has saved", ->
category = false
resolveSave = false
spyOn(TaskQueueStatusStore, "waitForPerformRemote").andCallFake (task) ->
expect(task instanceof SyncbackCategoryTask).toBe true
new Promise (resolve, reject) ->
resolveSave = resolve
spyOn(DatabaseStore, "findBy").andCallFake (klass, {clientId}) ->
expect(klass).toBe(Category)
expect(typeof clientId).toBe("string")
Promise.resolve(category)
@picker._onSelectCategory(@input)
waitsFor ->
Actions.queueTask.callCount > 0
runs ->
category = Actions.queueTask.calls[0].args[0].category
resolveSave()
waitsFor ->
Actions.applyCategoryToThreads.calls.length is 1
runs ->
expect(Actions.applyCategoryToThreads).toHaveBeenCalledWith
source: 'Category Picker: New Category'
threads: [@testThread]
categoryToApply: category
| CoffeeScript | 5 | cnheider/nylas-mail | packages/client-app/internal_packages/category-picker/spec/category-picker-spec.cjsx | [
"MIT"
] |
[b="0c"] {} | CSS | 0 | mengxy/swc | crates/swc_css_parser/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css | [
"Apache-2.0"
] |
resource "azurerm_kubernetes_cluster" "diem" {
role_based_access_control {
enabled = true
azure_active_directory {
managed = true
admin_group_object_ids = var.k8s_admin_groups
tenant_id = data.azurerm_client_config.current.tenant_id
}
}
}
provider "kubernetes" {
host = azurerm_kubernetes_cluster.diem.kube_admin_config[0].host
client_key = base64decode(azurerm_kubernetes_cluster.diem.kube_admin_config[0].client_key)
client_certificate = base64decode(azurerm_kubernetes_cluster.diem.kube_admin_config[0].client_certificate)
cluster_ca_certificate = base64decode(azurerm_kubernetes_cluster.diem.kube_admin_config[0].cluster_ca_certificate)
}
provider "helm" {
kubernetes {
host = azurerm_kubernetes_cluster.diem.kube_admin_config[0].host
client_key = base64decode(azurerm_kubernetes_cluster.diem.kube_admin_config[0].client_key)
client_certificate = base64decode(azurerm_kubernetes_cluster.diem.kube_admin_config[0].client_certificate)
cluster_ca_certificate = base64decode(azurerm_kubernetes_cluster.diem.kube_admin_config[0].cluster_ca_certificate)
}
}
| HCL | 4 | PragmaTwice/diem | terraform/validator/azure/aad/aks-aad_override.tf | [
"Apache-2.0"
] |
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2021, Daniel Stenberg, <[email protected]>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
#include "curlcheck.h"
#include "bufref.h"
static struct bufref bufref;
static int freecount = 0;
static void test_free(void *p)
{
fail_unless(p, "pointer to free may not be NULL");
freecount++;
free(p);
}
static CURLcode unit_setup(void)
{
Curl_bufref_init(&bufref);
return CURLE_OK;
}
static void unit_stop(void)
{
}
UNITTEST_START
{
char *buffer = NULL;
CURLcode result = CURLE_OK;
/**
* testing Curl_bufref_init.
* @assumptions:
* 1: data size will be 0
* 2: reference will be NULL
* 3: destructor will be NULL
*/
fail_unless(!bufref.ptr, "Initial reference must be NULL");
fail_unless(!bufref.len, "Initial length must be NULL");
fail_unless(!bufref.dtor, "Destructor must be NULL");
/**
* testing Curl_bufref_set
*/
buffer = malloc(13);
abort_unless(buffer, "Out of memory");
Curl_bufref_set(&bufref, buffer, 13, test_free);
fail_unless((char *) bufref.ptr == buffer, "Referenced data badly set");
fail_unless(bufref.len == 13, "Data size badly set");
fail_unless(bufref.dtor == test_free, "Destructor badly set");
/**
* testing Curl_bufref_ptr
*/
fail_unless((char *) Curl_bufref_ptr(&bufref) == buffer,
"Wrong pointer value returned");
/**
* testing Curl_bufref_len
*/
fail_unless(Curl_bufref_len(&bufref) == 13, "Wrong data size returned");
/**
* testing Curl_bufref_memdup
*/
result = Curl_bufref_memdup(&bufref, "1661", 3);
abort_unless(result == CURLE_OK, curl_easy_strerror(result));
fail_unless(freecount == 1, "Destructor not called");
fail_unless((char *) bufref.ptr != buffer, "Returned pointer not set");
buffer = (char *) Curl_bufref_ptr(&bufref);
fail_unless(buffer, "Allocated pointer is NULL");
fail_unless(bufref.len == 3, "Wrong data size stored");
fail_unless(!buffer[3], "Duplicated data should have been truncated");
fail_unless(!strcmp(buffer, "166"), "Bad duplicated data");
/**
* testing Curl_bufref_free
*/
Curl_bufref_free(&bufref);
fail_unless(freecount == 1, "Wrong destructor called");
fail_unless(!bufref.ptr, "Initial reference must be NULL");
fail_unless(!bufref.len, "Initial length must be NULL");
fail_unless(!bufref.dtor, "Destructor must be NULL");
}
UNITTEST_STOP
| C | 5 | Greg-Muchka/curl | tests/unit/unit1661.c | [
"curl"
] |
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Uniforms {
half4 colorGreen;
half4 colorRed;
};
struct Inputs {
};
struct Outputs {
half4 sk_FragColor [[color(0)]];
};
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
Outputs _out;
(void)_out;
int i1 = 1;
int i2 = 342391;
int i3 = 2000000000;
int i4 = -2000000000;
_out.sk_FragColor = ((i1 == 1 && i2 == 342391) && i3 == 2000000000) && i4 == -2000000000 ? _uniforms.colorGreen : _uniforms.colorRed;
return _out;
}
| Metal | 3 | fourgrad/skia | tests/sksl/shared/Octal.metal | [
"BSD-3-Clause"
] |
SOUNDEX(X,NARA=0)
;Converts a string to its Soundex value.
;Empty strings return "0000". Non-alphabetic ASCII characters are ignored.
;X is the name to be converted to Soundex
;NARA is a flag, defaulting to zero, for which implementation to perform.
;If NARA is 0, do what seems to be the Knuth implementation
;If NARA is a positive integer, do the NARA implementation.
; This varies the soundex rule for "W" and "H", and adds variants for prefixed names separated by carets.
; http://www.archives.gov/publications/general-info-leaflets/55-census.html
;Y is the string to be returned
;UP is the list of upper case letters
;LO is the list of lower case letters
;PREFIX is a list of prefixes to be stripped off
;X1 is the upper case version of X
;X2 is the name without a prefix
;Y2 is the soundex of a name without a prefix
;C is a loop variable
;DX is a list of Soundex values, in alphabetical order. Underscores are used for the NARA variation letters
;XD is a partially processed translation of X into soundex values
NEW Y,UP,LO,PREFIX,X1,X2,Y2,C,DX,XD
SET UP="ABCDEFGHIJKLMNOPQRSTUVWXYZ" ;Upper case characters
SET LO="abcdefghijklmnopqrstuvwxyz" ;Lower case characters
SET DX=" 123 12_ 22455 12623 1_2 2" ;Soundex values
SET PREFIX="VAN^CO^DE^LA^LE" ;Prefixes that could create an alternate soundex value
SET Y="" ;Y is the value to be returned
SET X1=$TRANSLATE(X,LO,UP) ;Make local copy, and force all letters to be upper case
SET XD=$TRANSLATE(X1,UP,DX) ;Soundex values for string
;
SET Y=$EXTRACT(X1,1,1) ;Get first character
FOR C=2:1:$LENGTH(X1) QUIT:$L(Y)>=4 DO
. ;ignore doubled letters OR and side-by-side soundex values OR same soundex on either side of "H" or "W"
. QUIT:($EXTRACT(X1,C,C)=$EXTRACT(X1,C-1,C-1))
. QUIT:($EXTRACT(XD,C,C)=$EXTRACT(XD,C-1,C-1))
. ;ignore non-alphabetic characters
. QUIT:UP'[($EXTRACT(X1,C,C))
. QUIT:NARA&(($EXTRACT(XD,C-1,C-1)="_")&(C>2))&($EXTRACT(XD,C,C)=$EXTRACT(XD,C-2,C-2))
. QUIT:" _"[$EXTRACT(XD,C,C)
. SET Y=Y_$EXTRACT(XD,C,C)
; Pad with "0" so string length is 4
IF $LENGTH(Y)<4 FOR C=$L(Y):1:3 SET Y=Y_"0"
IF NARA DO
. FOR C=1:1:$LENGTH(PREFIX,"^") DO
. . IF $EXTRACT(X1,1,$LENGTH($PIECE(PREFIX,"^",C)))=$PIECE(PREFIX,"^",C) DO
. . . ;Take off the prefix, and any leading spaces
. . . SET X2=$EXTRACT(X1,$LENGTH($PIECE(PREFIX,"^",C))+1,$LENGTH(X1)-$PIECE(PREFIX,"^",C)) FOR QUIT:UP[$E(X2,1,1) SET X2=$E(X2,2,$L(X2))
. . . SET Y2=$$SOUNDEX(X2,NARA) SET Y=Y_"^"_Y2
KILL UP,LO,PREFIX,X1,X2,Y2,C,DX,XD
QUIT Y
| M | 5 | LaudateCorpus1/RosettaCodeData | Task/Soundex/MUMPS/soundex.mumps | [
"Info-ZIP"
] |
package foo
open class A() | Groff | 1 | qussarah/declare | jps-plugin/testData/incremental/pureKotlin/defaultArgumentInConstructorRemoved/A.kt.new.1 | [
"Apache-2.0"
] |
CREATE TABLE `tb_nuprsugtcj` (
`col_qwsjkklpfs` set('enum_or_set_0','enum_or_set_1','enum_or_set_2')
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
| SQL | 3 | yuanweikang2020/canal | parse/src/test/resources/ddl/alter/mysql_7.sql | [
"Apache-2.0"
] |
set(ENV{OLD_PO_FILE_INPUT} yes)
set(ENV{OLD_PO_FILE_OUTPUT} yes)
execute_process(
COMMAND ${MSGMERGE_PRG} -q --update --backup=none --sort-by-file
${PO_FILE} ${POT_FILE}
ERROR_VARIABLE err
RESULT_VARIABLE res)
if(NOT res EQUAL 0)
message(FATAL_ERROR "msgmerge failed to run correctly: ${err}")
endif()
| CMake | 3 | uga-rosa/neovim | cmake/RunMsgmerge.cmake | [
"Vim"
] |
//===--- RemoteAST.cpp ----------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements the RemoteAST interface.
//
//===----------------------------------------------------------------------===//
#include "swift/RemoteAST/RemoteAST.h"
#include "swift/Remote/MetadataReader.h"
#include "swift/Strings.h"
#include "swift/Subsystems.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/ASTDemangler.h"
#include "swift/AST/Decl.h"
#include "swift/AST/ExistentialLayout.h"
#include "swift/AST/GenericSignature.h"
#include "swift/AST/Module.h"
#include "swift/AST/NameLookup.h"
#include "swift/AST/SubstitutionMap.h"
#include "swift/AST/TypeRepr.h"
#include "swift/AST/Types.h"
#include "swift/Basic/Mangler.h"
#include "swift/ClangImporter/ClangImporter.h"
#include "swift/Demangling/Demangler.h"
#include "llvm/ADT/StringSwitch.h"
// TODO: Develop a proper interface for this.
#include "swift/AST/IRGenOptions.h"
#include "swift/AST/SILOptions.h"
#include "swift/SIL/SILModule.h"
#include "../IRGen/IRGenModule.h"
#include "../IRGen/FixedTypeInfo.h"
#include "../IRGen/GenClass.h"
#include "../IRGen/GenStruct.h"
#include "../IRGen/GenTuple.h"
#include "../IRGen/MemberAccessStrategy.h"
using namespace swift;
using namespace swift::remote;
using namespace swift::remoteAST;
using irgen::Alignment;
using irgen::Size;
static inline RemoteAddress operator+(RemoteAddress address, Size offset) {
return RemoteAddress(address.getAddressData() + offset.getValue());
}
namespace {
/// A "minimal" class for querying IRGen.
struct IRGenContext {
const IRGenOptions IROpts;
SILOptions SILOpts;
Lowering::TypeConverter TC;
std::unique_ptr<SILModule> SILMod;
irgen::IRGenerator IRGen;
irgen::IRGenModule IGM;
private:
IRGenContext(ASTContext &ctx, ModuleDecl *module)
: IROpts(createIRGenOptions()),
TC(*module),
SILMod(SILModule::createEmptyModule(module, TC, SILOpts)),
IRGen(IROpts, *SILMod),
IGM(IRGen, IRGen.createTargetMachine()) {}
static IRGenOptions createIRGenOptions() {
IRGenOptions IROpts;
return IROpts;
}
public:
static std::unique_ptr<IRGenContext>
create(ASTContext &ctx, DeclContext *nominalDC) {
auto module = nominalDC->getParentModule();
return std::unique_ptr<IRGenContext>(new IRGenContext(ctx, module));
}
};
/// The basic implementation of the RemoteASTContext interface.
/// The template subclasses do target-specific logic.
class RemoteASTContextImpl {
std::unique_ptr<IRGenContext> IRGen;
Optional<Failure> CurFailure;
public:
RemoteASTContextImpl() = default;
virtual ~RemoteASTContextImpl() = default;
virtual Result<Type>
getTypeForRemoteTypeMetadata(RemoteAddress metadata, bool skipArtificial) = 0;
virtual Result<MetadataKind>
getKindForRemoteTypeMetadata(RemoteAddress metadata) = 0;
virtual Result<NominalTypeDecl*>
getDeclForRemoteNominalTypeDescriptor(RemoteAddress descriptor) = 0;
virtual Result<RemoteAddress>
getHeapMetadataForObject(RemoteAddress object) = 0;
virtual Result<OpenedExistential>
getDynamicTypeAndAddressForError(RemoteAddress object) = 0;
virtual Result<OpenedExistential>
getDynamicTypeAndAddressForExistential(RemoteAddress object,
Type staticType) = 0;
virtual Result<Type>
getUnderlyingTypeForOpaqueType(remote::RemoteAddress opaqueDescriptor,
SubstitutionMap substitutions,
unsigned ordinal) = 0;
Result<uint64_t>
getOffsetOfMember(Type type, RemoteAddress optMetadata, StringRef memberName){
// Sanity check: obviously invalid arguments.
if (!type || memberName.empty())
return Result<uint64_t>::emplaceFailure(Failure::BadArgument);
// Sanity check: if the caller gave us a dependent type, there's no way
// we can handle that.
if (type->hasTypeParameter() || type->hasArchetype())
return Result<uint64_t>::emplaceFailure(Failure::DependentArgument);
// Split into cases.
if (auto typeDecl = type->getNominalOrBoundGenericNominal()) {
return getOffsetOfField(type, typeDecl, optMetadata, memberName);
} else if (auto tupleType = type->getAs<TupleType>()) {
return getOffsetOfTupleElement(tupleType, optMetadata, memberName);
} else {
return Result<uint64_t>::emplaceFailure(Failure::TypeHasNoSuchMember,
memberName.str());
}
}
protected:
template <class T, class DefaultFailureKindTy, class... DefaultFailureArgTys>
Result<T> getFailureAsResult(DefaultFailureKindTy defaultFailureKind,
DefaultFailureArgTys &&...defaultFailureArgs) {
// If we already have a failure, use that.
if (CurFailure) {
Result<T> result = std::move(*CurFailure);
CurFailure.reset();
return result;
}
// Otherwise, use the default failure.
return Result<T>::emplaceFailure(defaultFailureKind,
std::forward<DefaultFailureArgTys>(defaultFailureArgs)...);
}
template <class T>
Result<T> getFailure() {
return getFailureAsResult<T>(Failure::Unknown);
}
template <class T, class KindTy, class... ArgTys>
Result<T> fail(KindTy kind, ArgTys &&...args) {
return Result<T>::emplaceFailure(kind, std::forward<ArgTys>(args)...);
}
private:
virtual ASTBuilder &getBuilder() = 0;
virtual MemoryReader &getReader() = 0;
virtual bool readWordOffset(RemoteAddress address, int64_t *offset) = 0;
virtual std::unique_ptr<IRGenContext> createIRGenContext() = 0;
virtual Result<uint64_t>
getOffsetOfTupleElementFromMetadata(RemoteAddress metadata,
unsigned elementIndex) = 0;
virtual Result<uint64_t>
getOffsetOfFieldFromMetadata(RemoteAddress metadata,
StringRef memberName) = 0;
IRGenContext *getIRGen() {
if (!IRGen) IRGen = createIRGenContext();
return IRGen.get();
}
Result<uint64_t>
getOffsetOfField(Type type, NominalTypeDecl *typeDecl,
RemoteAddress optMetadata, StringRef memberName) {
if (!isa<StructDecl>(typeDecl) && !isa<ClassDecl>(typeDecl))
return fail<uint64_t>(Failure::Unimplemented,
"access members of this kind of type");
// Try to find the member.
VarDecl *member = findField(typeDecl, memberName);
// If we found a member, try to find its offset statically.
if (member && member->hasStorage() && !typeDecl->isResilient()) {
if (auto irgen = getIRGen()) {
return getOffsetOfFieldFromIRGen(irgen->IGM, type, typeDecl,
optMetadata, member);
}
}
// Try searching the metadata for a member with the given name.
if (optMetadata) {
return getOffsetOfFieldFromMetadata(optMetadata, memberName);
}
// Okay, that's everything we know how to try.
// Use a specialized diagnostic if we couldn't find any such member.
if (!member) {
return fail<uint64_t>(Failure::TypeHasNoSuchMember, memberName.str());
}
return fail<uint64_t>(Failure::Unknown);
}
/// Look for an instance property of the given nominal type that's
/// known to be stored.
VarDecl *findField(NominalTypeDecl *typeDecl, StringRef memberName) {
for (auto field : typeDecl->getStoredProperties()) {
if (field->getName().str() == memberName)
return field;
}
return nullptr;
}
using MemberAccessStrategy = irgen::MemberAccessStrategy;
Result<uint64_t>
getOffsetOfFieldFromIRGen(irgen::IRGenModule &IGM, Type type,
NominalTypeDecl *typeDecl,
RemoteAddress optMetadata, VarDecl *member) {
SILType loweredTy = IGM.getLoweredType(type);
MemberAccessStrategy strategy =
(isa<StructDecl>(typeDecl)
? getPhysicalStructMemberAccessStrategy(IGM, loweredTy, member)
: getPhysicalClassMemberAccessStrategy(IGM, loweredTy, member));
switch (strategy.getKind()) {
case MemberAccessStrategy::Kind::Complex:
return fail<uint64_t>(Failure::Unimplemented,
"access members with complex storage");
case MemberAccessStrategy::Kind::DirectFixed:
return uint64_t(strategy.getDirectOffset().getValue());
case MemberAccessStrategy::Kind::DirectGlobal: {
RemoteAddress directOffsetAddress =
getReader().getSymbolAddress(strategy.getDirectGlobalSymbol());
if (!directOffsetAddress)
return getFailure<uint64_t>();
return readDirectOffset(directOffsetAddress,
strategy.getDirectOffsetKind());
}
case MemberAccessStrategy::Kind::IndirectFixed: {
// We can't apply indirect offsets without metadata.
if (!optMetadata)
return fail<uint64_t>(Failure::Unimplemented,
"access generically-offset members without "
"metadata");
Size indirectOffset = strategy.getIndirectOffset();
return readIndirectOffset(optMetadata, indirectOffset,
strategy.getDirectOffsetKind());
}
case MemberAccessStrategy::Kind::IndirectGlobal: {
// We can't apply indirect offsets without metadata.
if (!optMetadata)
return fail<uint64_t>(Failure::Unimplemented,
"access generically-offset members without "
"metadata");
RemoteAddress indirectOffsetAddress =
getReader().getSymbolAddress(strategy.getIndirectGlobalSymbol());
Size indirectOffset;
if (!readOffset(indirectOffsetAddress,
strategy.getIndirectOffsetKind(),
indirectOffset))
return getFailure<uint64_t>();
return readIndirectOffset(optMetadata, indirectOffset,
strategy.getDirectOffsetKind());
}
}
llvm_unreachable("bad member MemberAccessStrategy");
}
bool readOffset(RemoteAddress address,
MemberAccessStrategy::OffsetKind kind,
Size &offset) {
switch (kind) {
case MemberAccessStrategy::OffsetKind::Bytes_Word: {
int64_t rawOffset;
if (!readWordOffset(address, &rawOffset))
return false;
offset = Size(rawOffset);
return true;
}
}
llvm_unreachable("bad offset kind");
}
Result<uint64_t> readIndirectOffset(RemoteAddress metadata,
Size indirectOffset,
MemberAccessStrategy::OffsetKind kind) {
RemoteAddress directOffsetAddress = metadata + indirectOffset;
return readDirectOffset(directOffsetAddress, kind);
}
Result<uint64_t> readDirectOffset(RemoteAddress directOffsetAddress,
MemberAccessStrategy::OffsetKind kind) {
Size directOffset;
if (!readOffset(directOffsetAddress, kind, directOffset))
return getFailure<uint64_t>();
return uint64_t(directOffset.getValue());
}
/// Read the
Result<uint64_t>
getOffsetOfTupleElement(TupleType *type, RemoteAddress optMetadata,
StringRef memberName) {
// Check that the member "name" is a valid index into the tuple.
unsigned targetIndex;
if (memberName.getAsInteger(10, targetIndex) ||
targetIndex >= type->getNumElements())
return fail<uint64_t>(Failure::TypeHasNoSuchMember, memberName.str());
// Fast path: element 0 is always at offset 0.
if (targetIndex == 0)
return uint64_t(0);
// Create an IRGen instance.
auto irgen = getIRGen();
if (!irgen)
return Result<uint64_t>::emplaceFailure(Failure::Unknown);
auto &IGM = irgen->IGM;
SILType loweredTy = IGM.getLoweredType(type);
// Only the runtime metadata knows the offsets of resilient members.
auto &typeInfo = IGM.getTypeInfo(loweredTy);
if (!isa<irgen::FixedTypeInfo>(&typeInfo))
return Result<uint64_t>::emplaceFailure(Failure::NotFixedLayout);
// If the type has a statically fixed offset, return that.
if (auto offset =
irgen::getFixedTupleElementOffset(IGM, loweredTy, targetIndex))
return offset->getValue();
// If we have metadata, go load from that.
if (optMetadata)
return getOffsetOfTupleElementFromMetadata(optMetadata, targetIndex);
// Okay, reproduce tuple layout.
// Find the last element with a known offset. Note that we don't
// have to ask IRGen about element 0 because we know its size is zero.
Size lastOffset = Size(0);
unsigned lastIndex = targetIndex;
for (--lastIndex; lastIndex != 0; --lastIndex) {
if (auto offset =
irgen::getFixedTupleElementOffset(IGM, loweredTy, lastIndex)) {
lastOffset = *offset;
break;
}
}
// Okay, iteratively build up from there.
for (; ; ++lastIndex) {
// Try to get the size and alignment of this element.
SILType eltTy = loweredTy.getTupleElementType(lastIndex);
auto sizeAndAlignment = getTypeSizeAndAlignment(IGM, eltTy);
if (!sizeAndAlignment) return getFailure<uint64_t>();
// Round up to the alignment of the element.
lastOffset = lastOffset.roundUpToAlignment(sizeAndAlignment->second);
// If this is the target, we're done.
if (lastIndex == targetIndex)
return lastOffset.getValue();
// Otherwise, skip forward by the size of the element.
lastOffset += sizeAndAlignment->first;
}
llvm_unreachable("didn't reach target index");
}
/// Attempt to discover the size and alignment of the given type.
Optional<std::pair<Size, Alignment>>
getTypeSizeAndAlignment(irgen::IRGenModule &IGM, SILType eltTy) {
auto &eltTI = IGM.getTypeInfo(eltTy);
if (auto fixedTI = dyn_cast<irgen::FixedTypeInfo>(&eltTI)) {
return std::make_pair(fixedTI->getFixedSize(),
fixedTI->getFixedAlignment());
}
// TODO: handle resilient types
return None;
}
};
/// A template for generating target-specific implementations of the
/// RemoteASTContext interface.
template <class Runtime>
class RemoteASTContextConcreteImpl final : public RemoteASTContextImpl {
MetadataReader<Runtime, ASTBuilder> Reader;
ASTBuilder &getBuilder() override {
return Reader.Builder;
}
MemoryReader &getReader() override {
return *Reader.Reader;
}
bool readWordOffset(RemoteAddress address, int64_t *extendedOffset) override {
using unsigned_size_t = typename Runtime::StoredSize;
using signed_size_t = typename std::make_signed<unsigned_size_t>::type;
signed_size_t offset;
if (!getReader().readInteger(address, &offset))
return false;
*extendedOffset = offset;
return true;
}
public:
RemoteASTContextConcreteImpl(std::shared_ptr<MemoryReader> &&reader,
ASTContext &ctx)
: Reader(std::move(reader), ctx) {}
Result<Type> getTypeForRemoteTypeMetadata(RemoteAddress metadata,
bool skipArtificial) override {
if (auto result = Reader.readTypeFromMetadata(metadata.getAddressData(),
skipArtificial))
return result;
return getFailure<Type>();
}
Result<MetadataKind>
getKindForRemoteTypeMetadata(RemoteAddress metadata) override {
auto result = Reader.readKindFromMetadata(metadata.getAddressData());
if (result)
return *result;
return getFailure<MetadataKind>();
}
Result<NominalTypeDecl*>
getDeclForRemoteNominalTypeDescriptor(RemoteAddress descriptor) override {
if (auto result =
Reader.readNominalTypeFromDescriptor(descriptor.getAddressData()))
return dyn_cast<NominalTypeDecl>((GenericTypeDecl *) result);
return getFailure<NominalTypeDecl*>();
}
std::unique_ptr<IRGenContext> createIRGenContext() override {
return IRGenContext::create(getBuilder().getASTContext(),
getBuilder().getNotionalDC());
}
Result<uint64_t>
getOffsetOfTupleElementFromMetadata(RemoteAddress metadata,
unsigned index) override {
typename Runtime::StoredSize offset;
if (Reader.readTupleElementOffset(metadata.getAddressData(),
index, &offset))
return uint64_t(offset);
return getFailure<uint64_t>();
}
Result<uint64_t>
getOffsetOfFieldFromMetadata(RemoteAddress metadata,
StringRef memberName) override {
// TODO: this would be useful for resilience
return fail<uint64_t>(Failure::Unimplemented,
"look up field offset by name");
}
Result<RemoteAddress>
getHeapMetadataForObject(RemoteAddress object) override {
auto result = Reader.readMetadataFromInstance(object.getAddressData());
if (result) return RemoteAddress(*result);
return getFailure<RemoteAddress>();
}
Result<OpenedExistential>
getDynamicTypeAndAddressClassExistential(RemoteAddress object) {
auto pointerval = Reader.readResolvedPointerValue(object.getAddressData());
if (!pointerval)
return getFailure<OpenedExistential>();
auto result = Reader.readMetadataFromInstance(*pointerval);
if (!result)
return getFailure<OpenedExistential>();
auto typeResult = Reader.readTypeFromMetadata(result.getValue());
if (!typeResult)
return getFailure<OpenedExistential>();
return OpenedExistential(std::move(typeResult),
RemoteAddress(*pointerval));
}
Result<OpenedExistential>
getDynamicTypeAndAddressErrorExistential(RemoteAddress object,
bool dereference=true) {
if (dereference) {
auto pointerval = Reader.readResolvedPointerValue(object.getAddressData());
if (!pointerval)
return getFailure<OpenedExistential>();
object = RemoteAddress(*pointerval);
}
auto result =
Reader.readMetadataAndValueErrorExistential(object);
if (!result)
return getFailure<OpenedExistential>();
auto typeResult =
Reader.readTypeFromMetadata(result->MetadataAddress.getAddressData());
if (!typeResult)
return getFailure<OpenedExistential>();
// When the existential wraps a class type, LLDB expects that the
// address returned is the class instance itself and not the address
// of the reference.
auto payloadAddress = result->PayloadAddress;
if (!result->IsBridgedError &&
typeResult->getClassOrBoundGenericClass()) {
auto pointerval = Reader.readResolvedPointerValue(
payloadAddress.getAddressData());
if (!pointerval)
return getFailure<OpenedExistential>();
payloadAddress = RemoteAddress(*pointerval);
}
return OpenedExistential(std::move(typeResult),
std::move(payloadAddress));
}
Result<OpenedExistential>
getDynamicTypeAndAddressOpaqueExistential(RemoteAddress object) {
auto result = Reader.readMetadataAndValueOpaqueExistential(object);
if (!result)
return getFailure<OpenedExistential>();
auto typeResult =
Reader.readTypeFromMetadata(result->MetadataAddress.getAddressData());
if (!typeResult)
return getFailure<OpenedExistential>();
// When the existential wraps a class type, LLDB expects that the
// address returned is the class instance itself and not the address
// of the reference.
auto payloadAddress = result->PayloadAddress;
if (typeResult->getClassOrBoundGenericClass()) {
auto pointerval = Reader.readResolvedPointerValue(
payloadAddress.getAddressData());
if (!pointerval)
return getFailure<OpenedExistential>();
payloadAddress = RemoteAddress(*pointerval);
}
return OpenedExistential(std::move(typeResult),
std::move(payloadAddress));
}
Result<OpenedExistential>
getDynamicTypeAndAddressExistentialMetatype(RemoteAddress object) {
// The value of the address is just the input address.
// The type is obtained through the following sequence of steps:
// 1) Loading a pointer from the input address
// 2) Reading it as metadata and resolving the type
// 3) Wrapping the resolved type in an existential metatype.
auto pointerval = Reader.readResolvedPointerValue(object.getAddressData());
if (!pointerval)
return getFailure<OpenedExistential>();
auto typeResult = Reader.readTypeFromMetadata(*pointerval);
if (!typeResult)
return getFailure<OpenedExistential>();
auto wrappedType = ExistentialMetatypeType::get(typeResult);
if (!wrappedType)
return getFailure<OpenedExistential>();
return OpenedExistential(std::move(wrappedType),
std::move(object));
}
/// Resolve the dynamic type and the value address of an error existential
/// object, Unlike getDynamicTypeAndAddressForExistential(), this function
/// takes the address of the instance and not the address of the reference.
Result<OpenedExistential>
getDynamicTypeAndAddressForError(RemoteAddress object) override {
return getDynamicTypeAndAddressErrorExistential(object,
/*dereference=*/false);
}
/// Resolve the dynamic type and the value address of an existential,
/// given its address and its static type. For class and error existentials,
/// this API takes a pointer to the instance reference rather than the
/// instance reference itself.
Result<OpenedExistential>
getDynamicTypeAndAddressForExistential(RemoteAddress object,
Type staticType) override {
// If this is not an existential, give up.
if (!staticType->isAnyExistentialType())
return getFailure<OpenedExistential>();
// Handle the case where this is an ExistentialMetatype.
if (!staticType->isExistentialType())
return getDynamicTypeAndAddressExistentialMetatype(object);
// This should be an existential type at this point.
auto layout = staticType->getExistentialLayout();
switch (layout.getKind()) {
case ExistentialLayout::Kind::Class:
return getDynamicTypeAndAddressClassExistential(object);
case ExistentialLayout::Kind::Error:
return getDynamicTypeAndAddressErrorExistential(object);
case ExistentialLayout::Kind::Opaque:
return getDynamicTypeAndAddressOpaqueExistential(object);
}
llvm_unreachable("invalid type kind");
}
Result<Type>
getUnderlyingTypeForOpaqueType(remote::RemoteAddress opaqueDescriptor,
SubstitutionMap substitutions,
unsigned ordinal) override {
auto underlyingType = Reader
.readUnderlyingTypeForOpaqueTypeDescriptor(
opaqueDescriptor.getAddressData(), ordinal)
.getType();
if (!underlyingType)
return getFailure<Type>();
return underlyingType.subst(substitutions);
}
};
} // end anonymous namespace
static RemoteASTContextImpl *createImpl(ASTContext &ctx,
std::shared_ptr<MemoryReader> &&reader) {
auto &target = ctx.LangOpts.Target;
assert(target.isArch32Bit() || target.isArch64Bit());
if (target.isArch32Bit()) {
using Target = External<RuntimeTarget<4>>;
return new RemoteASTContextConcreteImpl<Target>(std::move(reader), ctx);
} else {
using Target = External<RuntimeTarget<8>>;
return new RemoteASTContextConcreteImpl<Target>(std::move(reader), ctx);
}
}
static RemoteASTContextImpl *asImpl(void *impl) {
return static_cast<RemoteASTContextImpl*>(impl);
}
RemoteASTContext::RemoteASTContext(ASTContext &ctx,
std::shared_ptr<MemoryReader> reader)
: Impl(createImpl(ctx, std::move(reader))) {
}
RemoteASTContext::~RemoteASTContext() {
delete asImpl(Impl);
}
Result<Type>
RemoteASTContext::getTypeForRemoteTypeMetadata(RemoteAddress address,
bool skipArtificial) {
return asImpl(Impl)->getTypeForRemoteTypeMetadata(address, skipArtificial);
}
Result<MetadataKind>
RemoteASTContext::getKindForRemoteTypeMetadata(remote::RemoteAddress address) {
return asImpl(Impl)->getKindForRemoteTypeMetadata(address);
}
Result<NominalTypeDecl *>
RemoteASTContext::getDeclForRemoteNominalTypeDescriptor(RemoteAddress address) {
return asImpl(Impl)->getDeclForRemoteNominalTypeDescriptor(address);
}
Result<uint64_t>
RemoteASTContext::getOffsetOfMember(Type type, RemoteAddress optMetadata,
StringRef memberName) {
return asImpl(Impl)->getOffsetOfMember(type, optMetadata, memberName);
}
Result<remote::RemoteAddress>
RemoteASTContext::getHeapMetadataForObject(remote::RemoteAddress address) {
return asImpl(Impl)->getHeapMetadataForObject(address);
}
Result<OpenedExistential>
RemoteASTContext::getDynamicTypeAndAddressForError(
remote::RemoteAddress address) {
return asImpl(Impl)->getDynamicTypeAndAddressForError(address);
}
Result<OpenedExistential>
RemoteASTContext::getDynamicTypeAndAddressForExistential(
remote::RemoteAddress address, Type staticType) {
return asImpl(Impl)->getDynamicTypeAndAddressForExistential(address,
staticType);
}
Result<Type>
RemoteASTContext::getUnderlyingTypeForOpaqueType(
remote::RemoteAddress opaqueDescriptor,
SubstitutionMap substitutions,
unsigned ordinal) {
return asImpl(Impl)->getUnderlyingTypeForOpaqueType(opaqueDescriptor,
substitutions, ordinal);
}
| C++ | 3 | gandhi56/swift | lib/RemoteAST/RemoteAST.cpp | [
"Apache-2.0"
] |
/**
* This file is part of the Phalcon.
*
* (c) Phalcon Team <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Phalcon\Session;
/**
* Phalcon\Session\Exception
*
* Exceptions thrown in Phalcon\Session will use this class
*/
class Exception extends \Phalcon\Exception
{
}
| Zephir | 3 | zsilbi/cphalcon | phalcon/Session/Exception.zep | [
"BSD-3-Clause"
] |
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Inputs {
};
struct Outputs {
half4 sk_FragColor [[color(0)]];
};
struct Globals {
half attr1;
int attr2;
float attr3;
half4 attr4;
};
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
Globals _globals{{}, 123, {}, half4(4.0h, 5.0h, 6.0h, 7.0h)};
(void)_globals;
Outputs _out;
(void)_out;
_out.sk_FragColor = half4(_globals.attr1, half(_globals.attr2), half(_globals.attr3), _globals.attr4.x);
return _out;
}
| Metal | 3 | fourgrad/skia | tests/sksl/metal/NumericGlobals.metal | [
"BSD-3-Clause"
] |
/* POSA specific CSS */
/*
* $Id: aosa.css 1331 2012-04-23 01:30:18Z amy $
*/
img.cover {
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 2em;
}
body.help {
margin-left: auto;
margin-right: auto;
}
div.box {
display: block;
margin-left: auto;
margin-right: auto;
outline-color: gray;
outline-style: solid;
outline-width: 1px;
padding-bottom: 1px;
padding-left: 10px;
padding-right: 10px;
padding-top: 1px;
}
div.figure {
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 1px;
padding-left: 10px;
padding-right: 10px;
padding-top: 1px;
text-align: center;
}
div.footnotes {
border-top: solid gray 1px;
}
div.footnotes h2 {
font-style: italic;
}
div.sect h2 {
font-style: italic;
}
div.subsect h3 {
font-style: italic;
}
div.table {
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 1px;
padding-left: 10px;
padding-right: 10px;
padding-top: 1px;
text-align: center;
}
div.table table {
font-size: small;
margin-left: auto;
margin-right: auto;
outline-color: gray;
outline-style: solid;
outline-width: 1px;
}
dl.faq dt {
font-style: italic;
}
dl.faq dd {
margin-bottom: 10px;
}
h1.chaptertitle {
font-style: italic;
font-size: xx-large;
}
h1.chapterauthor {
font-style: italic;
font-size: x-large;
}
p.boxtitle {
text-align: center;
font-style: italic;
font-weight: bold;
}
p.pullquote {
font-style: italic;
}
table.bibtable td {
text-align: center;
}
table.tasks th {
vertical-align: top;
}
td {
vertical-align: top;
}
td.center {
vertical-align: top;
text-align: center;
}
th {
text-align: left;
}
th.center {
text-align: center;
}
/* change colour of stripes in tables to match our branding
Doesn't actually work and I don't know why. --ARB */
.table-striped tbody tr:nth-child(odd) td,
table.table-striped tbody tr:nth-child(odd) th {
background-color: #D3E5F0;
}
/* Change colour of hero element background to our nice blue. */
.hero-unit {
background-color: #C8D9E3;
}
.center {
text-align: center;
}
/* change table elements */
* + table {
border-style:solid;
border-width:1px;
border-color:#e7e3e7;
}
* + table th, * + table td {
border-style:dashed;
border-width:1px;
border-color:#e7e3e7;
padding-left: 3px;
padding-right: 3px;
}
* + table th {
border-style:solid;
font-weight:bold;
background: url("/images/noise.png?1330434582") repeat scroll left top #F7F3F7;
}
* + table th[align="left"], * + table td[align="left"] {
text-align:left;
}
* + table th[align="right"], * + table td[align="right"] {
text-align:right;
}
* + table th[align="center"], * + table td[align="center"] {
text-align:center;
} | CSS | 2 | adlerliu/500lines | html/500L/static/css/500L.css | [
"CC-BY-3.0"
] |
-------------------------------------------------------------------------------------------------------------------------------
--
-- Name Transformation Presets
-- Description Adds a rollout to any object that allows you to store and retrieve transforms.
-- Useful for things like IK chains, or setting and getting camera positions
--
-- Original idea from this thread: http://forums.cgsociety.org/showthread.php?f=98&t=632251
--
-------------------------------------------------------------------------------------------------------------------------------
--
-- version: 0.7
-- max version: 7
--
-- author: Dave Stewart
-- website: www.davestewart.co.uk / www.keyframesandcode.com
/*
-- history: 16 May 2008 - created
17 May 2008 - added abiilty to rename presets
- added support for switching between target and free cameras
- converted script to macroscript
18 May 2008 - added abilty to save and restore an IK chain's swivel angle
- added "Remove" ui option
- updated a naming bug when updating
-- to do: - Reorder items
- copy / paste transform list from / to objects
- import / export transforms
- grab list fom keyframes
*/
-------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------
-- Macroscript
-------------------------------------------------------------------------------------------------------------------------------
macroScript TransformPresets
category:"Animation Tools"
buttonText:"Add transform presets"
tooltip:"Transform presets"
(
-------------------------------------------------------------------------------------------------------------------------------
-- CA definition
-------------------------------------------------------------------------------------------------------------------------------
--if transformPresetsCA == undefined do
transformPresetsCA = attributes transformPresetsAtts
(
parameters main rollout:params
(
targetTransforms type:#matrix3tab tabSize:0 tabSizeVariable:true
objectTransforms type:#matrix3tab tabSize:0 tabSizeVariable:true
listboxNames type:#stringtab tabSize:0 tabSizeVariable:true
)
rollout params "Transform Presets"
(
-------------------------------------------------------------------------------------------------------------------------------
-- variables
-------------------------------------------------------------------------------------------------------------------------------
local obj
-------------------------------------------------------------------------------------------------------------------------------
-- interface
-------------------------------------------------------------------------------------------------------------------------------
GroupBox grpNames "Presets" pos:[4,8] width:152 height:196
listbox lbxNames "" pos:[12,24] width:136 height:13
GroupBox grpManage "Manage" pos:[4,208] width:152 height:104
editText edtName "" pos:[8,224] width:140 height:17
button btnAdd "Add" pos:[12,248] width:136 height:16
button btnUpdate "Update" pos:[12,264] width:136 height:16
button btnDelete "Delete" pos:[12,288] width:136 height:16
GroupBox grpRemove "Remove" pos:[4,320] width:152 height:40
button btnRemove "Remove" pos:[12,336] width:136 height:16
-------------------------------------------------------------------------------------------------------------------------------
-- functions
-------------------------------------------------------------------------------------------------------------------------------
-- name
function setName index =
(
edtName.text = lbxNames.items[index]
)
function getName update:false =
(
if update == true then
(
if lbxNames.selection != 0 then edtName.text--lbxNames.items[lbxNames.selection]
else ""
)
else(
if edtName.text == "" then "Transform " + (lbxNames.items.count + 1) as string
else edtName.text
)
)
-- list
function updateItems =
(
local items = for name in listboxNames collect name
lbxNames.items = items
)
-- transforms
function getTransform obj index =
(
-- object
obj.transform = objectTransforms[index]
-- target
local trgTransform = targetTransforms[index]
-- IK chain object
if classof obj == IK_Chain_Object then
(
local a = (quattoeuler trgTransform.rotation).z
local ctrl = obj.transform.controller
if isproperty ctrl "swivelAngle" do setproperty ctrl "swivelAngle" a
)
-- targetted objects
else if obj.target != undefined AND trgTransform != undefined do
(
obj.target.transform = trgTransform
)
)
function setTransform obj name index: =
(
-- new transform
if index == unsupplied then
(
local tm = matrix3 1
append listboxNames ""
append objectTransforms tm
append targetTransforms tm
index = objectTransforms.count
)
-- get target transforms
-- variables
local trgTransform = matrix3 0
-- IK chain object
-- store the swivel angle property in the z rotation property of the target matrix
if classof obj == IK_Chain_Object then
(
local ctrl = obj.transform.controller
local a = if isproperty ctrl "swivelAngle" then getproperty ctrl "swivelAngle" else 0
trgTransform = rotateZMatrix a
)
-- free camera
-- store a virtual target 100 units in front of the camera
else if superclassof obj == Camera AND obj.target == undefined then
(
local pos = in coordsys obj obj.pos + ([0,0,-100] * obj.transform)
trgTransform.pos = pos
)
-- targetted object
-- store the target transform
else if obj.target != undefined then
(
trgTransform = obj.target.transform
)
-- normal object
-- store the object transform as the (non-existant) target transform
else
(
trgTransform = obj.transform
)
-- assign transforms
listboxNames[index] = name
objectTransforms[index] = obj.transform
targetTransforms[index] = trgTransform
-- update
updateItems()
)
function deleteTransform obj index =
(
deleteItem objectTransforms index
if obj.target != undefined do deleteItem targetTransforms index
deleteItem listboxNames index
updateItems()
)
-------------------------------------------------------------------------------------------------------------------------------
-- handlers
-------------------------------------------------------------------------------------------------------------------------------
on btnAdd pressed do
(
local obj = $
local name = getName update:false
if obj != undefined AND name != "" do
(
setTransform obj name
lbxNames.selection = lbxNames.items.count
edtName.text = ""
)
)
on btnUpdate pressed do
(
local index = lbxNames.selection
if index != 0 do
(
local obj = $
local name = getName update:true
if obj != undefined AND name != "" do setTransform obj name index:index
)
)
on btnDelete pressed do
(
local obj = $
local sel = lbxNames.selection
if obj != undefined AND sel > 0 do deleteTransform obj sel
)
on params open do
(
updateItems()
getName()
)
on lbxNames selected index do setName index
on lbxNames doubleclicked index do
(
local obj = $
if obj != undefined do getTransform obj index
)
on btnRemove pressed do
(
if queryBox "Are you sure you want to remove this rollout?" == true do
(
local defs = custAttributes.getDefs $ baseObject:true
for def in defs do
(
if def.name == #transformPresetsAtts do custAttributes.delete $ def baseObject:true
)
)
)
)
)
-------------------------------------------------------------------------------------------------------------------------------
-- apply CA
-------------------------------------------------------------------------------------------------------------------------------
on isEnabled do $ != undefined
on execute do if $ != undefined do custAttributes.add $ transformPresetsCA baseObject:true
)
/*
custAttributes.delete $ 1 baseObject:true
macros.run "Animation Tools" "TransformPresets"
*/ | MAXScript | 5 | 89096000/MaxScript | Animation/Transform Presets/Animation Tools-TransformPresets.mcr | [
"MIT"
] |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" />
<xsl:variable name="param1" select="'default global'"/>
<xsl:template match="/">
<xsl:call-template name="Test">
<xsl:with-param name="param1"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="Test">
<result><xsl:value-of select="$param1" /></result>
</xsl:template>
</xsl:stylesheet> | XSLT | 4 | pyracanda/runtime | src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltApiV2/AddParameterFB7.xsl | [
"MIT"
] |
unit Antlr.Runtime.Collections.Tests;
{
Delphi DUnit Test Case
----------------------
This unit contains a skeleton test case class generated by the Test Case Wizard.
Modify the generated code to correctly setup and call the methods from the unit
being tested.
}
interface
uses
TestFramework,
Antlr.Runtime.Collections,
Generics.Collections,
Antlr.Runtime.Tools;
type
// Test methods for class IHashList
TestIHashList = class(TTestCase)
strict private
FIHashList: IHashList<Integer, String>;
public
procedure SetUp; override;
procedure TearDown; override;
published
procedure TestInsertionOrder;
procedure TestRemove;
end;
// Test methods for class IStackList
TestIStackList = class(TTestCase)
strict private
FIStackList: IStackList<String>;
public
procedure SetUp; override;
procedure TearDown; override;
published
procedure TestPushPop;
procedure TestPeek;
end;
implementation
uses
SysUtils;
const
Values: array [0..9] of Integer = (50, 1, 33, 76, -22, 22, 34, 2, 88, 12);
procedure TestIHashList.SetUp;
var
I: Integer;
begin
FIHashList := THashList<Integer, String>.Create;
for I in Values do
FIHashList.Add(I,'Value' + IntToStr(I));
end;
procedure TestIHashList.TearDown;
begin
FIHashList := nil;
end;
procedure TestIHashList.TestInsertionOrder;
var
I: Integer;
P: TPair<Integer, String>;
begin
I := 0;
for P in FIHashList do
begin
CheckEquals(P.Key, Values[I]);
CheckEquals(P.Value, 'Value' + IntToStr(Values[I]));
Inc(I);
end;
end;
procedure TestIHashList.TestRemove;
var
I: Integer;
P: TPair<Integer, String>;
begin
FIHashList.Remove(34);
I := 0;
for P in FIHashList do
begin
if (Values[I] = 34) then
Inc(I);
CheckEquals(P.Key, Values[I]);
CheckEquals(P.Value, 'Value' + IntToStr(Values[I]));
Inc(I);
end;
end;
procedure TestIStackList.SetUp;
begin
FIStackList := TStackList<String>.Create;
end;
procedure TestIStackList.TearDown;
begin
FIStackList := nil;
end;
procedure TestIStackList.TestPushPop;
var
Item: String;
begin
Item := 'Item 1';
FIStackList.Push(Item);
Item := 'Item 2';
FIStackList.Push(Item);
CheckEquals(FIStackList.Pop,'Item 2');
CheckEquals(FIStackList.Pop,'Item 1');
end;
procedure TestIStackList.TestPeek;
begin
FIStackList.Push('Item 1');
FIStackList.Push('Item 2');
FIStackList.Push('Item 3');
FIStackList.Pop;
CheckEquals(FIStackList.Peek, 'Item 2');
CheckEquals(FIStackList.Pop, 'Item 2');
end;
initialization
// Register any test cases with the test runner
RegisterTest(TestIHashList.Suite);
RegisterTest(TestIStackList.Suite);
end.
| Pascal | 5 | DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials | java/java2py/antlr-3.1.3/runtime/Delphi/Sources/Antlr3.Runtime.Tests/Antlr.Runtime.Collections.Tests.pas | [
"Apache-2.0"
] |
def sym1: 1;
def sym2: 1;
| JSONiq | 0 | aakropotkin/jq | tests/modules/test_bind_order1.jq | [
"CC-BY-3.0"
] |
# This file is a part of Julia. License is MIT: https://julialang.org/license
# script to generate tables of common symbols
# steps to rerun this:
# 1. empty the contents of common_symbols*.inc
# 2. build
# 3. cd src && ../julia --depwarn=no gen_sysimg_symtab.jl
import Base.Iterators: take, drop
function _eachmethod(f, m::Module, visited, vmt)
push!(visited, m)
for nm in names(m, all=true)
if isdefined(m, nm)
x = getfield(m, nm)
if isa(x, Module) && !in(x, visited)
_eachmethod(f, x, visited, vmt)
elseif isa(x, Function)
mt = typeof(x).name.mt
if !in(mt, vmt)
push!(vmt, mt)
Base.visit(f, mt)
end
elseif isa(x, Type)
x = Base.unwrap_unionall(x)
if isa(x, DataType) && isdefined(x.name, :mt)
mt = x.name.mt
if !in(mt, vmt)
push!(vmt, mt)
Base.visit(f, mt)
end
end
end
end
end
end
function eachmethod(f, mods = Base.loaded_modules_array())
visited = Set{Module}()
vmt = Set{Any}()
for mod in mods
_eachmethod(f, mod, visited, vmt)
end
end
function symcounts()
rts = IdDict{Any,Int}()
eachmethod() do m
if isdefined(m, :roots)
foreach(m.roots) do r
isa(r, Symbol) && (rts[r] = get(rts, r, 0) + 1)
end
end
end
sort!(Any[x.first for x in rts], by = x->rts[x], rev=true)
end
syms = symcounts()
filter!(s -> let str = string(s)
!isabspath(str) &&
!startswith(str, "#") &&
!in('\\', str)
end,
syms)
function outputline(io, name)
println(io, "jl_symbol(\"", name, "\"),")
end
open(f->foreach(l->outputline(f,l), take(syms, 100)), "common_symbols1.inc", "w")
open(f->foreach(l->outputline(f,l), take(drop(syms, 100), 254)), "common_symbols2.inc", "w")
| Julia | 4 | jonas-schulze/julia | src/gen_sysimg_symtab.jl | [
"MIT"
] |
;###########################################################
; Created by tmplinshi
; CreateFormData - Creates "multipart/form-data" for http post
; http://autohotkey.com/boards/viewtopic.php?f=6&t=7647
;###########################################################
; Used for WinHttp.WinHttpRequest.5.1, Msxml2.XMLHTTP ...
CreateFormData(ByRef retData, ByRef retHeader, objParam) {
New CreateFormData(retData, retHeader, objParam)
}
; Used for WinInet
CreateFormData_WinInet(ByRef retData, ByRef retHeader, objParam) {
New CreateFormData(safeArr, retHeader, objParam)
size := safeArr.MaxIndex() + 1
VarSetCapacity(retData, size, 1)
DllCall("oleaut32\SafeArrayAccessData", "ptr", ComObjValue(safeArr), "ptr*", pdata)
DllCall("RtlMoveMemory", "ptr", &retData, "ptr", pdata, "ptr", size)
DllCall("oleaut32\SafeArrayUnaccessData", "ptr", ComObjValue(safeArr))
}
Class CreateFormData {
__New(ByRef retData, ByRef retHeader, objParam) {
CRLF := "`r`n"
Boundary := this.RandomBoundary()
BoundaryLine := "------------------------------" . Boundary
; Loop input paramters
binArrs := []
fileArrs := []
For k, v in objParam
{
If IsObject(v) {
For i, FileName in v
{
str := BoundaryLine . CRLF
. "Content-Disposition: form-data; name=""" . k . """; filename=""" . FileName . """" . CRLF
. "Content-Type: " . this.MimeType(FileName) . CRLF . CRLF
fileArrs.Push( BinArr_FromString(str) )
fileArrs.Push( BinArr_FromFile(FileName) )
fileArrs.Push( BinArr_FromString(CRLF) )
}
} Else {
str := BoundaryLine . CRLF
. "Content-Disposition: form-data; name=""" . k """" . CRLF . CRLF
. v . CRLF
binArrs.Push( BinArr_FromString(str) )
}
}
binArrs.push( fileArrs* )
str := BoundaryLine . "--" . CRLF
binArrs.Push( BinArr_FromString(str) )
retData := BinArr_Join(binArrs*)
retHeader := "multipart/form-data; boundary=----------------------------" . Boundary
}
RandomBoundary() {
str := "0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z"
Sort, str, D| Random
str := StrReplace(str, "|")
Return SubStr(str, 1, 12)
}
MimeType(FileName) {
n := FileOpen(FileName, "r").ReadUInt()
Return (n = 0x474E5089) ? "image/png"
: (n = 0x38464947) ? "image/gif"
: (n&0xFFFF = 0x4D42 ) ? "image/bmp"
: (n&0xFFFF = 0xD8FF ) ? "image/jpeg"
: (n&0xFFFF = 0x4949 ) ? "image/tiff"
: (n&0xFFFF = 0x4D4D ) ? "image/tiff"
: "application/octet-stream"
}
}
; Update: 2015-6-4 - Added BinArr_ToFile()
BinArr_FromString(str) {
oADO := ComObjCreate("ADODB.Stream")
oADO.Type := 2 ; adTypeText
oADO.Mode := 3 ; adModeReadWrite
oADO.Open
oADO.Charset := "UTF-8"
oADO.WriteText(str)
oADO.Position := 0
oADO.Type := 1 ; adTypeBinary
oADO.Position := 3 ; Skip UTF-8 BOM
return oADO.Read, oADO.Close
}
BinArr_FromFile(FileName) {
oADO := ComObjCreate("ADODB.Stream")
oADO.Type := 1 ; adTypeBinary
oADO.Open
oADO.LoadFromFile(FileName)
return oADO.Read, oADO.Close
}
BinArr_Join(Arrays*) {
oADO := ComObjCreate("ADODB.Stream")
oADO.Type := 1 ; adTypeBinary
oADO.Mode := 3 ; adModeReadWrite
oADO.Open
For i, arr in Arrays
oADO.Write(arr)
oADO.Position := 0
return oADO.Read, oADO.Close
}
BinArr_ToString(BinArr, Encoding := "UTF-8") {
oADO := ComObjCreate("ADODB.Stream")
oADO.Type := 1 ; adTypeBinary
oADO.Mode := 3 ; adModeReadWrite
oADO.Open
oADO.Write(BinArr)
oADO.Position := 0
oADO.Type := 2 ; adTypeText
oADO.Charset := Encoding
return oADO.ReadText, oADO.Close
}
BinArr_ToFile(BinArr, FileName) {
oADO := ComObjCreate("ADODB.Stream")
oADO.Type := 1 ; adTypeBinary
oADO.Open
oADO.Write(BinArr)
oADO.SaveToFile(FileName, 2)
oADO.Close
}
| AutoHotkey | 5 | standardgalactic/PuloversMacroCreator | LIB/CreateFormData.ahk | [
"Unlicense"
] |
@make[Manual] @comment{-*- Dictionary: /afs/cs/project/clisp/docs/hem/hem; Mode: spell; Package: Hemlock; Log: /usr/lisp/scribe/hem/hem-docs.log -*-}
@Device[postscript]
@style(FontFamily = TimesRoman)
@Style(Spacing = 1.2 lines)
@Style(StringMax = 5000)
@style(Hyphenation = On)
@style(Date="March 1952")
@use(database "/afs/cs/project/clisp/docs/database/")
@Style [DoubleSided]
@Libraryfile[ArpaCredit]
@Libraryfile[Hem]
@Libraryfile[Spice]
@Libraryfile[Uttir]
@String(ReportTitle "Hemlock Command Implementor's Manual")
@comment<
@begin[TitlePage]
@begin[TitleBox]
>
@blankspace(1.3inches)
@heading[Hemlock Command Implementor's Manual]
@center[
@b<Bill Chiles>
@b<Rob MacLachlan>
@b<@value[date]>
@b<CMU-CS-89-134-R1>
]
@comment<@end[TitleBox]>
@blankspace(2lines)
@begin[Center]
School of Computer Science
Carnegie Mellon University
Pittsburgh, PA 15213
@end[Center]
@blankspace(2lines)
@begin[Center]
This is a revised version of Technical Report CMU-CS-87-159.
@end[Center]
@heading[Abstract]
@begin(Text, indent 0)
This document describes how to write commands for the @Hemlock text editor, as
of version M3.2. @Hemlock is a customizable, extensible text editor whose
initial command set closely resembles that of ITS/TOPS-20 @Emacs. @Hemlock is
written in the CMU Common Lisp and has been ported to other implementations.
@end(Text)
@blankspace(0.5in)
@begin[ResearchCredit]
@arpacredit[Contract=Basic87-90]
@end[ResearchCredit]
@comment<@end[TitlePage]>
@commandstring(dash = "@Y[M]")
@Tabclear
@chapter(Introduction)
@hemlock is a text editor which follows in the tradition of editors
such as EMACS and the Lisp Machine editor ZWEI. In its basic form,
@hemlock has almost the same command set as EMACS, and similar
features such as multiple buffers and windows, extended commands,
and built in documentation.
Both user extensions and the original commands are written in Lisp,
therefore a command implementor will have a working knowledge of this
language. Users not familiar with Lisp need not despair however. Many
users of Multics EMACS, another text editor written in Lisp, came to learn
Lisp simply for the purpose of writing their own editor extensions, and
found, to their surprise, that it was really pretty easy to write simple
commands.
This document describes the Common Lisp functions, macros and data structures
that are used to implement new commands. The basic editor consists of a set of
Lisp utility functions for manipulating buffers and the other data structures
of the editor as well as handling the display. All user level commands are
written in terms of these functions. To find out how to define commands see
chapter @ref[commands].
@chapter(Representation of Text)
@index (Lines)
@section(Lines)
In @hemlock all text is in some @i[line]. Text is broken into lines wherever
it contains a newline character; newline characters are never stored, but are
assumed to exist between every pair of lines. The implicit newline character
is treated as a single character by the text primitives.
@defun[fun {linep}, args {@i[line]}]
This function returns @true if @i[line] is a @f[line] object, otherwise @nil.
@enddefun
@defun[fun {line-string}, args {@i[line]}]
Given a @i(line), this function returns as a simple string the characters in
the line. This is @f[setf]'able to set the @f[line-string] to any string that
does not contain newline characters. It is an error to destructively modify
the result of @f[line-string] or to destructively modify any string after the
@f[line-string] of some line has been set to that string.
@enddefun
@defun[fun {line-previous}, args {@i[line]}]
@defun1[fun {line-next}, args {@i[line]}]
Given a @i(line), @f[line-previous] returns the previous line or @nil if there
is no previous line. Similarly, @f[line-next] returns the line following
@i[line] or @nil.
@enddefun
@defun[fun {line-buffer}, args {@i[line]}]
This function returns the buffer which contains this @i(line). Since a
line may not be associated with any buffer, in which case @f[line-buffer]
returns @nil.
@enddefun
@defun[fun {line-length}, args {@i[line]}]
This function returns the number of characters in the @i(line). This excludes
the newline character at the end.
@enddefun
@defun[fun {line-character}, args {@i[line] @i[index]}]
This function returns the character at position @i[index] within @i[line]. It
is an error for @i[index] to be greater than the length of the line or less
than zero. If @i[index] is equal to the length of the line, this returns a
@f[#\newline] character.
@enddefun
@defun[fun {line-plist}, args {@i[line]}]
This function returns the property-list for @i[line]. @f[setf], @f[getf],
@f[putf] and @f[remf] can be used to change properties. This is typically used
in conjunction with @f[line-signature] to cache information about the line's
contents.
@enddefun
@defun[fun {line-signature}, args {@i[line]}]
This function returns an object that serves as a signature for a @i[line]'s
contents. It is guaranteed that any modification of text on the line will
result in the signature changing so that it is not @f[eql] to any previous
value. The signature may change even when the text remains unmodified, but
this does not happen often.
@enddefun
@section(Marks)
@label[marks]
@index (Marks)
A mark indicates a specific position within the text represented by a line and
a character position within that line. Although a mark is sometimes loosely
referred to as pointing to some character, it in fact points between
characters. If the @f[charpos] is zero, the previous character is the newline
character separating the previous line from the mark's @f[line]. If the
charpos is equal to the number of characters in the line, the next character is
the newline character separating the current line from the next. If the mark's
line has no previous line, a mark with @f[charpos] of zero has no previous
character; if the mark's line has no next line, a mark with @f[charpos] equal
to the length of the line has no next character.
This section discusses the very basic operations involving marks, but a lot of
@hemlock programming is built on altering some text at a mark. For more
extended uses of marks see chapter @ref[doing-stuff].
@subsection(Kinds of Marks)
@index (Permanent marks)
@index (Temporary marks)
A mark may have one of two lifetimes: @i[temporary] or @i[permanent].
Permanent marks remain valid after arbitrary operations on the text; temporary
marks do not. Temporary marks are used because less bookkeeping overhead is
involved in their creation and use. If a temporary mark is used after the text
it points to has been modified results will be unpredictable. Permanent marks
continue to point between the same two characters regardless of insertions and
deletions made before or after them.
There are two different kinds of permanent marks which differ only in their
behavior when text is inserted @i(at the position of the mark); text is
inserted to the left of a @i[left-inserting] mark and to the right of
@i[right-inserting] mark.
@subsection(Mark Functions)
@defun[fun {markp}, args {@i[mark]}]
This function returns @true if @i[mark] is a @f[mark] object, otherwise @nil.
@enddefun
@defun[fun {mark-line}, args {@i[mark]}]
This function returns the line to which @i(mark) points.
@enddefun
@defun[fun {mark-charpos}, args {@i[mark]}]
This function returns the character position of the character after @i(mark).
If @i[mark]'s line has no next line, this returns the length of the line as
usual; however, there is actually is no character after the mark.
@enddefun
@defun[fun {mark-kind}, args {@i[mark]}]
This function returns one of @kwd[right-inserting], @kwd[left-inserting] or
@kwd[temporary] depending on the mark's kind. A corresponding @f[setf] form
changes the mark's kind.
@enddefun
@defun[fun {previous-character}, args {@i[mark]}]
@defun1[fun {next-character}, args {@i[mark]}]
This function returns the character immediately before (after) the position of
the @i[mark], or @nil if there is no previous (next) character. These
characters may be set with @f[setf] when they exist; the @f[setf] methods for
these forms signal errors when there is no previous or next character.
@enddefun
@subsection(Making Marks)
@defun[fun {mark}, args {@i[line] @i[charpos] @optional @i[kind]}]
This function returns a mark object that points to the @i(charpos)'th character
of the @i(line). @i(Kind) is the kind of mark to create, one of
@kwd[temporary], @kwd[left-inserting], or @kwd[right-inserting]. The default
is @kwd[temporary].
@enddefun
@defun[fun {copy-mark}, args {@i[mark] @optional @i[kind]}]
This function returns a new mark pointing to the same position and of the same
kind, or of kind @i[kind] if it is supplied.
@enddefun
@defun[fun {delete-mark}, args {@i[mark]}]
This function deletes @i(mark). Delete any permanent marks when you are
finished using it.
@enddefun
@Defmac[Fun {with-mark}, Args
{(@Mstar<(@i[mark] @i[pos] @mopt[@i(kind)])>) @Mstar<@i[form]>}]
This macro binds to each variable @i[mark] a mark of kind @i[kind], which
defaults to @kwd[temporary], pointing to the same position as the mark @i[pos].
On exit from the scope the mark is deleted. The value of the last @i[form] is
the value returned.
@enddefmac
@subsection(Moving Marks)
@index(Moving marks)
These functions destructively modify marks to point to new positions. Other
sections of this document describe mark moving routines specific to higher
level text forms than characters and lines, such as words, sentences,
paragraphs, Lisp forms, etc.
@defun[fun {move-to-position}, args {@i[mark] @i[charpos] @optional @i[line]}]
This function changes the @i(mark) to point to the given character position on
the line @i(line). @i(Line) defaults to @i[mark]'s line.
@enddefun
@defun[fun {move-mark}, args {@i[mark] @i[new-position]}]
This function moves @i[mark] to the same position as the mark @i[new-position]
and returns it.
@enddefun
@defun[fun {line-start}, args {@i[mark] @optional @i[line]}]
@defun1[fun {line-end}, args {@i[mark] @optional @i[line]}]
This function changes @i[mark] to point to the beginning or the end of @i(line)
and returns it. @i[Line] defaults to @i[mark]'s line.
@enddefun
@defun[fun {buffer-start}, args {@i[mark] @optional @i[buffer]}]
@defun1[fun {buffer-end}, args {@i[mark] @optional @i[buffer]}]
These functions change @i[mark] to point to the beginning or end of @i[buffer],
which defaults to the buffer @i[mark] currently points into. If @i[buffer] is
unsupplied, then it is an error for @i[mark] to be disassociated from any
buffer.
@enddefun
@defun[fun {mark-before}, args {@i[mark]}]
@defun1[fun {mark-after}, args {@i[mark]}]
These functions change @i[mark] to point one character before or after the
current position. If there is no character before/after the current position,
then they return @nil and leave @i[mark] unmodified.
@enddefun
@defun[fun {character-offset}, args {@i[mark] @i[n]}]
This function changes @i[mark] to point @i[n] characters after (@i[n] before if
@i[n] is negative) the current position. If there are less than @i[n]
characters after (before) the @i[mark], then this returns @nil and @i[mark] is
unmodified.
@enddefun
@defun[fun {line-offset}, args {@i[mark] @i[n] @optional @i[charpos]}]
This function changes @i[mark] to point @i[n] lines after (@i[n] before if
@i[n] is negative) the current position. The character position of the
resulting mark is
@lisp
(min (line-length @i(resulting-line)) (mark-charpos @i(mark)))
@endlisp
if @i[charpos] is unspecified, or
@lisp
(min (line-length @i(resulting-line)) @i(charpos))
@endlisp
if it is. As with @funref(character-offset), if there are not @i[n] lines then
@nil is returned and @i[mark] is not modified.
@enddefun
@section(Regions)
@index (Regions)
A region is simply a pair of marks: a starting mark and an ending mark.
The text in a region consists of the characters following the starting
mark and preceding the ending mark (keep in mind that a mark points between
characters on a line, not at them).
By modifying the starting or ending mark in a region it is possible to
produce regions with a start and end which are out of order or even in
different buffers. The use of such regions is undefined and may
result in arbitrarily bad behavior.
@subsection(Region Functions)
@defun[fun {region}, args {@i[start] @i[end]}]
This function returns a region constructed from the marks @i[start] and
@i[end]. It is an error for the marks to point to non-contiguous lines or for
@i(start) to come after @i(end).
@enddefun
@defun[fun {regionp}, args {@i[region]}]
This function returns @true if @i[region] is a @f[region] object, otherwise
@nil.
@enddefun
@defun[fun {make-empty-region}]
This function returns a region with start and end marks pointing to the start
of one empty line. The start mark is a @kwd[right-inserting] mark, and the end
is a @kwd[left-inserting] mark.
@enddefun
@defun[fun {copy-region}, args {@i[region]}]
This function returns a region containing a copy of the text in the specified
@i[region]. The resulting region is completely disjoint from @i[region] with
respect to data references @dash marks, lines, text, etc.
@enddefun
@defun[fun {region-to-string}, args {@i[region]}]
@defun1[fun {string-to-region}, args {@i[string]}]
These functions coerce regions to Lisp strings and vice versa. Within the
string, lines are delimited by newline characters.
@enddefun
@defun[fun {line-to-region}, args {@i[line]}]
This function returns a region containing all the characters on @i[line]. The
first mark is @kwd[right-inserting] and the last is @kwd[left-inserting].
@enddefun
@defun[fun {region-start}, args {@i[region]}]
@defun1[fun {region-end}, args {@i[region]}]
This function returns the start or end mark of @i(region).
@enddefun
@defun[fun {region-bounds}, args {@i[region]}]
This function returns as multiple-values the starting and ending marks of
@i[region].
@enddefun
@defun[fun {set-region-bounds}, args {@i[region] @i[start] @i[end]}]
This function sets the start and end of region to @i[start] and @i[end]. It is
an error for @i[start] to be after or in a different buffer from @i[end].
@enddefun
@index(Counting lines and characters)
@defun[fun {count-lines}, args {@i[region]}]
This function returns the number of lines in the @i(region), first and last
lines inclusive. A newline is associated with the line it follows, thus a
region containing some number of non-newline characters followed by one newline
is one line, but if a newline were added at the beginning, it would be two
lines.
@enddefun
@defun[fun {count-characters}, args {@i[region]}]
This function returns the number of characters in a given @i(region). This
counts line breaks as one character.
@enddefun
@defun[fun {check-region-query-size}, args {@i[region]}]
@defhvar1[var {Region Query Size}, val {30}]
@f[check-region-query-size] counts the lines in @i[region], and if their number
exceeds the @hid[Region Query Size] threshold, it prompts the user for
confirmation. This should be used in commands that perform destructive
operations and are not undoable. If the user responds negatively, then this
signals an editor-error, aborting whatever command was in progress.
@enddefun
@chapter(Buffers)
@index (Buffers)
@label[buffers]
A buffer is an environment within @hemlock consisting of:
@begin(enumerate)
A name.
A piece of text.
A current focus of attention, the point.
An associated file (optional).
A write protect flag.
Some variables (page @pageref[variables]).
Some key bindings (page @pageref[key-bindings]).
Some collection of modes (page @pageref[modes]).
Some windows in which it is displayed (page @pageref[windows]).
A list of modeline fields (optional).
@end(enumerate)
@section (The Current Buffer)
@index (Current buffer)
@defun[fun {current-buffer}]
@defhvar1[var {Set Buffer Hook}]
@defhvar1[var {After Set Buffer Hook}]
@f[current-buffer] returns the current buffer object. Usually this is the
buffer that @funref[current-window] is displaying. This value may be changed
with @f[setf], and the @f[setf] method invokes @hid[Set Buffer Hook] before the
change occurs with the new value. After the change occurs, the method invokes
@hid[After Set Buffer Hook] with the old value.
@enddefun
@defun[fun {current-point}]
This function returns the @f[buffer-point] of the current buffer.
This is such a common idiom in commands that it is defined despite
its trivial implementation.
@enddefun
@defun[fun {current-mark}]
@defun1[fun {pop-buffer-mark}]
@defun1[fun {push-buffer-mark}, args {@i[mark] @optional @i[activate-region]}]
@index(Buffer mark stack)
@index(Mark stack)
@label(mark-stack)
@f[current-mark] returns the top of the current buffer's mark stack. There
always is at least one mark at the beginning of the buffer's region, and all
marks returned are right-inserting.
@f[pop-buffer-mark] pops the current buffer's mark stack, returning the mark.
If the stack becomes empty, this pushes a new mark on the stack pointing to the
buffer's start. This always deactivates the current region (see section
@ref[active-regions]).
@f[push-buffer-mark] pushes @i[mark] into the current buffer's mark stack,
ensuring that the mark is right-inserting. If @i[mark] does not point into the
current buffer, this signals an error. Optionally, the current region is made
active, but this never deactivates the current region (see section
@ref[active-regions]). @i[Mark] is returned.
@enddefun
@defvar[var {buffer-list}]
This variable holds a list of all the buffer objects made with @f[make-buffer].
@enddefvar
@defvar[var {buffer-names}]
This variable holds a @f[string-table] (page @pageref(string-tables)) of all the
names of the buffers in @var[buffer-list]. The values of the entries are the
corresponding buffer objects.
@enddefvar
@defvar[var {buffer-history}]
This is a list of buffer objects ordered from those most recently selected to
those selected farthest in the past. When someone makes a buffer, an element
of @hid[Make Buffer Hook] adds this buffer to the end of this list. When
someone deletes a buffer, an element of @hid[Delete Buffer Hook] removes the
buffer from this list. Each buffer occurs in this list exactly once, but it
never contains the @var[echo-area-buffer].
@enddefvar
@defun[fun {change-to-buffer}, args {@i[buffer]}]
This switches to @i[buffer] in the @f[current-window] maintaining
@f[buffer-history].
@enddefun
@defun[fun {previous-buffer}]
This returns the first buffer from @var[buffer-history] that is not the
@f[current-buffer]. If none can be found, then this returns @nil.
@enddefun
@section(Buffer Functions)
@defun[fun {make-buffer}, args {@i[name]}, keys {[modes][modeline-fields][delete-hook]}]
@defhvar1[var {Make Buffer Hook}]
@defhvar1[var {Default Modeline Fields}]
@f[make-buffer] creates and returns a buffer with the given @i(name). If a
buffer named @i[name] already exists, @nil is returned. @i[Modes] is a list of
modes which should be in effect in the buffer, major mode first, followed by
any minor modes. If this is omitted then the buffer is created with the list
of modes contained in @hvarref[Default Modes]. @i[Modeline-fields] is a list
of modeline-field objects (see section @ref[modelines]) which may be @nil.
@f[delete-hook] is a list of delete hooks specific to this buffer, and
@f[delete-buffer] invokes these along with @hid[Delete Buffer Hook].
Buffers created with @f[make-buffer] are entered into the list
@var[buffer-list], and their names are inserted into the
string-table @var[buffer-names]. When a buffer is created the hook
@hid[Make Buffer Hook] is invoked with the new buffer.
@enddefun
@defun[fun {bufferp}, args {@i[buffer]}]
Returns @true if @i[buffer] is a @f[buffer] object, otherwise @nil.
@enddefun
@defun[fun {buffer-name}, args {@i[buffer]}]
@defhvar1[var {Buffer Name Hook}]
@f[buffer-name] returns the name, which is a string, of the given @i(buffer).
The corresponding @f[setf] method invokes @hid[Buffer Name Hook] with
@i[buffer] and the new name and then sets the buffer's name. When the user
supplies a name for which a buffer already exists, the @f[setf] method signals
an error.
@enddefun
@defun[fun {buffer-region}, args {@i[buffer]}]
Returns the @i[buffer]'s region. This can be set with @f[setf]. Note, this
returns the region that contains all the text in a buffer, not the
@funref[current-region].
@enddefun
@defun[fun {buffer-pathname}, args {@i[buffer]}]
@defhvar1[var {Buffer Pathname Hook}]
@f[buffer-pathname] returns the pathname of the file associated with
the given @i(buffer), or nil if it has no associated file. This is
the truename of the file as of the most recent time it was read or
written. There is a @f[setf] form to change the pathname. When the
pathname is changed the hook @hid[Buffer Pathname Hook] is invoked
with the buffer and new value.
@enddefun
@defun[fun {buffer-write-date}, args {@i[buffer]}]
Returns the write date for the file associated with the buffer in universal
time format. When this the @f[buffer-pathname] is set, use @f[setf] to set
this to the corresponding write date, or to @nil if the date is unknown or
there is no file.
@enddefun
@defun[fun {buffer-point}, args {@i[buffer]}]
Returns the mark which is the current location within @i[buffer]. To
move the point, use @f[move-mark] or @funref[move-to-position] rather
than setting @f[buffer-point] with @f[setf].
@enddefun
@defun[fun {buffer-mark}, args {@i[buffer]}]
@index(Buffer mark stack)
@index(Mark stack)
This function returns the top of @i[buffer]'s mark stack. There always
is at least one mark at the beginning of @i[buffer]'s region, and all marks
returned are right-inserting.
@enddefun
@defun[fun {buffer-start-mark}, args {@i[buffer]}]
@defun1[fun {buffer-end-mark}, args {@i[buffer]}]
These functions return the start and end marks of @i[buffer]'s region:
@Begin[ProgramExample]
(buffer-start-mark buffer) <==>
(region-start (buffer-region buffer))
and
(buffer-end-mark buffer) <==>
(region-end (buffer-region buffer))
@End[ProgramExample]
@enddefun
@defun[fun {buffer-writable}, args {@i[buffer]}]
@defhvar1[var "Buffer Writable Hook"]
This function returns @true if you can modify the @i(buffer), @nil if you
cannot. If a buffer is not writable, then any attempt to alter text in the
buffer results in an error. There is a @f[setf] method to change this value.
The @f[setf] method invokes the functions in @hid[Buffer Writable Hook] on the
buffer and new value before storing the new value.
@enddefun
@defun[fun {buffer-modified}, args {@i[buffer]}]
@defhvar1[var "Buffer Modified Hook"]
@f[buffer-modified] returns @true if the @i[buffer] has been modified, @nil if
it hasn't. This attribute is set whenever a text-altering operation is
performed on a buffer. There is a @f[setf] method to change this value.
The @f[setf] method invokes the functions in @hid[Buffer Modified Hook] with
the buffer whenever the value of the modified flag changes.
@enddefun
@defmac[fun {with-writable-buffer}, args {(@i[buffer]) @rest @i[forms]}]
This macro executes @i[forms] with @i[buffer]'s writable status set. After
@i[forms] execute, this resets the @i[buffer]'s writable and modified status.
@enddefmac
@defun[fun {buffer-signature}, args {@i[buffer]}]
This function returns an arbitrary number which reflects the buffer's current
@i[signature]. The result is @f[eql] to a previous result if and only if the
buffer has not been modified between the calls.
@enddefun
@defun[fun {buffer-variables}, args {@i[buffer]}]
This function returns a string-table (page @pageref[string-tables]) containing
the names of the buffer's local variables. See chapter @ref[variables].
@enddefun
@defun[fun {buffer-modes}, args {@i[buffer]}]
This function returns the list of the names of the modes active in @i[buffer].
The major mode is first, followed by any minor modes. See chapter @ref[modes].
@enddefun
@defun[fun {buffer-windows}, args {@i[buffer]}]
This function returns the list of all the windows in which the buffer may be
displayed. This list may include windows which are not currently visible. See
page @pageref[windows] for a discussion of windows.
@enddefun
@defun[fun {buffer-delete-hook}, args {@i[buffer]}]
This function returns the list of buffer specific functions @f[delete-buffer]
invokes when deleting a buffer. This is @f[setf]'able.
@enddefun
@defun[fun {delete-buffer}, args {@i[buffer]}]
@defhvar1[var {Delete Buffer Hook}]
@f[delete-buffer] removes @i[buffer] from @varref[buffer-list] and its name
from @varref[buffer-names]. Before @i[buffer] is deleted, this invokes the
functions on @i[buffer] returned by @f[buffer-delete-hook] and those found in
@hid[Delete Buffer Hook]. If @i[buffer] is the @f[current-buffer], or if it is
displayed in any windows, then this function signals an error.
@enddefun
@defun[fun {delete-buffer-if-possible}, args {@i[buffer]}]
This uses @f[delete-buffer] to delete @i[buffer] if at all possible. If
@i[buffer] is the @f[current-buffer], then this sets the @f[current-buffer] to
the first distinct buffer in @f[buffer-history]. If @i[buffer] is displayed in
any windows, then this makes each window display the same distinct buffer.
@enddefun
@section(Modelines)
@index(Modelines)
@label(modelines)
A Buffer may specify a modeline, a line of text which is displayed across the
bottom of a window to indicate status information. Modelines are described as
a list of @f[modeline-field] objects which have individual update functions and
are optionally fixed-width. These have an @f[eql] name for convenience in
referencing and updating, but the name must be unique for all created
modeline-field objects. When creating a modeline-field with a specified width,
the result of the update function is either truncated or padded on the right to
meet the constraint. All modeline-field functions must return simple strings
with standard characters, and these take a buffer and a window as arguments.
Modeline-field objects are typically shared amongst, or aliased by, different
buffers' modeline fields lists. These lists are unique allowing fields to
behave the same wherever they occur, but different buffers may display these
fields in different arrangements.
Whenever one of the following changes occurs, all of a buffer's modeline fields
are updated:
@Begin[Itemize]
A buffer's major mode is set.
One of a buffer's minor modes is turned on or off.
A buffer is renamed.
A buffer's pathname changes.
A buffer's modified status changes.
A window's buffer is changed.
@End[Itemize]
The policy is that whenever one of these changes occurs, it is guaranteed that
the modeline will be updated before the next trip through redisplay.
Furthermore, since the system cannot know what modeline-field objects the
user has added whose update functions rely on these values, or how he has
changed @hid[Default Modeline Fields], we must update all the fields. When any
but the last occurs, the modeline-field update function is invoked once for
each window into the buffer. When a window's buffer changes, each
modeline-field update function is invoked once; other windows' modeline
fields should not be affected due to a given window's buffer changing.
The user should note that modelines can be updated at any time, so update
functions should be careful to avoid needless delays (for example, waiting for
a local area network to determine information).
@defun[fun {make-modeline-field}, keys {[name][width][function]}]
@defun1[fun {modeline-field-p}, args @i(modeline-field)]
@defun1[fun {modeline-field-name}, args @i(modeline-field)]
@f[make-modeline-field] returns a modeline-field object with @i[name],
@i[width], and @i[function]. @i[Width] defaults to @nil meaning that the field
is variable width; otherwise, the programmer must supply this as a positive
integer. @i[Function] must take a buffer and window as arguments and return a
@f[simple-string] containing only standard characters. If @i[name] already
names a modeline-field object, then this signals an error.
@f[modeline-field-name] returns the name field of a modeline-field object. If
this is set with @f[setf], and the new name already names a modeline-field,
then the @f[setf] method signals an error.
@f[modeline-field-p] returns @true or @nil, depending on whether its argument
is a @f[modeline-field] object.
@enddefun
@defun[fun {modeline-field}, args {@i[name]}]
This returns the modeline-field object named @i[name]. If none exists, this
returns nil.
@enddefun
@defun[fun {modeline-field-function}, args {@i[modeline-field]}]
Returns the function called when updating the @i[modeline-field]. When this is
set with @f[setf], the @f[setf] method updates @i[modeline-field] for all
windows on all buffers that contain the given field, so the next trip through
redisplay will reflect the change. All modeline-field functions must return
simple strings with standard characters, and they take a buffer and a window
as arguments.
@enddefun
@defun[fun {modeline-field-width}, args {@i[modeline-field]}]
Returns the width to which @i[modeline-field] is constrained, or @nil
indicating that it is variable width. When this is set with @f[setf], the
@f[setf] method updates all modeline-fields for all windows on all buffers that
contain the given field, so the next trip through redisplay will reflect the
change. All the fields for any such modeline display must be updated, which is
not the case when setting a modeline-field's function.
@enddefun
@defun[fun {buffer-modeline-fields}, args {@i[buffer]}]
Returns a copy of the list of @i[buffer]'s modeline-field objects. This list
can be destructively modified without affecting display of @i[buffer]'s
modeline, but modifying any particular field's components (for example, width
or function) causes the changes to be reflected the next trip through redisplay
in every modeline display that uses the modified modeline-field. When this is
set with @f[setf], @f[update-modeline-fields] is called for each window into
@i[buffer].
@enddefun
@defun[fun {buffer-modeline-field-p}, args {@i[buffer] @i[field]}]
If @i[field], a modeline-field or the name of one, is in buffer's list of
modeline-field objects, it is returned; otherwise, this returns nil.
@enddefun
@defun[fun {update-modeline-fields}, args {@i[buffer] @i[window]}]
This invokes each modeline-field object's function from @i[buffer]'s list,
passing @i[buffer] and @i[window]. The results are collected regarding each
modeline-field object's width as appropriate, and the window is marked so
the next trip through redisplay will reflect the changes. If window does not
display modelines, then no computation occurs.
@enddefun
@defun[fun {update-modeline-field}, args {@i[buffer] @i[window] @i[field-or-name]}]
This invokes the modeline-field object's function for @i[field-or-name], which
is a modeline-field object or the name of one for @i[buffer]. This passes
@i[buffer] and @i[window] to the update function. The result is applied to the
@i[window]'s modeline display using the modeline-field object's width, and the
window is marked so the next trip through redisplay will reflect the changes.
If the window does not display modelines, then no computation occurs. If
@i[field-or-name] is not found in @i[buffer]'s list of modeline-field objects,
then this signals an error. See @f[buffer-modeline-field-p] above.
@enddefun
@chapter(Altering and Searching Text)
@label[doing-stuff]
@section(Altering Text)
@index(Altering text)
@index(Inserting)
@index(Deleting)
A note on marks and text alteration: @kwd[temporary] marks are invalid
after any change has been made to the text the mark points to; it is an
error to use a temporary mark after such a change has been made. If
text is deleted which has permanent marks pointing into it then they
are left pointing to the position where the text was.
@defun[fun {insert-character}, args {@i[mark] @i[character]}]
@defun1[fun {insert-string}, args {@i[mark] @i[string]}]
@defun1[fun {insert-region}, args {@i[mark] @i[region]}]
Inserts @i[character], @i[string] or @i[region] at @i[mark].
@f[insert-character] signals an error if @i[character] is not
@f[string-char-p]. If @i[string] or @i[region] is empty, and @i[mark] is in
some buffer, then @hemlock leaves @f[buffer-modified] of @i[mark]'s buffer
unaffected.
@enddefun
@defun[fun {ninsert-region}, args {@i[mark] @i[region]}]
Like @f[insert-region], inserts the @i[region] at the @i[mark]'s position,
destroying the source region. This must be used with caution, since if anyone
else can refer to the source region bad things will happen. In particular, one
should make sure the region is not linked into any existing buffer. If
@i[region] is empty, and @i[mark] is in some buffer, then @hemlock leaves
@f[buffer-modified] of @i[mark]'s buffer unaffected.
@enddefun
@defun[fun {delete-characters}, args {@i[mark] @i[n]}]
This deletes @i[n] characters after the @i[mark] (or -@i[n] before if @i[n] is
negative). If @i[n] characters after (or -@i[n] before) the @i[mark] do not
exist, then this returns @nil; otherwise, it returns @true. If @i[n] is zero,
and @i[mark] is in some buffer, then @hemlock leaves @f[buffer-modified] of
@i[mark]'s buffer unaffected.
@enddefun
@defun[fun {delete-region}, args {@i[region]}]
This deletes @i[region]. This is faster than @f[delete-and-save-region]
(below) because no lines are copied. If @i[region] is empty and contained in
some buffer's @f[buffer-region], then @hemlock leaves @f[buffer-modified] of
the buffer unaffected.
@enddefun
@defun[fun {delete-and-save-region}, args {@i[region]}]
This deletes @i[region] and returns a region containing the original
@i[region]'s text. If @i[region] is empty and contained in some buffer's
@f[buffer-region], then @hemlock leaves @f[buffer-modified] of the buffer
unaffected. In this case, this returns a distinct empty region.
@enddefun
@defun[fun {filter-region}, args {@i[function] @i[region]}]
Destructively modifies @i[region] by replacing the text
of each line with the result of the application of @i[function] to a
string containing that text. @i[Function] must obey the following
restrictions:
@begin[enumerate]
The argument may not be destructively modified.
The return value may not contain newline characters.
The return value may not be destructively modified after it is
returned from @i[function].
@end[enumerate]
The strings are passed in order, and are always simple strings.
Using this function, a region could be uppercased by doing:
@lisp
(filter-region #'string-upcase region)
@endlisp
@enddefun
@section(Text Predicates)
@defun[fun {start-line-p}, args {@i[mark]}]
Returns @true if the @i(mark) points before the first character in a line,
@nil otherwise.
@enddefun
@defun[fun {end-line-p}, args {@i[mark]}]
Returns @true if the @i(mark) points after the last character in a line and
before the newline, @nil otherwise.
@enddefun
@defun[fun {empty-line-p}, args {@i[mark]}]
Return @true of the line which @i[mark] points to contains no characters.
@enddefun
@defun[fun {blank-line-p}, args {@i[line]}]
Returns @true if @i[line] contains only characters with a
@hid[Whitespace] attribute of 1. See chapter @ref[character-attributes] for
discussion of character attributes.
@enddefun
@defun[fun {blank-before-p}, args {@i[mark]}]
@defun1[fun {blank-after-p}, args {@i[mark]}]
These functions test if all the characters preceding or following
@i[mark] on the line it is on have a @hid[Whitespace] attribute of @f[1].
@enddefun
@defun[fun {same-line-p}, args {@i[mark1] @i[mark2]}]
Returns @true if @i(mark1) and @i(mark2) point to the same line, or @nil
otherwise; That is,
@example[(same-line-p a b) <==> (eq (mark-line a) (mark-line b))]
@enddefun
@defun[fun {mark<}, funlabel {mark-LSS}, args {@i[mark1] @i[mark2]}]
@defun1[fun {mark<=}, funlabel {mark-LEQ}, args {@i[mark1] @i[mark2]}]
@defun1[fun {mark=}, funlabel {mark-EQL}, args {@i[mark1] @i[mark2]}]
@defun1[fun {mark/=}, funlabel {mark-NEQ}, args {@i[mark1] @i[mark2]}]
@defun1[fun {mark>=}, funlabel {mark-GEQ}, args {@i[mark1] @i[mark2]}]
@defun1[fun {mark>}, funlabel {mark-GTR}, args {@i[mark1] @i[mark2]}]
These predicates test the relative ordering of two marks in a piece of
text, that is a mark is @f[mark>] another if it points to a position
after it. If the marks point into different, non-connected pieces of
text, such as different buffers, then it is an error to test their
ordering; for such marks @f[mark=] is always false and @f[mark/=] is
always true.
@enddefun
@defun[fun {line<}, funlabel {line-LSS}, args {@i[line1] @i[line2]}]
@defun1[fun {line<=}, funlabel {line-LEQ}, args {@i[line1] @i[line2]}]
@defun1[fun {line>=}, funlabel {line-GEQ}, args {@i[line1] @i[line2]}]
@defun1[fun {line>}, funlabel {line-GTR}, args {@i[line1] @i[line2]}]
These predicates test the ordering of @i[line1] and @i[line2]. If the
lines are in unconnected pieces of text it is an error to test their
ordering.
@enddefun
@defun[fun {lines-related}, args {@i[line1] @i[line2]}]
This function returns @true if @i[line1] and @i[line2] are in the same
piece of text, or @nil otherwise.
@enddefun
@defun[fun {first-line-p}, args {@i[mark]}]
@defun1[fun {last-line-p}, args {@i[mark]}]
@f[first-line-p] returns @true if there is no line before the line
@i[mark] is on, and @nil otherwise. @i[Last-line-p] similarly tests
tests whether there is no line after @i[mark].
@enddefun
@section(Kill Ring)
@index(Kill ring)
@label(kill-ring)
@defvar[var {kill-ring}]
This is a ring (see section @ref[rings]) of regions deleted from buffers.
Some commands save affected regions on the kill ring before performing
modifications. You should consider making the command undoable (see section
@ref[undo]), but this is a simple way of achieving a less satisfactory means
for the user to recover.
@enddefvar
@defun[fun {kill-region}, args {@i[region] @i[current-type]}]
This kills @i[region] saving it in @var[kill-ring]. @i[Current-type] is either
@kwd[kill-forward] or @kwd[kill-backward]. When the @funref[last-command-type]
is one of these, this adds @i[region] to the beginning or end, respectively, of
the top of @var[kill-ring]. The result of calling this is undoable using the
command @hid[Undo] (see the @i[Hemlock User's Manual]). This sets
@f[last-command-type] to @i[current-type], and it interacts with
@f[kill-characters].
@enddefun
@defun[fun {kill-characters}, args {@i[mark] @i[count]}]
@defhvar1[var {Character Deletion Threshold}, val {5}]
@f[kill-characters] kills @i[count] characters after @i[mark] if @i[count] is
positive, otherwise before @i[mark] if @i[count] is negative. When @i[count]
is greater than or equal to @hid[Character Deletion Threshold], the killed
characters are saved on @var[kill-ring]. This may be called multiple times
contiguously (that is, without @funref[last-command-type] being set) to
accumulate an effective count for purposes of comparison with the threshold.
This sets @f[last-command-type], and it interacts with @f[kill-region]. When
this adds a new region to @var[kill-ring], it sets @f[last-command-type] to
@kwd[kill-forward] (if @i[count] is positive) or @kwd[kill-backward] (if
@i[count] is negative). When @f[last-command-type] is @kwd[kill-forward] or
@kwd[kill-backward], this adds the killed characters to the beginning (if
@i[count] is negative) or the end (if @i[count] is positive) of the top of
@var[kill-ring], and it sets @f[last-command-type] as if it added a new region
to @var[kill-ring]. When the kill ring is unaffected, this sets
@f[last-command-type] to @kwd[char-kill-forward] or @kwd[char-kill-backward]
depending on whether @i[count] is positive or negative, respectively.
This returns mark if it deletes characters. If there are not @i[count]
characters in the appropriate direction, this returns nil.
@enddefun
@section(Active Regions)
@index(Active regions)
@label(active-regions)
Every buffer has a mark stack (page @pageref[mark-stack]) and a mark known as
the point where most text altering nominally occurs. Between the top of the
mark stack, the @f[current-mark], and the @f[current-buffer]'s point, the
@f[current-point], is what is known as the @f[current-region]. Certain
commands signal errors when the user tries to operate on the @f[current-region]
without its having been activated. If the user turns off this feature, then
the @f[current-region] is effectively always active.
When writing a command that marks a region of text, the programmer should make
sure to activate the region. This typically occurs naturally from the
primitives that you use to mark regions, but sometimes you must explicitly
activate the region. These commands should be written this way, so they do not
require the user to separately mark an area and then activate it. Commands
that modify regions do not have to worry about deactivating the region since
modifying a buffer automatically deactivates the region. Commands that insert
text often activate the region ephemerally; that is, the region is active for
the immediately following command, allowing the user wants to delete the region
inserted, fill it, or whatever.
Once a marking command makes the region active, it remains active until:
@begin[itemize]
a command uses the region,
a command modifies the buffer,
a command changes the current window or buffer,
a command signals an editor-error,
or the user types @binding[C-g].
@end[itemize]
@defhvar[var "Active Regions Enabled", val {t}]
When this variable is non-@nil, some primitives signal an editor-error if
the region is not active. This may be set to @nil for more traditional @emacs
region semantics.
@enddefhvar
@defvar[var {ephemerally-active-command-types}]
This is a list of command types (see section @ref[command-types]), and its
initial value is the list of @kwd[ephemerally-active] and @kwd[unkill]. When
the previous command's type is one of these, the @f[current-region] is active
for the currently executing command only, regardless of whether it does
something to deactivate the region. However, the current command may activate
the region for future commands. @kwd[ephemerally-active] is a default command
type that may be used to ephemerally activate the region, and @kwd[unkill] is
the type used by two commands, @hid[Un-kill] and @hid[Rotate Kill Ring] (what
users typically think of as @binding[C-y] and @binding[M-y]).
@enddefvar
@defun[fun {activate-region}]
This makes the @f[current-region] active.
@enddefun
@defun[fun {deactivate-region}]
After invoking this the @f[current-region] is no longer active.
@enddefun
@defun[fun {region-active-p}]
Returns whether the @f[current-region] is active, including ephemerally. This
ignores @hid[Active Regions Enabled].
@enddefun
@defun[fun {check-region-active}]
This signals an editor-error when active regions are enabled, and the
@f[current-region] is not active.
@enddefun
@defun[fun {current-region},
args {@optional @i[error-if-not-active] @i[deactivate-region]}]
This returns a region formed with @f[current-mark] and @f[current-point],
optionally signaling an editor-error if the current region is not active.
@i[Error-if-not-active] defaults to @true. Each call returns a distinct region
object. Depending on @i[deactivate-region] (defaults to @true), fetching the
current region deactivates it. @hemlock primitives are free to modify text
regardless of whether the region is active, so a command that checks for this
can deactivate the region whenever it is convenient.
@enddefun
@section(Searching and Replacing)
@index(Searching)
@index(Replacing)
Before using any of these functions to do a character search, look at character
attributes (page @pageref[character-attributes]). They provide a facility
similar to the syntax table in real EMACS. Syntax tables are a powerful,
general, and efficient mechanism for assigning meanings to characters in
various modes.
@defcon[var {search-char-code-limit}]
An exclusive upper limit for the char-code of characters given to the searching
functions. The result of searches for characters with a char-code greater than
or equal to this limit is ill-defined, but it is @i[not] an error to do such
searches.
@enddefcon
@defun[fun {new-search-pattern},
args {@i[kind] @i[direction] @i[pattern] @optional @i[result-search-pattern]}]
Returns a @i[search-pattern] object which can be given to the @f[find-pattern]
and @f[replace-pattern] functions. A search-pattern is a specification of a
particular sort of search to do. @i[direction] is either @kwd[forward] or
@kwd[backward], indicating the direction to search in. @i[kind] specifies the
kind of search pattern to make, and @i[pattern] is a thing which specifies what
to search for.
The interpretation of @i[pattern] depends on the @i[kind] of pattern being
made. Currently defined kinds of search pattern are:
@begin(description)
@kwd[string-insensitive]@\Does a case-insensitive string search,
@i[pattern] being the string to search for.
@kwd[string-sensitive]@\Does a case-sensitive string search for
@i[pattern].
@kwd[character]@\Finds an occurrence of the character @i[pattern].
This is case sensitive.
@kwd[not-character]@\Find a character which is not the character
@i[pattern].
@kwd[test]@\Finds a character which satisfies the function @i[pattern].
This function may not be applied an any particular fashion, so it
should depend only on what its argument is, and should have no
side-effects.
@kwd[test-not]@\Similar to as @kwd[test], except it finds a character that
fails the test.
@kwd[any]@\Finds a character that is in the string @i[pattern].
@kwd[not-any]@\Finds a character that is not in the string @i[pattern].
@end(description)
@i[result-search-pattern], if supplied, is a search-pattern to
destructively modify to produce the new pattern. Where reasonable
this should be supplied, since some kinds of search patterns may
involve large data structures.
@enddefun
@defun[fun {search-pattern-p}, args {@i[search-pattern]}]
Returns @true if @i[search-pattern] is a @f[search-pattern] object, otherwise
@nil.
@enddefun
@defun[fun {get-search-pattern}, args {@i[string] @i[direction]}]
@defvar1[var {last-search-pattern}]
@defvar1[var {last-search-string}]
@f[get-search-pattern] interfaces to a default search string and pattern that
search and replacing commands can use. These commands then share a default
when prompting for what to search or replace, and save on consing a search
pattern each time they execute. This uses @hid[Default Search Kind] (see the
@i[Hemlock User's Manual]) when updating the pattern object. This returns the
pattern, so you probably don't need to refer to @var[last-search-pattern], but
@var[last-search-string] is useful when prompting.
@enddefun
@defun[fun {find-pattern}, args {@i[mark] @i[search-pattern]}]
Find the next match of @i[search-pattern] starting at @i[mark]. If a
match is found then @i[mark] is altered to point before the matched text
and the number of characters matched is returned. If no match is
found then @nil is returned and @i[mark] is not modified.
@enddefun
@defun[fun {replace-pattern}, args
{@i[mark] @i[search-pattern] @i[replacement] @optional @i[n]}]
Replace @i[n] matches of @i[search-pattern] with the string
@i[replacement] starting at @i[mark]. If @i[n] is @nil (the default)
then replace all matches. A mark pointing before the last replacement
done is returned.
@enddefun
@Chapter(The Current Environment)
@label(current-environment)
@index(Current environment)
@section(Different Scopes)
In @hemlock the values of @i[variables] (page @pageref[variables]),
@i[key-bindings] (page @pageref(key-bindings)) and
@i[character-attributes] (page @pageref[character-attributes]) may
depend on the @funref(current-buffer) and the modes
active in it. There are three possible scopes for
@hemlock values:
@begin(description)
@i[buffer local]@\The value is present only if the buffer it is local
to is the @f[current-buffer].
@i[mode local]@\The value is present only when the mode it is local to
is active in the @f[current-buffer].
@i[global]@\The value is always present unless shadowed by a buffer or
mode local value.
@end(description)
@section(Shadowing)
It is possible for there to be a conflict between different values
for the same thing in different scopes. For example, there be might a
global binding for a given variable and also a local binding in the
current buffer. Whenever there is a conflict shadowing occurs,
permitting only one of the values to be visible in the current
environment.
The process of resolving such a conflict can be described as a
search down a list of places where the value might be defined, returning
the first value found. The order for the search is as follows:
@begin(enumerate)
Local values in the current buffer.
Mode local values in the minor modes of the current buffer, in order
from the highest precedence mode to the lowest precedence mode. The
order of minor modes with equal precedences is undefined.
Mode local values in the current buffer's major mode.
Global values.
@end(enumerate)
@chapter(Hemlock Variables)
@index (Hemlock variables)
@label(variables)
@hemlock implements a system of variables separate from normal Lisp variables
for the following reasons:
@begin(enumerate)
@hemlock has different scoping rules which are useful in an editor. @hemlock
variables can be local to a @i(buffer) (page @pageref[buffers]) or a @i(mode)
(page @pageref[modes]).
@hemlock variables have @i(hooks) (page @pageref[hooks]), lists of functions
called when someone sets the variable. See @f[variable-value] for the
arguments @hemlock passes to these hook functions.
There is a database of variable names and documentation which makes it easier
to find out what variables exist and what their values mean.
@end(enumerate)
@section(Variable Names)
To the user, a variable name is a case insensitive string. This
string is referred to as the @i[string name] of the variable. A
string name is conventionally composed of words separated by spaces.
In Lisp code a variable name is a symbol. The name of this symbol is
created by replacing any spaces in the string name with hyphens. This
symbol name is always interned in the @hemlock package and referring
to a symbol with the same name in the wrong package is an error.
@defvar[var {global-variable-names}]
This variable holds a string-table of the names of all the global @hemlock
variables. The value of each entry is the symbol name of the variable.
@enddefvar
@defun[fun {current-variable-tables}]
This function returns a list of variable tables currently established,
globally, in the @f[current-buffer], and by the modes of the
@f[current-buffer]. This list is suitable for use with
@f[prompt-for-variable].
@enddefun
@section(Variable Functions)
In the following descriptions @i[name] is the symbol name of the variable.
@defun[fun {defhvar}, args {@i[string-name] @i[documentation]},
keys {[mode][buffer][hooks][value]}]
This function defines a @hemlock variable. Functions that take a variable
name signal an error when the variable is undefined.
@begin(description)
@i[string-name]@\The string name of the variable to define.
@i[documentation]@\The documentation string for the variable.
@multiple{
@kwd[mode],
@kwd[buffer]}@\
If @i[buffer] is supplied, the variable is local to that buffer. If @i[mode]
is supplied, it is local to that mode. If neither is supplied, it is global.
@kwd[value]@\
This is the initial value for the variable, which defaults to @nil.
@kwd[hooks]@\
This is the initial list of functions to call when someone sets the variable's
value. These functions execute before @hemlock establishes the new value. See
@f[variable-value] for the arguments passed to the hook functions.
@end(description)
If a variable with the same name already exists in the same place, then
@f[defhvar] sets its hooks and value from @i[hooks] and @i[value] if the user
supplies these keywords.
@enddefun
@defun[fun {variable-value}, args {@i[name] @optional @i[kind] @i[where]}]
This function returns the value of a @hemlock variable in some place.
The following values for @i[kind] are defined:
@begin[description]
@kwd[current]@\
Return the value present in the current environment, taking into consideration
any mode or buffer local variables. This is the default.
@kwd[global]@\
Return the global value.
@kwd[mode]@\
Return the value in the mode named @i[where].
@kwd[buffer]@\
Return the value in the buffer @i[where].
@end[description]
When set with @f[setf], @hemlock sets the value of the specified variable and
invokes the functions in its hook list with @i[name], @i[kind], @i[where], and
the new value.
@enddefun
@defun[fun {variable-documentation}, args
{@i[name] @optional @i[kind] @i[where]}]
@defun1[fun {variable-hooks}, args
{@i[name] @optional @i[kind] @i[where]}]
@defun1[fun {variable-name}, args
{@i[name] @optional @i[kind] @i[where]}]
These function return the documentation, hooks and string name of a
@hemlock variable. The @i[kind] and @i[where] arguments are the same
as for @f[variable-value]. The documentation and hook list may be set
using @f[setf].
@enddefun
@defun[fun {string-to-variable}, args {@i[string]}]
This function converts a string into the corresponding variable symbol
name. @i[String] need not be the name of an actual @hemlock variable.
@enddefun
@defmac[fun {value}, args {@i[name]}]
@defmac1[fun {setv}, args {@i[name] @i[new-value]}]
These macros get and set the current value of the @hemlock variable
@i[name]. @i[Name] is not evaluated. There is a @f[setf] form for
@f[value].
@enddefmac
@Defmac[Fun {hlet}, Args {(@Mstar<(@i[var] @i[value])>) @Mstar<@i[form]>}]
This macro is very similar to @f[let] in effect; within its scope each
of the @hemlock variables @i[var] have the respective @i[value]s, but
after the scope is exited by any means the binding is removed. This
does not cause any hooks to be invoked. The value of the last
@i[form] is returned.
@enddefmac
@defun[fun {hemlock-bound-p}, args {@i[name] @optional @i[kind] @i[where]}]
Returns @true if @i[name] is defined as a @hemlock variable in the
place specified by @i[kind] and @i[where], or @nil otherwise.
@enddefun
@defun[fun {delete-variable}, args {@i(name) @optional @i[kind] @i[where]}]
@defhvar1[var {Delete Variable Hook}]
@f[delete-variable] makes the @hemlock variable @i[name] no longer
defined in the specified place. @i[Kind] and @i[where] have the same
meanings as they do for @f[variable-value], except that @kwd[current]
is not available, and the default for @i[kind] is @kwd[global]
An error will be signaled if no such variable exists. The hook,
@hid[Delete Variable Hook] is invoked with the same arguments before the
variable is deleted.
@enddefun
@section(Hooks)
@index(Hooks)
@label[hooks]
@hemlock actions such as setting variables, changing buffers, changing windows,
turning modes on and off, etc., often have hooks associated with them. A hook
is a list of functions called before the system performs the action. The
manual describes the object specific hooks with the rest of the operations
defined on these objects.
Often hooks are stored in @hemlock variables, @hid[Delete Buffer Hook] and
@hid[Set Window Hook] for example. This leads to a minor point of confusion
because these variables have hooks that the system executes when someone
changes their values. These hook functions @hemlock invokes when someone sets
a variable are an example of a hook stored in an object instead of a @hemlock
variable. These are all hooks for editor activity, but @hemlock keeps them in
different kinds of locations. This is why some of the routines in this section
have a special interpretation of the hook @i[place] argument.
@defmac[fun {add-hook}, args {@i[place] @i[hook-fun]}]
@defmac1[fun {remove-hook}, args {@i[place] @i[hook-fun]}]
These macros add or remove a hook function in some @i[place]. If @i[hook-fun]
already exists in @i[place], this call has no effect. If @i[place] is a
symbol, then it is a @hemlock variable; otherwise, it is a generalized variable
or storage location. Here are two examples:
@Begin[ProgramExample]
(add-hook delete-buffer-hook 'remove-buffer-from-menu)
(add-hook (variable-hooks 'check-mail-interval)
'reschedule-mail-check)
@End[ProgramExample]
@enddefmac
@defmac[fun {invoke-hook}, args {@i[place] @rest @i[args]}]
This macro calls all the functions in @i[place]. If @i[place] is a symbol,
then it is a @hemlock variable; otherwise, it is a generalized variable.
@enddefun
@chapter(Commands)
@index (Commands)
@label[commands]
@section(Introduction)
The way that the user tells @hemlock to do something is by invoking a
@i(command). Commands have three attributes:
@begin(description)
@i[name]@\A command's name provides a way to refer to it. Command
names are usually capitalized words separated by spaces, such as
@hid[Forward Word].
@i[documentation]@\The documentation for a command is used by
on-line help facilities.
@i[function]@\A command is implemented by a Lisp function, which is callable
from Lisp.
@end(description)
@defvar[var {command-names}]
Holds a string-table (page @pageref[string-tables]) associating
command names to command objects. Whenever a new command is defined
it is entered in this table.
@enddefvar
@subsection(Defining Commands)
@defmac[fun {defcommand}, args
{@^@mgroup<@i[command-name] @MOR (@i[command-name] @i[function-name])> @i[lambda-list]
@\@i[command-doc] @i[function-doc] @mstar<@i[form]>}]
Defines a command named @i[name]. @f[defcommand] creates a function to
implement the command from the @i[lambda-list] and @i[form]'s supplied. The
@i[lambda-list] must specify one required argument, see section
@ref[invoking-commands-as-functions], which by convention is typically named
@f[p]. If the caller does not specify @i[function-name], @f[defcommand]
creates the command name by replacing all spaces with hyphens and appending
"@f[-command]". @i[Function-doc] becomes the documentation for the function
and should primarily describe issues involved in calling the command as a
function, such as what any additional arguments are. @i[Command-doc] becomes
the command documentation for the command. @enddefmac
@defun[fun {make-command}, args
{@i[name] @i[documentation] @i[function]}]
Defines a new command named @i[name], with command documentation
@I[documentation] and function @i[function]. The command in entered
in the string-table @varref[command-names], with the command object as
its value. Normally command implementors will use the @f[defcommand]
macro, but this permits access to the command definition mechanism at
a lower level, which is occasionally useful.
@enddefun
@defun[fun {commandp}, args {@i[command]}]
Returns @true if @i[command] is a @f[command] object, otherwise @nil.
@enddefun
@defun[fun {command-documentation}, args {@i[command]}]
@defun1[fun {command-function}, args {@i[command]}]
@defun1[fun {command-name}, args {@i[command]}]
Returns the documentation, function, or name for @i[command]. These
may be set with @f[setf].
@enddefun
@subsection(Command Documentation)
@i[Command documentation] is a description of what the command does
when it is invoked as an extended command or from a key. Command
documentation may be either a string or a function. If the
documentation is a string then the first line should briefly summarize
the command, with remaining lines filling the details. Example:
@lisp
(defcommand "Forward Character" (p)
"Move the point forward one character.
With prefix argument move that many characters, with negative
argument go backwards."
"Move the point of the current buffer forward p characters."
. . .)
@endlisp
Command documentation may also be a function of one argument. The
function is called with either @kwd[short] or @kwd[full], indicating
that the function should return a short documentation string or do
something to document the command fully.
@section(The Command Interpreter)
@index[Interpreter, command]
@index[Invocation, command]
@index[Command interpreter]
The @i[command interpreter] is a function which reads key-events (see section
@ref[key-events-intro]) from the keyboard and dispatches to different commands
on the basis of what the user types. When the command interpreter executes a
command, we say it @i[invokes] the command. The command interpreter also
provides facilities for communication between commands contiguously running
commands, such as a last command type register. It also takes care of
resetting communication mechanisms, clearing the echo area, displaying partial
keys typed slowly by the user, etc.
@defvar[var {invoke-hook}]
This variable contains a function the command interpreter calls when it wants
to invoke a command. The function receives the command and the prefix argument
as arguments. The initial value is a function which simply funcalls the
@f[command-function] of the command with the supplied prefix argument. This is
useful for implementing keyboard macros and similar things.
@enddefhvar
@defhvar[var "Command Abort Hook"]
The command interpreter invokes the function in this variable whenever someone
aborts a command (for example, if someone called @f[editor-error]).
@enddefhvar
When @hemlock initially starts the command interpreter is in control, but
commands may read from the keyboard themselves and assign whatever
interpretation they will to the key-events read. Commands may call the command
interpreter recursively using the function @funref[recursive-edit].
@subsection(Editor Input)
@label[key-events-intro]
@index[key-events]
The canonical representation of editor input is a key-event structure. Users
can bind commands to keys (see section @ref[key-bindings]), which are non-zero
length sequences of key-events. A key-event consists of an identifying token
known as a @i[keysym] and a field of bits representing modifiers. Users define
keysyms, integers between 0 and 65535 inclusively, by supplying names that
reflect the legends on their keyboard's keys. Users define modifier names
similarly, but the system chooses the bit and mask for recognizing the
modifier. You can use keysym and modifier names to textually specify
key-events and Hemlock keys in a @f[#k] syntax. The following are some
examples:
@begin[programexample]
#k"C-u"
#k"Control-u"
#k"c-m-z"
#k"control-x meta-d"
#k"a"
#k"A"
#k"Linefeed"
@end[programexample]
This is convenient for use within code and in init files containing
@f[bind-key] calls.
The @f[#k] syntax is delimited by double quotes, but the system parses the
contents rather than reading it as a Common Lisp string. Within the double
quotes, spaces separate multiple key-events. A single key-event optionally
starts with modifier names terminated by hyphens. Modifier names are
alphabetic sequences of characters which the system uses case-insensitively.
Following modifiers is a keysym name, which is case-insensitive if it consists
of multiple characters, but if the name consists of only a single character,
then it is case-sensitive.
You can escape special characters @dash hyphen, double quote, open angle
bracket, close angle bracket, and space @dash with a backslash, and you can
specify a backslash by using two contiguously. You can use angle brackets to
enclose a keysym name with many special characters in it. Between angle
brackets appearing in a keysym name position, there are only two special
characters, the closing angle bracket and backslash.
For more information on key-events see section @ref[key-events].
@subsection(Binding Commands to Keys)
@label[Key-Bindings]
@Index[Key Bindings]
The command interpreter determines which command to invoke on the basis of
@i[key bindings]. A key binding is an association between a command and a
sequence of key-events (see section @ref[key-events-intro]. A sequence of
key-events is called a @i[key] and is represented by a single key-event or a
sequence (list or vector) of key-events.
Since key bindings may be local to a mode or buffer, the current environment
(page @pageref[current-environment]) determines the set of key bindings in
effect at any given time. When the command interpreter tries to find the
binding for a key, it first checks if there is a local binding in the
@w[@funref[current-buffer]], then if there is a binding in each of the minor
modes and the major mode for the current buffer @w[(page @pageref[modes])], and
finally checks to see if there is a global binding. If no binding is found,
then the command interpreter beeps or flashes the screen to indicate this.
@defun[fun {bind-key}, args
{@i(name) @i(key) @optional @i[kind] @i[where]}]
This function associates command @i[name] and @i[key] in some environment.
@i[Key] is either a key-event or a sequence of key-events. There are three
possible values of @i[kind]:
@begin(description)
@kwd[global]@\
The default, make a global key binding.
@kwd[mode]@\
Make a mode specific key binding in the mode whose name is @i[where].
@kwd[buffer]@\
Make a binding which is local to buffer @i[where].
@end(description)
This processes @i[key] for key translations before establishing the binding.
See section @ref[key-trans].
If the key is some prefix of a key binding which already exists in the
specified place, then the new one will override the old one, effectively
deleting it.
@f[ext:do-alpha-key-events] is useful for setting up bindings in certain new
modes.
@enddefun
@defun[fun {command-bindings}, args {@i[command]}]
This function returns a list of the places where @i[command] is bound. A place
is specified as a list of the key (always a vector), the kind of binding, and
where (either the mode or buffer to which the binding is local, or @nil if it
is a global).
@enddefun
@defun[fun {delete-key-binding}, args {@i[key] @optional @i[kind] @i[where]}]
This function removes the binding of @i[key] in some place. @i[Key] is either
a key-event or a sequence of key-events. @i[kind] is the kind of binding to
delete, one of @kwd[global] (the default), @kwd[mode] or @kwd[buffer]. If
@i[kind] is @kwd[mode], @i[where] is the mode name, and if @i[kind] is
@kwd[buffer], then @i[where] is the buffer.
This function signals an error if @i[key] is unbound.
This processes @i[key] for key translations before deleting the binding. See
section @ref[key-trans].
@enddefun
@defun[fun {get-command}, args {@i[key] @optional @i[kind] @i[where]}]
This function returns the command bound to @i[key], returning @nil if it is
unbound. @i[Key] is either a key-event or a sequence of key-events. If
@i[key] is an initial subsequence of some keys, then this returns the keyword
@kwd[prefix]. There are four cases of @i[kind]:
@begin(description)
@kwd[current]@\
Return the current binding of @i[key] using the current buffer's search list.
If there are any transparent key bindings for @i[key], then they are returned
in a list as a second value.
@kwd[global]@\
Return the global binding of @i[key]. This is the default.
@kwd[mode]@\
Return the binding of @i[key] in the mode named @i[where].
@kwd[buffer]@\
Return the binding of @i[key] local to the buffer @i[where].
@end(description)
This processes @i[key] for key translations before looking for any binding.
See section @ref[key-trans].
@enddefun
@defun[fun {map-bindings}, Args {@i[function] @i[kind] @optional @i[where]}]
This function maps over the key bindings in some place. For each binding, this
passes @i[function] the key and the command bound to it. @i[Kind] and
@i[where] are the same as in @f[bind-key]. The key is not guaranteed to remain
valid after a given iteration.
@enddefmac
@subsection[Key Translation]
@index[bit-prefix keys]
@index[key translation]
@index[translating keys]
@label[key-trans]
Key translation is a process that the command interpreter applies to keys
before doing anything else. There are two kinds of key translations:
substitution and bit-prefix. In either case, the command interpreter
translates a key when a specified key-event sequence appears in a key.
In a substitution translation, the system replaces the matched subsequence with
another key-event sequence. Key translation is not recursively applied to the
substituted key-events.
In a bit-prefix translation, the system removes the matched subsequence and
effectively sets the specified bits in the next key-event in the key.
While translating a key, if the system encounters an incomplete final
subsequence of key-events, it aborts the translation process. This happens
when those last key-events form a prefix of some translation. It also happens
when they translate to a bit-prefix, but there is no following key-event to
which the system can apply the indicated modifier. If there is a binding for
this partially untranslated key, then the command interpreter will invoke that
command; otherwise, it will wait for the user to type more key-events.
@defun[fun {key-translation}, args {@i[key]}]
This form is @f[setf]'able and allows users to register key translations that
the command interpreter will use as users type key-events.
This function returns the key translation for @i[key], returning @nil if there
is none. @i[Key] is either a key-event or a sequence of key-events. If
@i[key] is a prefix of a translation, then this returns @kwd[prefix].
A key translation is either a key or modifier specification. The bits
translations have a list form: @w<@f[(:bits {]@i[bit-name]@f[}*)]>.
Whenever @i[key] appears as a subsequence of a key argument to the binding
manipulation functions, that portion will be replaced with the translation.
@enddefun
@subsection[Transparent Key Bindings]
@label[transparent-key-bindings]
@index[Transparent key bindings]
Key bindings local to a mode may be @i[transparent]. A transparent key
binding does not shadow less local key bindings, but rather indicates that
the bound command should be invoked before the first normal key binding.
Transparent key bindings are primarily useful for implementing minor modes
such as auto fill and word abbreviation. There may be several transparent
key bindings for a given key, in which case all of the commands bound are
invoked in the order they were found. If there no normal key binding for a
key typed, then the command interpreter acts as though the key is unbound
even if there are transparent key bindings.
The @kwd[transparent-p] argument to @funref[defmode] determines whether the
key bindings in a mode are transparent or not.
@subsection (Interactive)
@index (Keyboard macro vs. interactive)
@index (Interactive vs. keyboard macro)
@Hemlock supports keyboard macros. A user may enter a mode where the editor
records his actions, and when the user exits this mode, the command @hid[Last
Keyboard Macro] plays back the actions. Some commands behave differently when
invoked as part of the definition of a keyboard macro. For example, when used
in a keyboard macro, a command that @f[message]'s useless user confirmation
will slow down the repeated invocations of @hid[Last Keyboard Macro] because
the command will pause on each execution to make sure the user sees the
message. This can be eliminated with the use of @f[interactive]. As another
example, some commands conditionally signal an editor-error versus simply
beeping the device depending on whether it executes on behalf of the user or a
keyboard macro.
@defun[fun {interactive}]
This returns @true when the user invoked the command directly.
@enddefun
@section(Command Types)
@index(Command types)
@label(command-types)
In many editors the behavior of a command depends on the kind of command
invoked before it. @hemlock provides a mechanism to support this known as
@i(command type).
@defun[fun {last-command-type}]
This returns the command type of the last command invoked. If this is set with
@f[setf], the supplied value becomes the value of @f[last-command-type] until
the next command completes. If the previous command did not set
@f[last-command-type], then its value is @nil. Normally a command type is a
keyword. The command type is not cleared after a command is invoked due to a
transparent key binding.
@enddefun
@section(Command Arguments)
@label[invoking-commands-as-functions]
There are three ways in which a command may be invoked: It may be bound to a
key which has been typed, it may be invoked as an extended command, or it may
be called as a Lisp function. Ideally commands should be written in such a way
that they will behave sensibly no matter which way they are invoked. The
functions which implement commands must obey certain conventions about argument
passing if the command is to function properly.
@subsection(The Prefix Argument)
@index(Prefix arguments)
Whenever a command is invoked it is passed as its first argument what
is known as the @i[prefix argument]. The prefix argument is always
either an integer or @nil. When a command uses this value it is
usually as a repeat count, or some conceptually similar function.
@defun[fun {prefix-argument}]
This function returns the current value of the prefix argument. When
set with @f[setf], the new value becomes the prefix argument for the
next command.
@enddefun
If the prefix argument is not set by the previous command then the
prefix argument for a command is @nil. The prefix argument is not cleared
after a command is invoked due to a transparent key binding.
@subsection(Lisp Arguments)
It is often desirable to call commands from Lisp code, in which case
arguments which would otherwise be prompted for are passed as optional
arguments following the prefix argument. A command should prompt for
any arguments not supplied.
@section(Recursive Edits)
@index(Recursive edits)
@defmac[fun {use-buffer}, args {@i[buffer] @mstar<@i[form]>}]
The effect of this is similar to setting the current-buffer to @i[buffer]
during the evaluation of @i[forms]. There are restrictions placed on what the
code can expect about its environment. In particular, the value of any global
binding of a @hemlock variable which is also a mode local variable of some mode
is ill-defined; if the variable has a global binding it will be bound, but the
value may not be the global value. It is also impossible to nest
@f[use-buffer]'s in different buffers. The reason for using @f[use-buffer] is
that it may be significantly faster than changing @f[current-buffer] to
@i[buffer] and back.
@enddefmac
@defun[fun {recursive-edit}, args {@optional @i[handle-abort]}]
@defhvar1[var {Enter Recursive Edit Hook}]
@index[aborting]
@f[recursive-edit] invokes the command interpreter. The command interpreter
will read from the keyboard and invoke commands until it is terminated with
either @f[exit-recursive-edit] or @f[abort-recursive-edit].
Normally, an editor-error or @bf[C-g] aborts the command in progress and
returns control to the top-level command loop. If @f[recursive-edit] is used
with @i[handle-abort] true, then @f[editor-error] or @bf[C-g] will only abort
back to the recursive command loop.
Before the command interpreter is entered the hook
@hid[Enter Recursive Edit Hook] is invoked.
@enddefun
@defun[fun {in-recursive-edit}]
This returns whether the calling point is dynamically within a recursive edit
context.
@enddefun
@defun[fun {exit-recursive-edit}, args {@optional @i[values-list]}]
@defhvar1[var {Exit Recursive Edit Hook}]
@f[exit-recursive-edit] exits a recursive edit returning as multiple values
each element of @i[values-list], which defaults to @nil. This invokes
@hid[Exit Recursive Edit Hook] after exiting the command interpreter. If no
recursive edit is in progress, then this signals an error.
@enddefun
@defun[fun {abort-recursive-edit}, args {@rest @i[args]}]
@defhvar1[var {Abort Recursive Edit Hook}]
@f[abort-recursive-edit] terminates a recursive edit by applying
@funref[editor-error] to @i[args] after exiting the command interpreter. This
invokes @hid[Abort Recursive Edit Hook] with @i[args] before aborting the
recursive edit . If no recursive edit is in progress, then this signals an
error.
@enddefun
@Chapter(Modes)
@label[modes]
@index (Modes)
A mode is a collection of @hemlock values which may be present in the current
environment @w<(page @pageref(current-environment))> depending on the editing
task at hand. Examples of typical modes are @hid[Lisp], for editing Lisp code,
and @hid[Echo Area], for prompting in the echo area.
@section(Mode Hooks)
When a mode is added to or removed from a buffer, its @i[mode hook]
is invoked. The hook functions take two arguments, the buffer
involved and @true if the mode is being added or @nil if it is being
removed.
Mode hooks are typically used to make a mode do something additional to
what it usually does. One might, for example, make a text mode hook
that turned on auto-fill mode when you entered.
@section(Major and Minor Modes)
There are two kinds of modes, @i[major] modes and @i[minor] modes. A buffer
always has exactly one major mode, but it may have any number of minor modes.
Major modes may have mode character attributes while minor modes may not.
A major mode is usually used to change the environment in some major way, such
as to install special commands for editing some language. Minor modes
generally change some small attribute of the environment, such as whether lines
are automatically broken when they get too long. A minor mode should work
regardless of what major mode and minor modes are in effect.
@defhvar[var {Default Modes}, val {("Fundamental" "Save")}]
This variable contains a list of mode names which are instantiated in a
buffer when no other information is available.
@enddefhvar
@defvar[var {mode-names}]
Holds a string-table of the names of all the modes.
@enddefvar
@defcom[com "Illegal"]
This is a useful command to bind in modes that wish to shadow global bindings
by making them effectively illegal. Also, although less likely, minor modes
may shadow major mode bindings with this. This command calls @f[editor-error].
@enddefcom
@section(Mode Functions)
@defun[fun {defmode}, args {@i[name]},
keys {[setup-function][cleanup-function][major-p]},
morekeys {[precedence][transparent-p][documentation]}]
This function defines a new mode named @i[name], and enters it in
@varref[mode-names]. If @i[major-p] is supplied and is not @nil
then the mode is a major mode; otherwise it is a minor mode.
@i[Setup-function] and @i[cleanup-function] are functions which are
invoked with the buffer affected, after the mode is turned on, and
before it is turned off, respectively. These functions typically are
used to make buffer-local key or variable bindings and to remove them
when the mode is turned off.
@i[Precedence] is only meaningful for a minor mode. The precedence of a
minor mode determines the order in which it in a buffer's list of modes.
When searching for values in the current environment, minor modes are
searched in order, so the precedence of a minor mode determines which value
is found when there are several definitions.
@i[Transparent-p] determines whether key bindings local to the defined mode
are transparent. Transparent key bindings are invoked in addition to the
first normal key binding found rather than shadowing less local key bindings.
@i[Documentation] is some introductory text about the mode. Commands such as
@hid[Describe Mode] use this.
@enddefun
@defun[fun {mode-documentation}, args {@i[name]}]
This function returns the documentation for the mode named @i[name].
@enddefun
@defun[fun {buffer-major-mode}, args {@i[buffer]}]
@defhvar1[var {Buffer Major Mode Hook}]
@f[buffer-major-mode] returns the name of @i[buffer]'s major mode.
The major mode may be changed with @f[setf]; then
@hid[Buffer Major Mode Hook] is invoked with
@i[buffer] and the new mode.
@enddefun
@defun[fun {buffer-minor-mode}, args {@i[buffer] @i[name]}]
@defhvar1[var {Buffer Minor Mode Hook}]
@f[buffer-minor-mode] returns @true if the minor mode @i[name] is active
in @i[buffer], @nil otherwise. A minor mode may be turned on or off
by using @f[setf]; then @hid[Buffer Minor Mode Hook] is
invoked with @i[buffer], @i[name] and the new value.
@enddefun
@defun[fun {mode-variables}, args {@i[name]}]
Returns the string-table of mode local variables.
@enddefun
@defun[fun {mode-major-p}, args {@i[name]}]
Returns @true if @i[name] is the name of a major mode, or @nil if
it is the name of a minor mode. It is an error for @i[name] not to be
the name of a mode.
@enddefun
@chapter(Character Attributes)
@label(character-attributes)
@index(Character attributes)
@index(Syntax tables)
@section(Introduction)
Character attributes provide a global database of information about characters.
This facility is similar to, but more general than, the @i[syntax tables] of
other editors such as @f[EMACS]. For example, you should use character
attributes for commands that need information regarding whether a character is
@i[whitespace] or not. Use character attributes for these reasons:
@begin(enumerate)
If this information is all in one place, then it is easy the change the
behavior of the editor by changing the syntax table, much easier than it would
be if character constants were wired into commands.
This centralization of information avoids needless duplication of effort.
The syntax table primitives are probably faster than anything that can be
written above the primitive level.
@end(enumerate)
Note that an essential part of the character attribute scheme is that
@i[character attributes are global and are there for the user to change.]
Information about characters which is internal to some set of commands (and
which the user should not know about) should not be maintained as a character
attribute. For such uses various character searching abilities are provided by
the function @funref[find-pattern].
@defcon[var {syntax-char-code-limit}]
The exclusive upper bound on character codes which are significant in
the character attribute functions. Font and bits are always ignored.
@enddefcon
@section(Character Attribute Names)
As for @hemlock variables, character attributes have a user visible
string name, but are referred to in Lisp code as a symbol. The string
name, which is typically composed of capitalized words separated by
spaces, is translated into a keyword by replacing all spaces with
hyphens and interning this string in the keyword package. The
attribute named @hid[Ada Syntax] would thus become @kwd[ada-syntax].
@defvar[var {character-attribute-names}]
Whenever a character attribute is defined, its name is entered in
this string table (page @pageref[string-tables]), with the
corresponding keyword as the value.
@enddefvar
@section(Character Attribute Functions)
@defun[fun {defattribute}, args
{@i[name] @i[documentation] @optional @i[type] @i[initial-value]}]
This function defines a new character attribute with @i[name], a
simple-string. Character attribute operations take attribute arguments as a
keyword whose name is @i[name] uppercased with spaces replaced by hyphens.
@i[Documentation] describes the uses of the character attribute.
@i[Type], which defaults to @w<@f[(mod 2)]>, specifies what type the values of
the character attribute are. Values of a character attribute may be of any
type which may be specified to @f[make-array]. @i[Initial-value] (default
@f[0]) is the value which all characters will initially have for this
attribute.
@enddefun
@defun[fun {character-attribute-name}, args {@i[attribute]}]
@defun1[fun {character-attribute-documentation}, args {@i[attribute]}]
These functions return the name or documentation for @i[attribute].
@enddefun
@defun[fun {character-attribute}, args {@i[attribute] @i[character]}]
@defhvar1[var {Character Attribute Hook}]
@f[character-attribute] returns the value of @i[attribute] for @i[character].
This signals an error if @i[attribute] is undefined.
@f[setf] will set a character's attributes. This @f[setf] method invokes the
functions in @hid[Character Attribute Hook] on the attribute and character
before it makes the change.
If @i[character] is @nil, then the value of the attribute for the beginning or
end of the buffer can be accessed or set. The buffer beginning and end thus
become a sort of fictitious character, which simplifies the use of character
attributes in many cases.
@enddefun
@defun[fun {character-attribute-p}, args {@i[symbol]}]
This function returns @true if @i[symbol] is the name of a character attribute,
@nil otherwise.
@enddefun
@defun[fun {shadow-attribute}, args
{@i[attribute] @i[character] @i[value] @i[mode]}]
@defhvar1[var {Shadow Attribute Hook}]
This function establishes @i[value] as the value of @i[character]'s
@i[attribute] attribute when in the mode @i[mode]. @i[Mode] must be the name
of a major mode. @hid[Shadow Attribute Hook] is invoked with the same
arguments when this function is called. If the value for an attribute is set
while the value is shadowed, then only the shadowed value is affected, not the
global one.
@enddefun
@defun[fun {unshadow-attribute}, args {@i[attribute] @i[character] @i[mode]}]
@defhvar1[var {Unshadow Attribute Hook}]
Make the value of @i[attribute] for @i[character] no longer be shadowed in
@i[mode]. @hid[Unshadow Attribute Hook] is invoked with the same arguments
when this function is called.
@enddefun
@defun[fun {find-attribute},
args {@i[mark] @i[attribute] @optional @i[test]}]
@defun1[fun {reverse-find-attribute},
args {@i[mark] @i[attribute] @optional @i[test]}]
These functions find the next (or previous) character with some value for the
character attribute @i[attribute] starting at @i[mark]. They pass @i[Test] one
argument, the value of @i[attribute] for the character tested. If the test
succeeds, then these routines modify @i[mark] to point before (after for
@f[reverse-find-attribute]) the character which satisfied the test. If no
characters satisfy the test, then these return @nil, and @i[mark] remains
unmodified. @i[Test] defaults to @f[not zerop]. There is no guarantee that
the test is applied in any particular fashion, so it should have no side
effects and depend only on its argument.
@enddefun
@section(Character Attribute Hooks)
It is often useful to use the character attribute mechanism as an abstract
interface to other information about characters which in fact is stored
elsewhere. For example, some implementation of @hemlock might decide to define
a @hid[Print Representation] attribute which controls how a character is
displayed on the screen.
To make this easy to do, each attribute has a list of hook functions
which are invoked with the attribute, character and new value whenever
the current value changes for any reason.
@defun[fun {character-attribute-hooks}, args {@i[attribute]}]
Return the current hook list for @i[attribute]. This may be set with
@f[setf]. The @f[add-hook] and @macref[remove-hook] macros should
be used to manipulate these lists.
@enddefun
@section (System Defined Character Attributes)
@label(sys-def-chars)
These are predefined in @hemlock:
@begin[description]
@hid[Whitespace]@\
A value of @f[1] indicates the character is whitespace.
@hid[Word Delimiter]@\
A value of @f[1] indicates the character separates words (see section
@ref[text-functions]).
@hid[Digit]@\
A value of @f[1] indicates the character is a base ten digit. This may be
shadowed in modes or buffers to mean something else.
@hid[Space]@\
This is like @hid[Whitespace], but it should not include @binding[Newline].
@hemlock uses this primarily for handling indentation on a line.
@hid[Sentence Terminator]@\
A value of @f[1] indicates these characters terminate sentences (see section
@ref[text-functions]).
@hid[Sentence Closing Char]@\
A value of @f[1] indicates these delimiting characters, such as @binding["]
or @binding[)], may follow a @hid[Sentence Terminator] (see section
@ref[text-functions]).
@hid[Paragraph Delimiter]@\
A value of @f[1] indicates these characters delimit paragraphs when they begin
a line (see section @ref[text-functions]).
@hid[Page Delimiter]@\
A value of @f[1] indicates this character separates logical pages (see section
@ref[logical-pages]) when it begins a line.
@hid[Scribe Syntax]@\
This uses the following symbol values:
@begin[multiple]
@begin[description]
@nil@\These characters have no interesting properties.
@kwd[escape]@\This is @binding[@@] for the Scribe formatting language.
@kwd[open-paren]@\These characters begin delimited text.
@kwd[close-paren]@\These characters end delimited text.
@kwd[space]@\These characters can terminate the name of a formatting command.
@kwd[newline]@\These characters can terminate the name of a formatting command.
@end[description]
@end[multiple]
@hid[Lisp Syntax]@\
This uses symbol values from the following:
@begin[multiple]
@begin[description]
@nil@\These characters have no interesting properties.
@kwd[space]@\These characters act like whitespace and should not include
@binding[Newline].
@kwd[newline]@\This is the @binding[Newline] character.
@kwd[open-paren]@\This is @binding[(] character.
@kwd[close-paren]@\This is @binding[)] character.
@kwd[prefix]@\This is a character that is a part of any form it precedes @dash
for example, the single quote, @binding['].
@kwd[string-quote]@\This is the character that quotes a string literal,
@binding["].@comment["]
@kwd[char-quote]@\This is the character that escapes a single character,
@binding[\].
@kwd[comment]@\This is the character that makes a comment with the rest of the
line, @binding[;].
@kwd[constituent]@\These characters are constitute symbol names.
@end[description]
@end[multiple]
@end[description]
@chapter (Controlling the Display)
@section (Windows)
@tag[windows]
@index(Windows)
@index(modelines)
A window is a mechanism for displaying part of a buffer on some physical
device. A window is a way to view a buffer but is not synonymous with one; a
buffer may be viewed in any number of windows. A window may have a
@i[modeline] which is a line of text displayed across the bottom of a window to
indicate status information, typically related to the buffer displayed.
@section (The Current Window)
@index (Current window)
@defun[fun {current-window}, args {}]
@defhvar1[var {Set Window Hook}]
@f[current-window] returns the window in which the cursor is currently
displayed. The cursor always tracks the buffer-point of the corresponding
buffer. If the point is moved to a position which would be off the screen the
recentering process is invoked. Recentering shifts the starting point of the
window so that the point is once again displayed. The current window may be
changed with @f[setf]. Before the current window is changed, the hook @hid[Set
Window Hook] is invoked with the new value.
@enddefun
@defvar[var {window-list}]
Holds a list of all the window objects made with @funref[make-window].
@enddefvar
@section(Window Functions)
@defun[fun {make-window}, args {@i[mark]},
keys {[modelinep][window][ask-user]},
morekeys {[x][y][width][height]},
morekeys {[proportion]}]
@defhvar1[var {Default Window Width}]
@defhvar1[var {Default Window Height}]
@defhvar1[var {Make Window Hook}]
@comment[NOTE, we purposefully do not document the font-family or device
arguments since we don't officially support fonts or devices.]
@f[make-window] returns a window displaying text starting at @i[mark], which
must point into a buffer. If it could not make a window on the device, it
returns nil. The default action is to make the new window a proportion of the
@f[current-window]'s height to make room for the new window.
@i[Modelinep] specifies whether the window should display buffer modelines.
@i[Window] is a device dependent window to be used with the Hemlock window.
The device may not support this argument. @i[Window] becomes the parent window
for a new group of windows that behave in a stack orientation as windows do on
the terminal.
If @i[ask-user] is non-@nil, @hemlock prompts the user for the missing
dimensions (@i[x], @i[y], @i[width], and @i[height]) to make a new group of
windows, as with the @i[window] argument. The device may not support this
argument. Non-null values other than @f[t] may have device dependent meanings.
@i[X] and @i[y] are in pixel units, but @i[width] and @i[height] are characters
units. @hid[Default Window Width] and @hid[Default Window Height] are the
default values for the @i[width] and @i[height] arguments.
@i[Proportion] determines what proportion of the @f[current-window]'s height
the new window will use. The @f[current-window] retains whatever space left
after accommodating the new one. The default is to split the window in half.
This invokes @hid[Make Window Hook] with the new window.
@enddefun
@defun[fun {windowp}, args {@i[window]}]
This function returns @true if @i[window] is a @f[window] object, otherwise
@nil.
@enddefun
@defun[fun {delete-window}, args {@i[window]}]
@defhvar1[var {Delete Window Hook}]
@f[delete-window] makes @i[window] go away, first invoking @hid[Delete Window
Hook] with @i[window].
@enddefun
@defun[fun {window-buffer}, args {@i[window]}]
@defhvar1[var {Window Buffer Hook}]
@f[window-buffer] returns the buffer from which the window displays
text. This may be changed with @f[setf], in which case the hook
@hid[Window Buffer Hook] is invoked beforehand with the window and the
new buffer.
@enddefun
@defun[fun {window-display-start}, args {@i[window]}]
@defun1[fun {window-display-end}, args {@i[window]}]
@f[window-display-start] returns the mark that points before the first
character displayed in @i[window]. Note that if @i[window] is the current
window, then moving the start may not prove much, since recentering may move it
back to approximately where it was originally.
@f[window-display-end] is similar, but points after the last character
displayed. Moving the end is meaningless, since redisplay always moves it to
after the last character.
@enddefun
@defun[fun {window-display-recentering}, args {@i[window]}]
This function returns whether redisplay will ensure the buffer's point of
@i[window]'s buffer is visible after redisplay. This is @f[setf]'able, and
changing @i[window]'s buffer sets this to @nil via @hid[Window Buffer Hook].
@enddefun
@defun[fun {window-point}, args {@i[window]}]
This function returns as a mark the position in the buffer where the cursor is
displayed. This may be set with @f[setf]. If @i[window] is the current
window, then setting the point will have little effect; it is forced to track
the buffer point. When the window is not current, the window point is the
position that the buffer point will be moved to when the window becomes
current.
@enddefun
@defun[fun {center-window}, args {@i[window] @i[mark]}]
This function attempts to adjust window's display start so the that @i[mark] is
vertically centered within the window.
@enddefun
@defun[fun {scroll-window}, args {@i[window] @i[n]}]
This function scrolls the window down @i[n] display lines; if @i[n] is negative
scroll up. Leave the cursor at the same text position unless we scroll it off
the screen, in which case the cursor is moved to the end of the window closest
to its old position.
@enddefun
@defun[fun {displayed-p}, args {@i[mark] @i[window]}]
Returns @true if either the character before or the character after @i[mark]
is being displayed in @i[window], or @nil otherwise.
@enddefun
@defun[fun {window-height}, args {@i[window]}]
@defun1[fun {window-width}, args {@i[window]}]
Height or width of the area of the window used for displaying the
buffer, in character positions. These values may be changed with
@f[setf], but the setting attempt may fail, in which case nothing is done.
@enddefun
@defun[fun {next-window}, args {@i[window]}]
@defun1[fun {previous-window}, args {@i[window]}]
Return the next or previous window of @i[window]. The exact meaning of next
and previous depends on the device displaying the window. It should be
possible to cycle through all the windows displayed on a device using either
next or previous (implying that these functions wrap around.)
@enddefun
@section(Cursor Positions)
@index(Cursor positions)
A cursor position is an absolute position within a window's coordinate
system. The origin is in the upper-left-hand corner and the unit
is character positions.
@defun[fun {mark-to-cursorpos}, args {@i[mark] @i[window]}]
Returns as multiple values the @f[X] and @f[Y] position on which
@i[mark] is being displayed in @i[window], or @nil if it is not within the
bounds displayed.
@enddefun
@defun[fun {cursorpos-to-mark}, args {@i[X] @i[Y] @i[window]}]
Returns as a mark the text position which corresponds to the given
(@i[X], @i[Y]) position within window, or @nil if that
position does not correspond to any text within @i[window].
@enddefun
@defun[fun {last-key-event-cursorpos}]
Interprets mouse input. It returns as multiple values the (@i[X], @i[Y])
position and the window where the pointing device was the last time some key
event happened. If the information is unavailable, this returns @nil.
@enddefun
@defun[fun {mark-column}, args {@i[mark]}]
This function returns the @i[X] position at which @i[mark] would be displayed,
supposing its line was displayed on an infinitely wide screen. This takes into
consideration strange characters such as tabs.
@enddefun
@defun[fun {move-to-column}, args {@i[mark] @i[column] @optional @i[line]}]
This function is analogous to @funref[move-to-position], except that
it moves @i[mark] to the position on @i[line] which corresponds to the
specified @i[column]. @i[Line] defaults to the line that @i[mark] is
currently on. If the line would not reach to the specified column,
then @nil is returned and @i[mark] is not modified. Note that since a
character may be displayed on more than one column on the screen,
several different values of @i[column] may cause @i[mark] to be moved
to the same position.
@enddefun
@defun[fun {show-mark}, args {@i[mark] @i[window] @i[time]}]
This function highlights the position of @i[mark] within @i[window] for
@i[time] seconds, possibly by moving the cursor there. The wait may be aborted
if there is pending input. If @i[mark] is positioned outside the text
displayed by @i[window], then this returns @nil, otherwise @true.
@enddefun
@section(Redisplay)
Redisplay translates changes in the internal representation of text into
changes on the screen. Ideally this process finds the minimal transformation
to make the screen correspond to the text in order to maximize the speed of
redisplay.
@defun[fun {redisplay}]
@defhvar1[var "Redisplay Hook"]
@f[redisplay] executes the redisplay process, and @hemlock typically invokes
this whenever it looks for input. The redisplay process frequently checks for
input, and if it detects any, it aborts. The return value is interpreted as
follows:
@begin[description]
@false@\No update was needed.
@true@\Update was needed, and completed successfully.
@kwd[editor-input]@\Update is needed, but was aborted due to pending input.
@end[description]
This function invokes the functions in @hid[Redisplay Hook] on the current
window after computing screen transformations but before executing them. After
invoking the hook, this recomputes the redisplay and then executes it on the
current window.
For the current window and any window with @f[window-display-recentering] set,
@f[redisplay] ensures the buffer's point for the window's buffer is visible
after redisplay.
@enddefun
@defun[fun {redisplay-all}]
This causes all editor windows to be completely redisplayed. For the current
window and any window with @f[window-display-recentering] set, this ensures the
buffer's point for the window's buffer is visible after redisplay. The return
values are the same as for redisplay, except that @false is never returned.
@enddefun
@defun[fun {editor-finish-output}, args {@i[window]}]
This makes sure the editor is synchronized with respect to redisplay output to
@i[window]. This may do nothing on some devices.
@enddefun
@chapter(Logical Key-Events)
@label[logical-key-events]
@index[Logical key-events]
@section[Introduction]
Some primitives such as @funref[prompt-for-key] and commands such as EMACS
query replace read key-events directly from the keyboard instead of using the
command interpreter. To encourage consistency between these commands and to
make them portable and easy to customize, there is a mechanism for defining
@i[logical key-events].
A logical key-event is a keyword which stands for some set of key-events. The
system globally interprets these key-events as indicators a particular action.
For example, the @kwd[help] logical key-event represents the set of key-events
that request help in a given @hemlock implementation. This mapping is a
many-to-many mapping, not one-to-one, so a given logical key-event may have
multiple corresponding actual key-events. Also, any key-event may represent
different logical key-events.
@section[Logical Key-Event Functions]
@defvar[var {logical-key-event-names}]
This variable holds a string-table mapping all logical key-event names to the
keyword identifying the logical key-event.
@enddefvar
@defun[fun {define-logical-key-event}, args {@i[string-name] @i[documentation]}]
This function defines a new logical key-event with name @i[string-name], a
simple-string. Logical key-event operations take logical key-events arguments
as a keyword whose name is @i[string-name] uppercased with spaces replaced by
hyphens.
@i[Documentation] describes the action indicated by the logical key-event.
@enddefun
@defun[fun {logical-key-event-key-events}, args {@i[keyword]}]
This function returns the list of key-events representing the logical key-event
@i[keyword].
@enddefun
@defun[fun {logical-key-event-name}, args {@i[keyword]}]
@defun1[fun {logical-key-event-documentation}, args {@i[keyword]}]
These functions return the string name and documentation given to
@f[define-logical-key-event] for logical key-event @i[keyword].
@enddefun
@defun[fun {logical-key-event-p}, args {@i[key-event] @i[keyword]}]
This function returns @f[t] if @i[key-event] is the logical key-event
@i[keyword]. This is @f[setf]'able establishing or disestablishing key-events
as particular logical key-events. It is a error for @i[keyword] to be an
undefined logical key-event.
@enddefun
@section[System Defined Logical Key-Events]
There are many default logical key-events, some of which are used by functions
documented in this manual. If a command wants to read a single key-event
command that fits one of these descriptions then the key-event read should be
compared to the corresponding logical key-event instead of explicitly
mentioning the particular key-event in the code. In many cases you can use the
@macref[command-case] macro. It makes logical key-events easy to use and takes
care of prompting and displaying help messages.
@begin[description]
@kwd[yes]@\
Indicates the prompter should take the action under consideration.
@kwd[no]@\
Indicates the prompter should NOT take the action under consideration.
@kwd[do-all]@\
Indicates the prompter should repeat the action under consideration as many
times as possible.
@kwd[do-once]@\
Indicates the prompter should execute the action under consideration once and
then exit.
@kwd[exit]@\
Indicates the prompter should terminate its activity in a normal fashion.
@kwd[abort]@\
Indicates the prompter should terminate its activity without performing any
closing actions of convenience, for example.
@kwd[keep]@\
Indicates the prompter should preserve something.
@kwd[help]@\
Indicates the prompter should display some help information.
@kwd[confirm]@\
Indicates the prompter should take any input provided or use the default if
the user entered nothing.
@kwd[quote]@\
Indicates the prompter should take the following key-event as itself without
any sort of command interpretation.
@kwd[recursive-edit]@\
Indicates the prompter should enter a recursive edit in the current context.
@kwd[cancel]@\
Indicates the prompter should cancel the effect of a previous key-event input.
@kwd[forward-search]@\
Indicates the prompter should search forward in the current context.
@kwd[backward-search]@\
Indicates the prompter should search backward in the current context.
@end[description]
@blankspace(1 line)
Define a new logical key-event whenever:
@begin[enumerate]
The key-event concerned represents a general class of actions, and
several commands may want to take a similar action of this type.
The exact key-event a command implementor chooses may generate violent taste
disputes among users, and then the users can trivially change the command in
their init files.
You are using @f[command-case] which prevents implementors from specifying
non-standard characters for dispatching in otherwise possibly portable code,
and you can define and set the logical key-event in a site dependent file where
you can mention implementation dependent characters.
@end[enumerate]
@chapter(The Echo Area)
@hemlock provides a number of facilities for displaying information and
prompting the user for it. Most of these work through a small window displayed
at the bottom of the screen. This is called the echo area and is supported by
a buffer and a window. This buffer's modeline (see section @ref[modelines]) is
referred to as the status line, which, unlike other buffers' modelines, is used
to show general status about the editor, Lisp, or world.
@defhvar[var {Default Status Line Fields}]
This is the initial list of modeline-field objects stored in the echo area
buffer.
@enddefhvar
@defhvar[var "Echo Area Height", val {3}]
This variable determines the initial height in lines of the echo area window.
@enddefhvar
@section(Echo Area Functions)
It is considered poor taste to perform text operations on the echo area buffer
to display messages; the @f[message] function should be used instead. A
command must use this function or set @funref[buffer-modified] for the
@hid[Echo Area] buffer to @nil to cause @hemlock to leave text in the echo area
after the command's execution.
@defun[fun {clear-echo-area}]
Clears the echo area.
@enddefun
@defun[fun {message}, args {@i[control-string] @rest @i[format-arguments]}]
@defun1[fun {loud-message}, args {@i[control-string] @rest @i[format-arguments]}]
@defhvar1[var {Message Pause}, val {0.5}]
Displays a message in the echo area. The message is always displayed on a
fresh line. @f[message] pauses for @hid[Message Pause] seconds before
returning to assure that messages are not displayed too briefly to be seen.
Because of this, @f[message] is the best way to display text in the echo area.
@f[loud-message] is like @f[message], but it first clears the echo area and
beeps.
@enddefun
@defvar[var {echo-area-window}]
@defvar1[var {echo-area-buffer}]
@f[echo-area-buffer] contains the buffer object for the echo area, which is
named @hid[Echo Area]. This buffer is usually in @hid[Echo Area] mode.
@f[echo-area-window] contains a window displaying @f[echo-area-buffer]. Its
modeline is the status line, see the beginning of this chapter.
@enddefvar
@defvar[var {echo-area-stream}]
@index (Echo area)
This is a buffered @hemlock output stream
(@pageref[make-hemlock-output-stream-fun]) which inserts text written to it at
the point of the echo area buffer. Since this stream is buffered a
@f[force-output] must be done when output is complete to assure that it is
displayed.
@enddefvar
@section(Prompting Functions)
@index(Prompting functions)
Most of the prompting functions accept the following keyword arguments:
@begin(description)
@kwd[must-exist] @\If @kwd[must-exist] has a non-@nil value then the
user is prompted until a valid response is obtained. If
@kwd[must-exist] is @nil then return as a string whatever is input.
The default is @true.
@kwd[default] @\If null input is given when the user is prompted
then this value is returned. If no default is given then
some input must be given before anything interesting will happen.
@kwd[default-string] @\If a @kwd[default] is given then this is a
string to be printed to indicate what the default is. The default is
some representation of the value for @kwd[default], for example for a
buffer it is the name of the buffer.
@kwd[prompt] @\This is the prompt string to display.
@kwd[help] @\@multiple{
This is similar to @kwd[prompt], except that it is displayed when
the help command is typed during input. @comment{If there is some known number
of options as in keyword parses, then they may be displayed, depending
on the setting of @hvarref[Help Show Options].}
This may also be a function. When called with no arguments, it should either
return a string which is the help text or perform some action to help the user,
returning @Nil.}
@end(description)
@defun[fun {prompt-for-buffer}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
Prompts with completion for a buffer name and returns the corresponding buffer.
If @i[must-exist] is @nil, then it returns the input string if it is not a
buffer name. This refuses to accept the empty string as input when
@kwd[default] and @kwd[default-string] are @nil. @kwd[default-string] may be
used to supply a default buffer name when @kwd[default] is @nil, but when
@kwd[must-exist] is non-@nil, it must name an already existing buffer.
@enddefun
@defmac[fun {command-case}, Args {(@mstar<@i[key] @i[value]>) @Mstar<(@Mgroup"(@MSTAR'@i[tag]') @MOR @i[tag]" @i[help] @MSTAR'@i[form]')>}]
This macro is analogous to the Common Lisp @f[case] macro. Commands such as
@hid[Query Replace] use this to get a key-event, translate it to a character,
and then to dispatch on the character to some case. In addition to character
dispatching, this supports logical key-events @w<(page
@pageref[logical-key-events])> by using the input key-event directly without
translating it to a character. Since the description of this macro is rather
complex, first consider the following example:
@lisp
(defcommand "Save All Buffers" (p)
"Give the User a chance to save each modified buffer."
"Give the User a chance to save each modified buffer."
(dolist (b *buffer-list*)
(select-buffer-command () b)
(when (buffer-modified b)
(command-case (:prompt "Save this buffer: [Y] "
:help "Save buffer, or do something else:")
((:yes :confirm)
"Save this buffer and go on to the next."
(save-file-command () b))
(:no "Skip saving this buffer, and go on to the next.")
(:recursive-edit
"Go into a recursive edit in this buffer."
(do-recursive-edit) (reprompt))
((:exit #\p) "Punt this silly loop."
(return nil))))))
@endlisp
@f[command-case] prompts for a key-event and then executes the code in the
first branch with a logical key-event or a character (called @i[tags]) matching
the input. Each character must be a standard-character, one that satisfies the
Common Lisp @f[standard-char-p] predicate, and the dispatching mechanism
compares the input key-event to any character tags by mapping the key-event to
a character with @f[ext:key-event-char]. If the tag is a logical key-event,
then the search for an appropriate case compares the key-event read with the
tag using @f[logical-key-event-p].
All uses of @f[command-case] have two default cases, @kwd[help] and
@kwd[abort]. You can override these easily by specifying your own branches
that include these logical key-event tags. The @kwd[help] branch displays in a
pop-up window the a description of the valid responses using the variously
specified help strings. The @kwd[abort] branch signals an editor-error.
The @i[key]/@i[value] arguments control the prompting. The following are valid
values:
@begin[description]
@kwd[help]@\
The default @kwd[help] case displays this string in a pop-up window. In
addition it formats a description of the valid input including each case's
@i[help] string.
@kwd[prompt]@\
This is the prompt used when reading the key-event.
@kwd[change-window]@\
If this is non-nil (the default), then the echo area window becomes the
current window while the prompting mechanism reads a key-event. Sometimes it
is desirable to maintain the current window since it may be easier for users to
answer the question if they can see where the current point is.
@kwd[bind]@\
This specifies a variable to which the prompting mechanism binds the input
key-event. Any case may reference this variable. If you wish to know what
character corresponds to the key-event, use @f[ext:key-event-char].
@end(description)
Instead of specifying a tag or list of tags, you may use @true. This becomes
the default branch, and its forms execute if no other branch is taken,
including the default @kwd[help] and @kwd[abort] cases. This option has no
@i[help] string, and the default @kwd[help] case does not describe the default
branch. Every @f[command-case] has a default branch; if none is specified, the
macro includes one that @f[system:beep]'s and @f[reprompt]'s (see below).
Within the body of @f[command-case], there is a defined @f[reprompt] macro.
It causes the prompting mechanism and dispatching mechanism to immediately
repeat without further execution in the current branch.
@enddefmac
@defun[fun {prompt-for-key-event}, keys {[prompt][change-window]}]
This function prompts for a key-event returning immediately when the user types
the next key-event. @macref[command-case] is more useful for most purposes.
When appropriate, use logical key-events @w<(page
@pageref[logical-key-events])>.
@enddefun
@defun[fun {prompt-for-key}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This function prompts for a @i[key], a vector of key-events, suitable for
passing to any of the functions that manipulate key bindings @w<(page
@pageref[key-bindings])>. If @i[must-exist] is true, then the key must be
bound in the current environment, and the command currently bound is returned
as the second value.
@enddefun
@defun[fun {prompt-for-file}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This function prompts for an acceptable filename in some system dependent
fashion. "Acceptable" means that it is a legal filename, and it exists if
@i[must-exist] is non-@nil. @f[prompt-for-file] returns a Common Lisp
pathname.
If the file exists as entered, then this returns it, otherwise it is merged
with @i[default] as by @f[merge-pathnames].
@enddefun
@defun[fun {prompt-for-integer}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This function prompts for a possibly signed integer. If @i[must-exist] is
@nil, then @f[prompt-for-integer] returns the input as a string if it is not a
valid integer.
@enddefun
@defun[fun {prompt-for-keyword}, args {@i[string-tables]},
keys {[prompt][help][must-exist]},
morekeys {[default][default-string]}]
This function prompts for a keyword with completion, using the string tables
in the list @i[string-tables]. If @I[must-exist] is non-@nil, then the result
must be an unambiguous prefix of a string in one of the @i[string-tables], and
the returns the complete string even if only a prefix of the full string was
typed. In addition, this returns the value of the corresponding entry in the
string table as the second value.
If @i[must-exist] is @nil, then this function returns the string exactly as
entered. The difference between @f[prompt-for-keyword] with @i[must-exist]
@nil, and @f[prompt-for-string], is the user may complete the input using the
@hid<Complete Parse> and @hid<Complete Field> commands.
@enddefun
@defun[fun {prompt-for-expression},
keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This function reads a Lisp expression. If @i[must-exist] is @nil, and a read
error occurs, then this returns the string typed.
@enddefun
@defun[fun {prompt-for-string}, keys
{[prompt][help][default][default-string]}]
This function prompts for a string; this cannot fail.
@enddefun
@defun[fun {prompt-for-variable}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This function prompts for a variable name. If @i[must-exist] is non-@nil,
then the string must be a variable @i[defined in the current environment], in
which case the symbol name of the variable found is returned as the second
value.
@enddefun
@defun[fun {prompt-for-y-or-n}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This prompts for @binding[y], @binding[Y], @binding[n], or @binding[N],
returning @true or @nil without waiting for confirmation. When the user types
a confirmation key, this returns @i[default] if it is supplied. If
@i[must-exist] is @nil, this returns whatever key-event the user first types;
however, if the user types one of the above key-events, this returns @true or
@nil. This is analogous to the Common Lisp function @f[y-or-n-p].
@enddefun
@defun[fun {prompt-for-yes-or-no}, keys {[prompt][help][must-exist][default]},
morekeys {[default-string]}]
This function is to @f[prompt-for-y-or-n] as @f[yes-or-no-p] is to
@f[y-or-n-p]. "Yes" or "No" must be typed out in full and
confirmation must be given.
@enddefun
@section(Control of Parsing Behavior)
@defhvar[var {Beep On Ambiguity}, val {@true}]
If this variable is true, then an attempt to complete a parse which is
ambiguous will result in a "beep".
@enddefhvar
@begin(comment)
@hemlock provides for limited control of parsing routine behaviour The
character attribute @hid[Parse Field Separator] is a boolean attribute, a value
of @f[1] indicating that the character is a field separator recognized by the
@hid<Complete Field> command.
@end(comment)
@begin(comment)
@defhvar[var {Help Show Options}]
During a keyword or similar parse, typing the help command may cause a
list of options to be displayed. If displaying the help would take up
more lines than the value of this variable then confirmation will be
asked for before they will be displayed.
@enddefhvar
@end(comment)
@section(Defining New Prompting Functions)
Prompting functions are implemented as a recursive edit in the
@hid[Echo Area] buffer. Completion, help, and other parsing features
are implemented by commands which are bound in @hid[Echo Area Mode].
A prompting function passes information down into the recursive edit
by binding a collection of special variables.
@defvar[var {parse-verification-function}]
The system binds this to a function that @comref[Confirm Parse] calls. It does
most of the work when parsing prompted input. @comref[Confirm Parse] passes
one argument, which is the string that was in @var<parse-input-region> when the
user invokes the command. The function should return a list of values which
are to be the result of the recursive edit, or @nil indicating that the parse
failed. In order to return zero values, a non-@nil second value may be
returned along with a @nil first value.
@enddefvar
@defvar[var {parse-string-tables}]
This is the list of @f[string-table]s, if any, that pertain to this parse.
@enddefvar
@defvar[var {parse-value-must-exist}]
This is bound to the value of the @kwd[must-exist] argument, and is
referred to by the verification function, and possibly some of the
commands.
@enddefvar
@defvar[var {parse-default}]
When prompting the user, this is bound to a string representing the default
object, the value supplied as the @kwd[default] argument. @hid<Confirm Parse>
supplies this to the parse verification function when the
@var<parse-input-region> is empty.
@enddefvar
@defvar[var {parse-default-string}]
When prompting the user, if @var[parse-default] is @nil, @hemlock displays this
string as a representation of the default object; for example, when prompting
for a buffer, this variable would be bound to the buffer name.
@enddefvar
@defvar[var {parse-type}]
The kind of parse in progress, one of @kwd[file], @kwd[keyword] or
@kwd[string]. This tells the completion commands how to do completion, with
@kwd[string] disabling completion.
@enddefvar
@defvar[var {parse-prompt}]
The prompt being used for the current parse.
@enddefvar
@defvar[var {parse-help}]
The help string or function being used for the current parse.
@enddefvar
@defvar[var {parse-starting-mark}]
This variable holds a mark in the @varref[echo-area-buffer] which
is the position at which the parse began.
@enddefvar
@defvar[var {parse-input-region}]
This variable holds a region with @var[parse-starting-mark] as its
start and the end of the echo-area buffer as its end. When
@hid[Confirm Parse] is called, the text in this region is the text
that will be parsed.
@enddefvar
@section(Some Echo Area Commands)
These are some of the @hid[Echo Area] commands that coordinate with the
prompting routines. @Hemlock binds other commands specific to the @hid[Echo
Area], but they are uninteresting to mention here, such as deleting to the
beginning of the line or deleting backwards a word.
@defcom[com {Help On Parse},
stuff (bound to @bf[Home, C-_] in @hid[Echo Area] mode)]
Display the help text for the parse currently in progress.
@enddefcom
@defcom[com {Complete Keyword},
stuff (bound to @bf[Escape] in @hid[Echo Area] mode)]
This attempts to complete the current region as a keyword in
@var[string-tables]. It signals an editor-error if the input is ambiguous
or incorrect.
@enddefcom
@defcom[com {Complete Field},
stuff (bound to @bf[Space] in @hid[Echo Area] mode)]
Similar to @hid[Complete Keyword], but only attempts to complete up to and
including the first character in the keyword with a non-zero
@kwd[parse-field-separator] attribute. If
there is no field separator then attempt to complete the entire keyword.
If it is not a keyword parse then just self-insert.
@enddefcom
@defcom[com {Confirm Parse},
stuff (bound to @bf[Return] in @hid[Echo Area] mode)]
If @var[string-tables] is non-@nil find the string in the region in
them. Call @var[parse-verification-function] with the current input.
If it returns a non-@nil value then that is returned as the value of
the parse. A parse may return a @nil value if the verification
function returns a non-@nil second value.
@enddefcom
@chapter (Files)
@index (Files)
This chapter discusses ways to read and write files at various levels @dash at
marks, into regions, and into buffers. This also treats automatic mechanisms
that affect the state of buffers in which files are read.
@section (File Options and Type Hooks)
@index (File options)
@index (Type hooks)
@index (File type hooks)
The user specifies file options with a special syntax on the first line of a
file. If the first line contains the string "@f[-*-]", then @hemlock
interprets the text between the first such occurrence and the second, which
must be contained in one line , as a list of @w{"@f<@i[option]: @i[value]>"}
pairs separated by semicolons. The following is a typical example:
@begin[programexample]
;;; -*- Mode: Lisp, Editor; Package: Hemlock -*-
@end[programexample]
See the @i[Hemlock User's Manual] for more details and predefined options.
File type hooks are executed when @hemlock reads a file into a buffer based on
the type of the pathname. When the user specifies a @hid[Mode] file option
that turns on a major mode, @hemlock ignores type hooks. This mechanism is
mostly used as a simple means for turning on some appropriate default major
mode.
@defmac[fun {define-file-option}, args
{@i[name] (@i[buffer] @i[value]) @mstar<@i[declaration]> @mstar<@i[form]>}]
This defines a new file option with the string name @i[name]. @i[Buffer] and
@i[value] specify variable names for the buffer and the option value string,
and @i[form]'s are evaluated with these bound.
@enddefmac
@defmac[fun {define-file-type-hook}, args
{@i[type-list] (@i[buffer] @i[type]) @mstar<@i[declaration]> @mstar<@i[form]>}]
This defines some code that @f[process-file-options] (below) executes when the
file options fail to set a major mode. This associates each type, a
@f[simple-string], in @i[type-list] with a routine that binds @i[buffer] to the
buffer the file is in and @i[type] to the type of the pathname.
@enddefmac
@defun[fun {process-file-options}, args {@i[buffer] @optional @i[pathname]}]
This checks for file options in buffer and invokes handlers if there are any.
@i[Pathname] defaults to @i[buffer]'s pathname but may be @nil. If there is no
@hid[Mode] file option that specifies a major mode, and @i[pathname] has a
type, then this tries to invoke the appropriate file type hook.
@f[read-buffer-file] calls this.
@enddefun
@section (Pathnames and Buffers)
There is no good way to uniquely identify buffer names and pathnames. However,
@hemlock has one way of mapping pathnames to buffer names that should be used
for consistency among customizations and primitives. Independent of this,
@hemlock provides a means for consistently generating prompting defaults when
asking the user for pathnames.
@defun[fun {pathname-to-buffer-name}, args {@i[pathname]}]
This function returns a string of the form "@f[file-namestring]
@f[directory-namestring]".
@enddefun
@defhvar[var "Pathname Defaults", val {(pathname "gazonk.del")}]
@defhvar1[var "Last Resort Pathname Defaults Function"]
@defhvar1[var "Last Resort Pathname Defaults", val {(pathname "gazonk")}]
These variables control the computation of default pathnames when needed for
promting the user. @hid[Pathname Defaults] is a @i[sticky] default.
See the @i[Hemlock User's Manual] for more details.
@enddefhvar
@defun[fun {buffer-default-pathname}, args {@i[buffer]}]
This returns @hid[Buffer Pathname] if it is bound. If it is not bound, and
@i[buffer]'s name is composed solely of alphnumeric characters, then return a
pathname formed from @i[buffer]'s name. If @i[buffer]'s name has other
characters in it, then return the value of @hid[Last Resort Pathname Defaults
Function] called on @i[buffer].
@enddefun
@section (File Groups)
@index (File groups)
File groups provide a simple way of collecting the files that compose a system
and naming that collection. @Hemlock supports commands for searching,
replacing, and compiling groups.
@defvar[var {active-file-group}]
This is the list of files that constitute the currently selected file group.
If this is @nil, then there is no current group.
@enddefvar
@defmac[fun {do-active-group}, args {@mstar<@i[form]>}]
@defhvar1[var "Group Find File", val {nil}]
@defhvar1[var "Group Save File Confirm", val {t}]
@f[do-active-group] iterates over @var[active-file-group] executing the forms
once for each file. While the forms are executing, the file is in the current
buffer, and the point is at the beginning. If there is no active group, this
signals an editor-error.
This reads each file into its own buffer using @f[find-file-buffer]. Since
unwanted buffers may consume large amounts of memory, @hid[Group Find File]
controls whether to delete the buffer after executing the forms. When the
variable is false, this deletes the buffer if it did not previously exist;
however, regardless of this variable, if the user leaves the buffer modified,
the buffer persists after the forms have completed. Whenever this processes a
buffer that already existed, it saves the location of the buffer's point before
and restores it afterwards.
After processing a buffer, if it is modified, @f[do-active-group] tries to save
it. If @hid[Group Save File Confirm] is non-@nil, it asks for confirmation.
@enddefmac
@section (File Reading and Writing)
Common Lisp pathnames are used by the file primitives. For probing, checking
write dates, and so forth, all of the Common Lisp file functions are available.
@defun[fun {read-file}, args {@i[pathname] @i[mark]}]
This inserts the file named by @i[pathname] at @i[mark].
@enddefun
@defun[fun {write-file}, args {@i[region] @i[pathname]},
keys {[keep-backup][access][append]}]
@defhvar1[var {Keep Backup Files}, val {@nil}]
This function writes the contents of @i[region] to the file named by
@i[pathname]. This writes @i[region] using a stream as if it were opened with
@kwd[if-exists] supplied as @kwd[rename-and-delete].
When @i[keep-backup], which defaults to the value of @hid[Keep Backup Files],
is non-@nil, this opens the stream as if @kwd[if-exists] were @kwd[rename]. If
@i[append] is non-@nil, this writes the file as if it were opened with
@kwd[if-exists] supplied as @kwd[append].
This signals an error if both @i[append] and @i[keep-backup] are supplied as
non-@nil.
@i[Access] is an implementation dependent value that is suitable for setting
@i[pathname]'s access or protection bits.
@enddefun
@defun[fun {write-buffer-file}, args {@i[buffer] @i[pathname]}]
@defhvar1[var {Write File Hook}]
@defhvar1[var {Add Newline at EOF on Writing File}, val {@kwd[ask-user]}]
@f[write-buffer-file] writes @i[buffer] to the file named by @i[pathname]
including the following:
@begin[itemize]
It assumes pathname is somehow related to @i[buffer]'s pathname: if the
@i[buffer]'s write date is not the same as @i[pathname]'s, then this prompts
the user for confirmation before overwriting the file.
It consults @hid[Add Newline at EOF on Writing File] (see @i[Hemlock User's
Manual] for possible values) and interacts with the user if necessary.
It sets @hid[Pathname Defaults], and after using @f[write-file], marks
@i[buffer] unmodified.
It updates @i[Buffer]'s pathname and write date.
It renames the buffer according to the new pathname if possible.
It invokes @hid[Write File Hook].
@end[itemize]
@hid[Write File Hook] is a list of functions that take the newly written buffer
as an argument.
@enddefun
@defun[fun {read-buffer-file}, args {@i[pathname] @i[buffer]}]
@defhvar1[var {Read File Hook}]
@f[read-buffer-file] deletes @i[buffer]'s region and uses @f[read-file] to read
@i[pathname] into it, including the following:
@begin[itemize]
It sets @i[buffer]'s write date to the file's write date if the file exists;
otherwise, it @f[message]'s that this is a new file and sets @i[buffer]'s write
date to @nil.
It moves @i[buffer]'s point to the beginning.
It sets @i[buffer]'s unmodified status.
It sets @i[buffer]'s pathname to the result of probing @i[pathname] if the file
exists; otherwise, this function sets @i[buffer]'s pathname to the result of
merging @i[pathname] with @f[default-directory].
It sets @hid[Pathname Defaults] to the result of the previous item.
It processes the file options.
It invokes @hid[Read File Hook].
@end[itemize]
@hid[Read File Hook] is a list functions that take two arguments @dash the
buffer read into and whether the file existed, @true if so.
@enddefun
@defun[fun {find-file-buffer}, args {@i[pathname]}]
This returns a buffer assoicated with the @i[pathname], reading the file into a
new buffer if necessary. This returns a second value indicating whether a new
buffer was created, @true if so. If the file has already been read, this
checks to see if the file has been modified on disk since it was read, giving
the user various recovery options. This is the basis of the @hid[Find File]
command.
@enddefun
@chapter (Hemlock's Lisp Environment)
@index (Lisp environment)
This chapter is sort of a catch all for any functions and variables
which concern @hemlock's interaction with the outside world.
@section(Entering and Leaving the Editor)
@defun[fun {ed}, args {@optional @i[x]}]
@defhvar1[var "Entry Hook"]
@f[ed] enters the editor. It is basically as specified in Common Lisp. If
@i[x] is supplied and is a symbol, the definition of @i[x] is put into a
buffer, and that buffer is selected. If @i[x] is a pathname, the file
specified by @i[x] is visited in a new buffer. If @i[x] is not supplied or
@nil, the editor is entered in the same state as when last exited.
The @hid[Entry Hook] is invoked each time the editor is entered.
@enddefhvar
@defun[fun {exit-hemlock}, args {@optional @i[value]}]
@defhvar1[var {Exit Hook}]
@f[exit-hemlock] leaves @hemlock and return to Lisp; @i[value] is the
value to return, which defaults to @true. The hook
@hvarref[Exit Hook] is invoked before this is done.
@enddefun
@defun[fun {pause-hemlock}]
@f[pause-hemlock] suspends the editor process and returns control to the shell.
When the process is resumed, it will still be running @hemlock.
@enddefun
@section(Keyboard Input)
@index(I/O)
@index[keyboard input]
@index[input, keyboard]
Keyboard input interacts with a number of other parts of the editor. Since the
command loop works by reading from the keyboard, keyboard input is the initial
cause of everything that happens. Also, @hemlock redisplays in the low-level
input loop when there is no available input from the user.
@defvar[var {editor-input}]
@defvar1[var {real-editor-input}]
@defhvar1[var "Input Hook"]
@defhvar1[var "Abort Hook"]
@index[aborting]
@var[editor-input] is an object on which @hemlock's I/O routines operate. You
can get input, clear input, return input, and listen for input. Input appears
as key-events.
@var[real-editor-input] holds the initial value of @var[editor-input]. This is
useful for reading from the user when @var[editor-input] is rebound (such as
within a keyboard macro.)
@Hemlock invokes the functions in @hid[Input Hook] each time someone reads a
key-event from @var[real-editor-input]. These take no arguments.
@enddefvar
@defun[fun {get-key-event}, args {@i[editor-input] @optional @i[ignore-abort-attempts-p]}]
This function returns a key-event as soon as it is available on
@i[editor-input]. @i[Editor-input] is either @var[editor-input] or
@var[real-editor-input]. @i[Ignore-abort-attempts-p] indicates whether
@binding[C-g] and @binding[C-G] throw to the editor's top-level command loop;
when this is non-nil, this function returns those key-events when the user
types them. Otherwise, it aborts the editor's current state, returning to the
command loop.
When the user aborts, @Hemlock invokes the functions in @hid[Abort Hook].
These functions take no arguments. When aborting, @Hemlock ignores the
@hid[Input Hook].
@enddefun
@defun[fun {unget-key-event}, args {@i[key-event] @i[editor-input]}]
This function returns @i[key-event] to @i[editor-input], so the next invocation
of @f[get-key-event] will return @i[key-event]. If @i[key-event] is
@f[#k"C-g"] or @f[#k"C-G"], then whether @f[get-key-event] returns it depends
on that function's second argument. @i[Editor-input] is either
@var[editor-input] or @var[real-editor-input].
@enddefun
@defun[fun {clear-editor-input}, args {@i[editor-input]}]
This function flushes any pending input on @i[editor-input]. @i[Editor-input]
is either @var[editor-input] or @var[real-editor-input].
@enddefun
@defun[fun {listen-editor-input}, args {@i[editor-input]}]
This function returns whether there is any input available on @i[editor-input].
@i[Editor-input] is either @var[editor-input] or @var[real-editor-input].
@enddefun
@defun[fun {editor-sleep}, args {@i[time]}]
Return either after @i[time] seconds have elapsed or when input is available on
@var[editor-input].
@enddefun
@defvar[var {key-event-history}]
This is a @hemlock ring buffer (see page @pageref[rings]) that holds the last
60 key-events read from the keyboard.
@enddefvar
@defvar[var {last-key-event-typed}]
Commands use this variable to realize the last key-event the user typed to
invoke the commands. Before @hemlock ever reads any input, the value is @nil.
This variable usually holds the last key-event read from the keyboard, but it
is also maintained within keyboard macros allowing commands to behave the same
on each repetition as they did in the recording invocation.
@enddefvar
@defvar[var {input-transcript}]
If this is non-@nil then it should be an adjustable vector with a fill-pointer.
When it is non-@nil, @hemlock pushes all input read onto this vector.
@enddefvar
@section(Hemlock Streams)
It is possible to create streams which output to or get input from a buffer.
This mechanism is quite powerful and permits easy interfacing of @hemlock to
Lisp.
@defun[fun {make-hemlock-output-stream}, args
{@i[mark] @optional @i[buffered]}]
@defun1[fun {hemlock-output-stream-p}, args {@i[object]}]
@f[make-hemlock-output-stream] returns a stream that inserts at the permanent
mark @i[mark] all output directed to it. @i[Buffered] controls whether the
stream is buffered or not, and its valid values are the following keywords:
@begin[description]
@kwd[none]@\No buffering is done. This is the default.
@kwd[line]@\The buffer is flushed whenever a newline is written or
when it is explicitly done with @f[force-output].
@kwd[full]@\The screen is only brought up to date when it is
explicitly done with @f[force-output]
@end[description]
@f[hemlock-output-stream-p] returns @true if @i[object] is a
@f[hemlock-output-stream] object.
@enddefun
@defun[fun {make-hemlock-region-stream}, args {@i[region]}]
@defun1[fun {hemlock-region-stream-p}, args {@i[object]}]
@f[make-hemlock-region-stream] returns a stream from which the text in
@i[region] can be read. @f[hemlock-region-stream-p] returns @true if
@i[object] is a @f[hemlock-region-stream] object.
@enddefun
@defmac[fun {with-input-from-region}, args
{(@i[var] @i[region]) @mstar<@i[declaration]> @mstar<@i[form]>}]
While evaluating @i[form]s, binds @i[var] to a stream which returns input
from @i[region].
@enddefmac
@defmac[fun {with-output-to-mark}, args
{(@i[var] @i[mark] @mopt<@i"buffered">) @mstar<@i[declaration]> @mstar<@i[form]>}]
During the evaluation of the @i[form]s, binds @i[var] to a stream which
inserts output at the permanent @i[mark]. @i[Buffered] has the same meaning as
for @f[make-hemlock-output-stream].
@enddefmac
@defmac[fun {with-pop-up-display}, args {(@i[var] @key @i[height name]) @mstar<@i[declaration]> @mstar<@i[form]>}]
@defvar1[var {random-typeout-buffers}]
This macro executes @i[forms] in a context with @i[var] bound to a stream.
@Hemlock collects output to this stream and tries to pop up a display of the
appropriate height containing all the output. When @i[height] is supplied,
@Hemlock creates the pop-up display immediately, forcing output on line breaks.
The system saves the output in a buffer named @i[name], which defaults to
@hid[Random Typeout]. When the window is the incorrect height, the display
mechanism will scroll the window with more-style prompting. This is useful
for displaying information of temporary interest.
When a buffer with name @i[name] already exists and was not previously created
by @f[with-pop-up-display], @Hemlock signals an error.
@var[random-typeout-buffers] is an association list mapping random typeout
buffers to the streams that operate on the buffers.
@enddefmac
@section (Interface to the Error System)
The error system interface is minimal. There is a simple editor-error
condition which is a subtype of error and a convenient means for signaling
them. @Hemlock also provides a standard handler for error conditions while in
the editor.
@defun[fun {editor-error-format-string}, args {@i[condition]}]
@defun1[fun {editor-error-format-arguments}, args {@i[condition]}]
Handlers for editor-error conditions can access the condition object with
these.
@enddefun
@defun[fun {editor-error}, args {@rest @i[args]}]
This function is called to signal minor errors within Hemlock; these are errors
that a normal user could encounter in the course of editing such as a search
failing or an attempt to delete past the end of the buffer. This function
@f[signal]'s an editor-error condition formed from @i[args], which are @nil or
a @f[format] string possibly followed by @f[format] arguments. @Hemlock
invokes commands in a dynamic context with an editor-error condition handler
bound. This default handler beeps or flashes (or both) the display. If the
condition passed to the handler has a non-@nil string slot, the handler also
invokes @f[message] on it. The command in progress is always aborted, and this
function never returns.
@enddefun
@defmac[fun {handle-lisp-errors}, args {@mstar<@i[form]>}]
Within the body of this macro any Lisp errors that occur are handled in some
fashion more gracefully than simply dumping the user in the debugger. This
macro should be wrapped around code which may get an error due to some action
of the user @dash for example, evaluating code fragments on the behalf of and
supplied by the user. Using this in a command allows the established handler
to shadow the default editor-error handler, so commands should take care to
signal user errors (calls to @f[editor-errors]) outside of this context.
@enddefmac
@section (Definition Editing)
@index (Definition editing)
@hemlock provides commands for finding the definition of a function, macro, or
command and placing the user at the definition in a buffer. This, of course,
is implementation dependent, and if an implementation does not associate a
source file with a routine, or if @hemlock cannot get at the information, then
these commands do not work. If the Lisp system does not store an absolute
pathname, independent of the machine on which the maintainer built the system,
then users need a way of translating a source pathname to one that will be able
to locate the source.
@defun[fun {add-definition-dir-translation}, args {@i[dir1] @i[dir2]}]
This maps directory pathname @i[dir1] to @i[dir2]. Successive invocations
using the same @i[dir1] push into a translation list. When @hemlock seeks a
definition source file, and it has a translation, then it tries the
translations in order. This is useful if your sources are on various machines,
some of which may be down. When @hemlock tries to find a translation, it first
looks for translations of longer directory pathnames, finding more specific
translations before shorter, more general ones.
@enddefun
@defun[fun {delete-definition-dir-translation}, args {@i[dir]}]
This deletes the mapping of @i[dir] to all directories to which it has been
mapped.
@enddefun
@section (Event Scheduling)
@index (Event scheduling)
@index (Scheduling events)
The mechanism described in this chapter is only operative when the Lisp process
is actually running inside of @hemlock, within the @f[ed] function. The
designers intended its use to be associated with the editor, such as with
auto-saving files, reminding the user, etc.
@defun[fun {schedule-event}, args {@i[time] @i[function] @optional @i[repeat]}]
This causes @hemlock to call @i[function] after @i[time] seconds have passed,
optionally repeating every @i[time] seconds. @i[Repeat] defaults to @true.
This is a rough mechanism since commands can take an arbitrary amount of time
to run; @hemlock invokes @i[function] at the first possible moment after
@i[time] has elapsed. @i[Function] takes the time in seconds that has elapsed
since the last time it was called (or since it was scheduled for the first
invocation).
@enddefun
@defun[fun {remove-scheduled-event}, args {@i[function]}]
This removes @i[function] from the scheduling queue. @i[Function] does not
have to be in the queue.
@enddefun
@section (Miscellaneous)
@defun[fun {in-lisp}, args {@mstar<@i[form]>}]
@index[Evaluating Lisp code]
This evaluates @i[form]'s inside @f[handle-lisp-errors]. It also binds
@var[package] to the package named by @hid[Current Package] if it is non-@nil.
Use this when evaluating Lisp code on behalf of the user.
@enddefun
@defmac[fun {do-alpha-chars}, args {(@i[var] @i[kind] [@i[result]]) @mstar<@i[form]>}]
This iterates over alphabetic characters in Common Lisp binding @i[var] to each
character in order as specified under character relations in @i[Common Lisp the
Language]. @i[Kind] is one of @kwd[lower], @kwd[upper], or @kwd[both]. When
the user supplies @kwd[both], lowercase characters are processed first.
@enddefmac
@chapter (High-Level Text Primitives)
This chapter discusses primitives that operate on higher level text forms than
characters and words. For English text, there are functions that know about
sentence and paragraph structures, and for Lisp sources, there are functions
that understand this language. This chapter also describes mechanisms for
organizing file sections into @i[logical pages] and for formatting text forms.
@section (Indenting Text)
@index (Indenting)
@label(indenting)
@defhvar[var "Indent Function", val {tab-to-tab-stop}]
The value of this variable determines how indentation is done, and it is a
function which is passed a mark as its argument. The function should indent
the line that the mark points to. The function may move the mark around on
the line. The mark will be @f[:left-inserting]. The default simply inserts a
@binding[tab] character at the mark. A function for @hid[Lisp] mode probably
moves the mark to the beginning of the line, deletes horizontal whitespace, and
computes some appropriate indentation for Lisp code.
@enddefhvar
@defhvar[var "Indent with Tabs", val {indent-using-tabs}]
@defhvar1[var "Spaces per Tab", val {8}]
@hid[Indent with Tabs] holds a function that takes a mark and a number of
spaces. The function will insert a maximum number of tabs and a minimum number
of spaces at mark to move the specified number of columns. The default
definition uses @hid[Spaces per Tab] to determine the size of a tab. @i[Note,]
@hid[Spaces per Tab] @i[is not used everywhere in @hemlock yet, so changing
this variable could have unexpected results.]
@enddefhvar
@defun[fun {indent-region}, args {@i[region]}]
@defun1[fun {indent-region-for-commands}, args {@i[region]}]
@f[indent-region] invokes the value of @hid[Indent Function] on every line of
region. @f[indent-region-for-commands] uses @f[indent-region] but first saves
the region for the @hid[Undo] command.
@enddefun
@defun[fun {delete-horizontal-space}, args {@i[mark]}]
This deletes all characters with a @hid[Space] attribute (see section
@ref[sys-def-chars]) of @f[1].
@enddefun
@section (Lisp Text Buffers)
@index (Lisp text functions)
@hemlock bases its Lisp primitives on parsing a block of the buffer and
annotating lines as to what kind of Lisp syntax occurs on the line or what kind
of form a mark might be in (for example, string, comment, list, etc.). These
do not work well if the block of parsed forms is exceeded when moving marks
around these forms, but the block that gets parsed is somewhat programmable.
There is also a notion of a @i[top level form] which this documentation often
uses synonymously with @i[defun], meaning a Lisp form occurring in a source
file delimited by parentheses with the opening parenthesis at the beginning of
some line. The names of the functions include this inconsistency.
@defun[fun {pre-command-parse-check}, args {@i[mark] @i[for-sure]}]
@defhvar1[var {Parse Start Function}, val {start-of-parse-block}]
@defhvar1[var {Parse End Function}, val {end-of-parse-block}]
@defhvar1[var {Minimum Lines Parsed}, val {50}]
@defhvar1[var {Maximum Lines Parsed}, val {500}]
@defhvar1[var {Defun Parse Goal}, val {2}]
@f[pre-command-parse-check] calls @hid[Parse Start Function] and @hid[Parse End
Function] on @i[mark] to get two marks. It then parses all the lines between
the marks including the complete lines they point into. When @i[for-sure] is
non-@nil, this parses the area regardless of any cached information about the
lines. Every command that uses the following routines calls this before doing
so.
The default values of the start and end variables use @hid[Minimum Lines
Parsed], @hid[Maximum Lines Parsed], and @hid[Defun Parse Goal] to determine
how big a region to parse. These two functions always include at least the
minimum number of lines before and after the mark passed to them. They try to
include @hid[Defun Parse Goal] number of top level forms before and after the
mark passed them, but these functions never return marks that include more than
the maximum number of lines before or after the mark passed to them.
@enddefun
@defun[fun {form-offset}, args {@i[mark] @i[count]}]
This tries to move @i[mark] @i[count] forms forward if positive or -@i[count]
forms backwards if negative. @i[Mark] is always moved. If there were enough
forms in the appropriate direction, this returns @i[mark], otherwise nil.
@enddefun
@defun[fun {top-level-offset}, args {@i[mark] @i[count]}]
This tries to move @i[mark] @i[count] top level forms forward if positive or
-@i[count] top level forms backwards if negative. If there were enough top
level forms in the appropriate direction, this returns @i[mark], otherwise nil.
@i[Mark] is moved only if this is successful.
@enddefun
@defun[fun {mark-top-level-form}, args {@i[mark1] @i[mark2]}]
This moves @i[mark1] and @i[mark2] to the beginning and end, respectively, of
the current or next top level form. @i[Mark1] is used as a reference to start
looking. The marks may be altered even if unsuccessful. If successful, return
@i[mark2], else nil. @i[Mark2] is left at the beginning of the line following
the top level form if possible, but if the last line has text after the closing
parenthesis, this leaves the mark immediately after the form.
@enddefun
@defun[fun {defun-region}, args {@i[mark]}]
This returns a region around the current or next defun with respect to
@i[mark]. @i[Mark] is not used to form the region. If there is no appropriate
top level form, this signals an editor-error. This calls
@f[pre-command-parse-check] first.
@enddefun
@defun[fun {inside-defun-p}, args {@i[mark]}]
@defun1[fun {start-defun-p}, args {@i[mark]}]
These return, respectively, whether @i[mark] is inside a top level form or at
the beginning of a line immediately before a character whose @hid[Lisp Syntax]
(see section @ref[sys-def-chars]) value is @kwd[opening-paren].
@enddefun
@defun[fun {forward-up-list}, args {@i[mark]}]
@defun1[fun {backward-up-list}, args {@i[mark]}]
Respectively, these move @i[mark] immediately past a character whose @hid[Lisp
Syntax] (see section @ref[sys-def-chars]) value is @kwd[closing-paren] or
immediately before a character whose @hid[Lisp Syntax] value is
@kwd[opening-paren].
@enddefun
@defun[fun {valid-spot}, args {@i[mark] @i[forwardp]}]
This returns @true or @nil depending on whether the character indicated by
@i[mark] is a valid spot. When @i[forwardp] is set, use the character after
mark and vice versa. Valid spots exclude commented text, inside strings, and
character quoting.
@enddefun
@defun[fun {defindent}, args {@i[name] @i[count]}]
This defines the function with @i[name] to have @i[count] special arguments.
@f[indent-for-lisp], the value of @hid[Indent Function] (see section
@ref[indenting]) in @hid[Lisp] mode, uses this to specially indent these
arguments. For example, @f[do] has two, @f[with-open-file] has one, etc.
There are many of these defined by the system including definitions for special
@hemlock forms. @i[Name] is a simple-string, case insensitive and purely
textual (that is, not read by the Lisp reader); therefore, @f["with-a-mumble"]
is distinct from @f["mumble:with-a-mumble"].
@enddefun
@section (English Text Buffers)
@index (English text functions)
@label(text-functions)
This section describes some routines that understand basic English language
forms.
@defun[fun {word-offset}, args {@i[mark] @i[count]}]
This moves @i[mark] @i[count] words forward (if positive) or backwards (if
negative). If @i[mark] is in the middle of a word, that counts as one. If
there were @i[count] (-@i[count] if negative) words in the appropriate
direction, this returns @i[mark], otherwise nil. This always moves @i[mark].
A word lies between two characters whose @hid[Word Delimiter] attribute value
is @f[1] (see section @ref[sys-def-chars]).
@enddefun
@defun[fun {sentence-offset}, args {@i[mark] @i[count]}]
This moves @i[mark] @i[count] sentences forward (if positive) or backwards (if
negative). If @i[mark] is in the middle of a sentence, that counts as one. If
there were @i[count] (-@i[count] if negative) sentences in the appropriate
direction, this returns @i[mark], otherwise nil. This always moves @i[mark].
A sentence ends with a character whose @hid[Sentence Terminator] attribute is
@f[1] followed by two spaces, a newline, or the end of the buffer. The
terminating character is optionally followed by any number of characters whose
@hid[Sentence Closing Char] attribute is @f[1]. A sentence begins after a
previous sentence ends, at the beginning of a paragraph, or at the beginning of
the buffer.
@enddefun
@defun[fun {paragraph-offset}, args {@i[mark] @i[count] @optional @i[prefix]}]
@defhvar1[var {Paragraph Delimiter Function}, var {default-para-delim-function}]
This moves @i[mark] @i[count] paragraphs forward (if positive) or backwards (if
negative). If @i[mark] is in the middle of a paragraph, that counts as one.
If there were @i[count] (-@i[count] if negative) paragraphs in the appropriate
direction, this returns @i[mark], otherwise nil. This only moves @i[mark] if
there were enough paragraphs.
@hid[Paragraph Delimiter Function] holds a function that takes a mark,
typically at the beginning of a line, and returns whether or not the current
line should break the paragraph. @f[default-para-delim-function] returns @true
if the next character, the first on the line, has a @hid[Paragraph Delimiter]
attribute value of @f[1]. This is typically a space, for an indented
paragraph, or a newline, for a block style. Some modes require a more
complicated determinant; for example, @hid[Scribe] modes adds some characters
to the set and special cases certain formatting commands.
@i[Prefix] defaults to @hid[Fill Prefix] (see section @ref[filling]), and the
right prefix is necessary to correctly skip paragraphs. If @i[prefix] is
non-@nil, and a line begins with @i[prefix], then the scanning process skips
the prefix before invoking the @hid[Paragraph Delimiter Function].
Note, when scanning for paragraph bounds, and @i[prefix] is non-@nil, lines are
potentially part of the paragraph regardless of whether they contain the prefix;
only the result of invoking the delimiter function matters.
The programmer should be aware of an idiom for finding the end of the current
paragraph. Assume @f[paragraphp] is the result of moving @f[mark] one
paragraph, then the following correctly determines whether there actually is a
current paragraph:
@begin[programexample]
(or paragraphp
(and (last-line-p mark)
(end-line-p mark)
(not (blank-line-p (mark-line mark)))))
@end[programexample]
In this example @f[mark] is at the end of the last paragraph in the buffer, and
there is no last newline character in the buffer. @f[paragraph-offset] would
have returned @nil since it could not skip any paragraphs since @f[mark] was at
the end of the current and last paragraph. However, you still have found a
current paragraph on which to operate. @f[mark-paragraph] understands this
problem.
@enddefun
@defun[fun {mark-paragraph}, args {@f[mark1] @f[mark2]}]
This marks the next or current paragraph, setting @i[mark1] to the beginning
and @i[mark2] to the end. This uses @hid[Fill Prefix] (see section
@ref[filling]). @i[Mark1] is always on the first line of the paragraph,
regardless of whether the previous line is blank. @i[Mark2] is typically at
the beginning of the line after the line the paragraph ends on, this returns
@i[mark2] on success. If this cannot find a paragraph, then the marks are left
unmoved, and @nil is returned.
@enddefun
@section (Logical Pages)
@index (Logical pages)
@index (Page functions)
@label(logical-pages)
Logical pages are a way of dividing a file into coarse divisions. This is
analogous to dividing a paper into sections, and @hemlock provides primitives
for moving between the pages of a file and listing a directory of the page
titles. Pages are separated by @hid[Page Delimiter] characters (see section
@ref[sys-def-chars]) that appear at the beginning of a line.
@defun[fun {goto-page}, args {@i[mark] @i[n]}]
This moves @i[mark] to the absolute page numbered @i[n]. If there are less
than @i[n] pages, it signals an editor-error. If it returns, it returns
@i[mark]. @hemlock numbers pages starting with one for the page delimited by
the beginning of the buffer and the first @hid[Page Delimiter] (or the end of
the buffer).
@enddefun
@defun[fun {page-offset}, args {@i[mark] @i[n]}]
This moves mark forward @i[n] (-@i[n] backwards, if @i[n] is negative)
@hid[Page Delimiter] characters that are in the zero'th line position. If a
@hid[Page Delimiter] is the immediately next character after mark (or before
mark, if @i[n] is negative), then skip it before starting. This always moves
@i[mark], and if there were enough pages to move over, it returns @i[mark];
otherwise, it returns @nil.
@enddefun
@defun[fun {page-directory}, args {@i[buffer]}]
This returns a list of each first non-blank line in @i[buffer] that follows a
@hid[Page Delimiter] character that is in the zero'th line position. This
includes the first line of the @i[buffer] as the first page title. If a page
is empty, then its title is the empty string.
@enddefun
@defun[fun {display-page-directory}, args {@i[stream] @i[directory]}]
This writes the list of strings, @i[directory], to @i[stream], enumerating them
in a field three wide. The number and string are separated by two spaces, and
the first line contains headings for the page numbers and title strings.
@enddefun
@section (Filling)
@index (filling)
@label(filling)
Filling is an operation on text that breaks long lines at word boundaries
before a given column and merges shorter lines together in an attempt to make
each line roughly the specified length. This is different from justification
which tries to add whitespace in awkward places to make each line exactly the
same length. @Hemlock's filling optionally inserts a specified string at the
beginning of each line. Also, it eliminates extra whitespace between lines and
words, but it knows two spaces follow sentences (see section
@ref[text-functions]).
@defhvar[var "Fill Column", val {75}]
@defhvar1[var "Fill Prefix", val {nil}]
These variables hold the default values of the prefix and column arguments to
@hemlock's filling primitives. If @hid[Fill Prefix] is @nil, then there is no
fill prefix.
@enddefhvar
@defun[fun {fill-region}, args {@i[region] @optional @i[prefix] @i[column]}]
This deletes any blank lines in region and fills it according to prefix and
column. @i[Prefix] and @i[column] default to @hid[Fill Prefix] and @hid[Fill
Column].
@enddefun
@defun[fun {fill-region-by-paragraphs},
args {@i[region] @optional @i[prefix] @i[column]}]
This finds paragraphs (see section @ref[text-functions]) within region and
fills them with @f[fill-region]. This ignores blank lines between paragraphs.
@i[Prefix] and @i[column] default to @hid[Fill Prefix] and @hid[Fill Column].
@enddefun
@chapter (Utilities)
@index (Utilities)
This chapter describes a number of utilities for manipulating some types of
objects @hemlock uses to record information. String-tables are used to store
names of variables, commands, modes, and buffers. Ring lists can be used to
provide a kill ring, recent command history, or other user-visible features.
@section(String-table Functions)
@index (String-tables)
@label(string-tables)
String tables are similar to Common Lisp hash tables in that they associate a
value with an object. There are a few useful differences: in a string table
the key is always a case insensitive string, and primitives are provided to
facilitate keyword completion and recognition. Any type of string may be added
to a string table, but the string table functions always return
@f[simple-string]'s.
A string entry in one of these tables may be thought of as being separated into
fields or keywords. The interface provides keyword completion and recognition
which is primarily used to implement some @hid[Echo Area] commands. These
routines perform a prefix match on a field-by-field basis allowing the
ambiguous specification of earlier fields while going on to enter later fields.
While string tables may use any @f[string-char] as a separator, the use of
characters other than @binding[space] may make the @hid[Echo Area] commands
fail or work unexpectedly.
@defun[fun {make-string-table}, keys {[separator][initial-contents]}]
This function creates an empty string table that uses @i[separator] as the
character, which must be a @f[string-char], that distinguishes fields.
@i[Initial-contents] specifies an initial set of strings and their values in
the form of a dotted @f[a-list], for example:
@Begin[ProgramExample]
'(("Global" . t) ("Mode" . t) ("Buffer" . t))
@End[ProgramExample]
@enddefun
@defun[fun {string-table-p}, args {@i[string-table]}]
This function returns @true if @i[string-table] is a @f[string-table] object,
otherwise @nil.
@enddefun
@defun[fun {string-table-separator}, args {@i[string-table]}]
This function returns the separator character given to @f[make-string-table].
@enddefun
@defun[fun {delete-string}, args {@i[string] @i[table]}]
@defun1[fun {clrstring}, args {@i[table]}]
@f[delete-string] removes any entry for @i[string] from the @f[string-table]
@i[table], returning @true if there was an entry. @f[clrstring] removes all
entries from @i[table].
@enddefun
@defun[fun {getstring}, args {@i[string] @i[table]}]
This function returns as multiple values, first the value corresponding to the
string if it is found and @nil if it isn't, and second @true if it is found and
@nil if it isn't.
This may be set with @f[setf] to add a new entry or to store a new value for a
string. It is an error to try to insert a string with more than one
field separator character occurring contiguously.
@enddefun
@defun[fun {complete-string}, args {@i[string] @i[tables]}]
This function completes @i[string] as far as possible over the list of
@i[tables], returning five values. It is an error for @i[tables] to have
different separator characters. The five return values are as follows:
@begin[itemize]
The maximal completion of the string or @nil if there is none.
An indication of the usefulness of the returned string:
@begin[description]
@kwd[none]@\
There is no completion of @i[string].
@kwd[complete]@\
The completion is a valid entry, but other valid completions exist too. This
occurs when the supplied string is an entry as well as initial substring of
another entry.
@kwd[unique]@\
The completion is a valid entry and unique.
@kwd[ambiguous]@\
The completion is invalid; @f[get-string] would return @nil and @nil if given
the returned string.
@end[description]
The value of the string when the completion is @kwd[unique] or @kwd[complete],
otherwise @nil.
An index, or nil, into the completion returned, indicating where the addition
of a single field to @i[string] ends. The command @hid[Complete Field] uses
this when the completion contains the addition to @i[string] of more than one
field.
An index to the separator following the first ambiguous field when the
completion is @kwd[ambiguous] or @kwd[complete], otherwise @nil.
@end[itemize]
@enddefun
@defun[fun {find-ambiguous}, args {@i[string] @i[table]}]
@defun1[fun {find-containing}, args {@i[string] @i[table]}]
@f[find-ambiguous] returns a list in alphabetical order of all the
strings in @i[table] matching @i[string]. This considers an entry as matching
if each field in @i[string], taken in order, is an initial substring of the
entry's fields; entry may have fields remaining.
@f[find-containing] is similar, but it ignores the order of the fields in
@i[string], returning all strings in @i[table] matching any permutation of the
fields in @i[string].
@enddefun
@defmac[fun {do-strings}, args {(@i[string-var] @i[value-var] @i[table] @MOPT<@i[result]>) @mstar<@i[declaration]> @mstar<@i[tag] @MOR @i[statement]>}]
This macro iterates over the strings in @i[table] in alphabetical order. On
each iteration, it binds @i[string-var] to an entry's string and @i[value-var]
to an entry's value.
@enddefmac
@section (Ring Functions)
@index (Rings)
@label[rings]
There are various purposes in an editor for which a ring of values can be used,
so @hemlock provides a general ring buffer type. It is used for maintaining a
ring of killed regions (see section @ref[kill-ring]), a ring of marks (see
section @ref[mark-stack]), or a ring of command strings which various modes and
commands maintain as a history mechanism.
@defun[fun {make-ring}, args {@i[length] @optional @i[delete-function]}]
Makes an empty ring object capable of holding up to @i[length] Lisp objects.
@i[Delete-function] is a function that each object is passed to before it falls
off the end. @i[Length] must be greater than zero.
@enddefun
@defun[fun {ringp}, args {@i[ring]}]
Returns @true if @i[ring] is a @f[ring] object, otherwise @nil.
@enddefun
@defun[fun {ring-length}, args {@i[ring]}]
Returns as multiple-values the number of elements which @i[ring]
currently holds and the maximum number of elements which it may hold.
@enddefun
@defun[fun {ring-ref}, args {@i[ring] @i[index]}]
Returns the @i[index]'th item in the @i[ring], where zero is the index
of the most recently pushed. This may be set with @f[setf].
@enddefun
@defun[fun {ring-push}, args {@i[object] @i[ring]}]
Pushes @i[object] into @i[ring], possibly causing the oldest item to
go away.
@enddefun
@defun[fun {ring-pop}, args {@i[ring]}]
Removes the most recently pushed object from @i[ring] and returns it.
If the ring contains no elements then an error is signalled.
@enddefun
@defun[fun {rotate-ring}, args {@i[ring] @i[offset]}]
With a positive @i[offset], rotates @i[ring] forward that many times.
In a forward rotation the index of each element is reduced by one,
except the one which initially had a zero index, which is made the
last element. A negative offset rotates the ring the other way.
@enddefun
@section (Undoing commands)
@index (Undo functions)
@label(undo)
@defun[fun {save-for-undo}, args {@i[name] @i[method] @optional @i[cleanup] @i[method-undo] @i[buffer]}]
This saves information to undo a command. @i[Name] is a string to display when
prompting the user for confirmation when he invokes the @hid[Undo] command (for
example, @f["kill"] or @f["Fill Paragraph"]). @i[Method] is the function to
invoke to undo the effect of the command. @i[Method-undo] is a function that
undoes the undo function, or effectively re-establishes the state immediately
after invoking the command. If there is any existing undo information, this
invokes the @i[cleanup] function; typically @i[method] closes over or uses
permanent marks into a buffer, and the @i[cleanup] function should delete such
references. @i[Buffer] defaults to the @f[current-buffer], and the @hid[Undo]
command only invokes undo methods when they were saved for the buffer that is
current when the user invokes @hid[Undo].
@enddefun
@defun[fun {make-region-undo}, args {@i[kind] @i[name] @i[region] @optional @i[mark-or-region]}]
This handles three common cases that commands fall into when setting up undo
methods, including cleanup and method-undo functions (see @f[save-for-undo]).
These cases are indicated by the @i[kind] argument:
@begin[description]
@kwd[twiddle]@\
Use this kind when a command modifies a region, and the undo information
indicates how to swap between two regions @dash the one before any modification
occurs and the resulting region. @i[Region] is the resulting region, and it
has permanent marks into the buffer. @i[Mark-or-region] is a region without
marks into the buffer (for example, the result of @f[copy-region]). As a
result of calling this, a first invocation of @hid[Undo] deletes @i[region],
saving it, and inserts @i[mark-or-region] where @i[region] used to be. The
undo method sets up for a second invocation of @hid[Undo] that will undo the
effect of the undo; that is, after two calls, the buffer is exactly as it was
after invoking the command. This activity is repeatable any number of times.
This establishes a cleanup method that deletes the two permanent marks into the
buffer used to locate the modified region.
@kwd[insert]@\
Use this kind when a command has deleted a region, and the undo information
indicates how to re-insert the region. @i[Region] is the deleted and saved
region, and it does not contain marks into any buffer. @i[Mark-or-region] is a
permanent mark into the buffer where the undo method should insert @i[region].
As a result of calling this, a first invocation of @hid[Undo] inserts
@i[region] at @i[mark-or-region] and forms a region around the inserted text
with permanent marks into the buffer. This allows a second invocation of
@hid[Undo] to undo the effect of the undo; that is, after two calls, the buffer
is exactly as it was after invoking the command. This activity is repeatable
any number of times. This establishes a cleanup method that deletes either the
permanent mark into the buffer or the two permanent marks of the region,
depending on how many times the user used @hid[Undo].
@kwd[delete]@\
Use this kind when a command has inserted a block of text, and the undo
information indicates how to delete the region. @i[Region] has permanent marks
into the buffer and surrounds the inserted text. Leave @i[Mark-or-region]
unspecified. As a result of calling this, a first invocation of @hid[Undo]
deletes @i[region], saving it, and establishes a permanent mark into the buffer
to remember where the @i[region] was. This allows a second invocation of
@hid[Undo] to undo the effect of the undo; that is, after two calls, the buffer
is exactly as it was after invoking the command. This activity is repeatable
any number of times. This establishes a cleanup method that deletes either the
permanent mark into the buffer or the two permanent marks of the region,
depending on how many times the user used @hid[Undo].
@end[description]
@blankspace(1 line)
@i[Name] in all cases is an appropriate string indicating what the command did.
This is used by @hid[Undo] when prompting the user for confirmation before
calling the undo method. The string used by @hid[Undo] alternates between this
argument and something to indicate that the user is undoing an undo.
@enddefun
@chapter (Miscellaneous)
This chapter is somewhat of a catch-all for comments and features that don't
fit well anywhere else.
@section (Generic Pointer Up)
@hid[Generic Pointer Up] is a @hemlock command bound to mouse up-clicks. It
invokes a function supplied with the interface described in this section. This
command allows different commands to be bound to the same down-click in various
modes with one command bound to the corresponding up-click.
@defun[fun {supply-generic-pointer-up-function}, args {@i[function]}]
@index[Generic Pointer Up]
This function supplies a function that @hid[Generic Pointer Up] invokes the
next time it executes.
@enddefun
@section (Using View Mode)
@hid[View] mode supports scrolling through files automatically terminating the
buffer at end-of-file as well as commands for quitting the mode and popping
back to the buffer that spawned the @hid[View] mode buffer. Modes such as
@hid[Dired] and @hid[Lisp-Lib] use this to view files and description of
library entries.
Modes that want similar commands should use @f[view-file-command] to view a
file and get a handle on the view buffer. To allow the @hid[View Return] and
@hid[View Quit] commands to return to the originating buffer, you must set the
variable @hid[View Return Function] in the viewing buffer to a function that
knows how to do this. Furthermore, since you now have a reference to the
originating buffer, you must add a buffer local delete hook to it that will
clear the view return function's reference. This needs to happen for two
reasons in case the user deletes the originating buffer:
@Begin[Enumerate]
You don't want the return function to go to a non-existing, invalid buffer.
Since the viewing buffer still exists, its @hid[View Return Function] buffer
local variable still exists. This means the function still references the
deleted originating buffer, and garbage collection cannot reclaim the memory
locked down by the deleted buffer.
@End[Enumerate]
The following is a piece of code that could implement part of @hid[Dired View
File] that uses two closures to accomplish that described above:
@Begin[ProgramExample]
(let* ((dired-buf (current-buffer))
(buffer (view-file-command nil pathname)))
(push #'(lambda (buffer)
(declare (ignore buffer))
(setf dired-buf nil))
(buffer-delete-hook dired-buf))
(setf (variable-value 'view-return-function :buffer buffer)
#'(lambda ()
(if dired-buf
(change-to-buffer dired-buf)
(dired-from-buffer-pathname-command nil)))))
@End[ProgramExample]
The @hid[Dired] buffer's delete hook clears the return function's reference to
the @hid[Dired] buffer. The return function tests the variable to see if it
still holds a buffer when the function executes.
@comment[@chapter (Auxiliary Systems)]
@include(aux-sys)
| CartoCSS | 5 | digikar99/ccl | cocoa-ide/hemlock/doc/cim/cim.mss | [
"Apache-2.0"
] |
# Makefile for jpeg2ps
# (C) Thomas Merz 1994-2002
# Unsupported VMS support file for mms, initially provided by
# Rolf Niepraschk ([email protected] )
#
----------------------------------------------------------------------------
# VMS version
# Start with "mms /ignore=warn"
#
# throw out /DEFINE=A4 if you want letter format as default size
CC=cc
CCOPT= /DEFINE=A4/PREFIX=ALL
LDOPT=
OBJ=OBJ
EXE=.EXE
RM=rm
.c.$(OBJ) :
$(CC) $(CCOPT) $*.c
all : jpeg2ps$(EXE)
@ !
jpeg2ps$(EXE) : jpeg2ps.$(OBJ) readjpeg.$(OBJ) asc85ec.$(OBJ)
getopt.$(OBJ)
LINK $(LDOPT) /EXE=$@ $+
clean :
@ $ IF F$SEARCH("*.$(OBJ)",).NES."" THEN DEL/LOG *.$(OBJ);*
@ $ IF F$SEARCH("jpeg2ps$(EXE)",).NES."" THEN DEL/LOG
jpeg2ps$(EXE);*
jpeg2ps.$(OBJ) : jpeg2ps.c psimage.h
readjpeg.$(OBJ) : readjpeg.c psimage.h
asc85ec.$(OBJ) : asc85ec.c
getopt.$(OBJ) : getopt.c
| Module Management System | 4 | cfelder/gr | apps/moldyn/legacy/jpeg2ps/descrip.mms | [
"RSA-MD"
] |
Ground reload_val = 42
| Ioke | 0 | olabini/ioke | test/reload1.ik | [
"ICU",
"MIT"
] |
--TEST--
ReflectionClassConstant::isEnumCase()
--FILE--
<?php
enum Foo {
case Bar;
const Baz = self::Bar;
}
class Qux {
const Quux = 0;
}
var_dump((new ReflectionClassConstant(Foo::class, 'Bar'))->isEnumCase());
var_dump((new ReflectionClassConstant(Foo::class, 'Baz'))->isEnumCase());
var_dump((new ReflectionClassConstant(Qux::class, 'Quux'))->isEnumCase());
?>
--EXPECT--
bool(true)
bool(false)
bool(false)
| PHP | 3 | NathanFreeman/php-src | ext/reflection/tests/ReflectionClassConstant_isEnumCase.phpt | [
"PHP-3.01"
] |
<?xml version="1.0" encoding="UTF-8"?>
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:c="http://www.w3.org/ns/xproc-step" version="1.0">
<p:input port="source">
<p:inline>
<doc>Hello world!</doc>
</p:inline>
</p:input>
<p:output port="result"/>
<p:identity/>
</p:declare-step> | XProc | 2 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/XProc/xproc.xpl | [
"MIT"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon([/*#__PURE__*/_jsx("path", {
d: "m19.8 2-8.2 6.7-1.21-1.04 3.6-2.08L9.41 1 8 2.41l2.74 2.74L5 8.46l-1.19 4.29L6.27 17 8 16l-2.03-3.52.35-1.3L9.5 13l.5 9h2l.5-10L21 3.4z"
}, "0"), /*#__PURE__*/_jsx("circle", {
cx: "5",
cy: "5",
r: "2"
}, "1")], 'SportsMartialArtsTwoTone'); | JavaScript | 4 | dany-freeman/material-ui | packages/mui-icons-material/lib/esm/SportsMartialArtsTwoTone.js | [
"MIT"
] |
#?RADIANCE
oconv basic.mat diorama_walls.rad closed_end.rad front_cap.rad porsches.rad spotlights.rad rect_fixture.rad glowbulb.rad
FORMAT=Radiance_octree
-8.20001 -1.60001 -2.60001 8.20002 basic.mat diorama_walls.rad closed_end.rad front_cap.rad porsches.rad spotlights.rad rect_fixture.rad glowbulb.rad #
" "
| Octave | 1 | Lilith5th/Radiance | test/renders/ref/inst.oct | [
"BSD-3-Clause-LBNL"
] |
[Desktop Entry]
Categories=Audio;AudioVideo
Comment=Fast and multi-platform Spotify client with native GUI
Exec=psst-gui
Name=Psst
Terminal=false
Type=Application
Version=1.0
| desktop | 1 | CITIZENSIXTYNINE/psst | .pkg/psst.desktop | [
"MIT"
] |
import * as React from 'react';
import { styled } from '@mui/material/styles';
import Button from '@mui/material/Button';
import Tooltip, { TooltipProps, tooltipClasses } from '@mui/material/Tooltip';
import Typography from '@mui/material/Typography';
const LightTooltip = styled(({ className, ...props }: TooltipProps) => (
<Tooltip {...props} classes={{ popper: className }} />
))(({ theme }) => ({
[`& .${tooltipClasses.tooltip}`]: {
backgroundColor: theme.palette.common.white,
color: 'rgba(0, 0, 0, 0.87)',
boxShadow: theme.shadows[1],
fontSize: 11,
},
}));
const BootstrapTooltip = styled(({ className, ...props }: TooltipProps) => (
<Tooltip {...props} arrow classes={{ popper: className }} />
))(({ theme }) => ({
[`& .${tooltipClasses.arrow}`]: {
color: theme.palette.common.black,
},
[`& .${tooltipClasses.tooltip}`]: {
backgroundColor: theme.palette.common.black,
},
}));
const HtmlTooltip = styled(({ className, ...props }: TooltipProps) => (
<Tooltip {...props} classes={{ popper: className }} />
))(({ theme }) => ({
[`& .${tooltipClasses.tooltip}`]: {
backgroundColor: '#f5f5f9',
color: 'rgba(0, 0, 0, 0.87)',
maxWidth: 220,
fontSize: theme.typography.pxToRem(12),
border: '1px solid #dadde9',
},
}));
export default function CustomizedTooltips() {
return (
<div>
<LightTooltip title="Add">
<Button>Light</Button>
</LightTooltip>
<BootstrapTooltip title="Add">
<Button>Bootstrap</Button>
</BootstrapTooltip>
<HtmlTooltip
title={
<React.Fragment>
<Typography color="inherit">Tooltip with HTML</Typography>
<em>{"And here's"}</em> <b>{'some'}</b> <u>{'amazing content'}</u>.{' '}
{"It's very engaging. Right?"}
</React.Fragment>
}
>
<Button>HTML</Button>
</HtmlTooltip>
</div>
);
}
| TypeScript | 4 | dany-freeman/material-ui | docs/data/material/components/tooltips/CustomizedTooltips.tsx | [
"MIT"
] |
[[managing-dependencies]]
= Managing Dependencies
To manage dependencies in your Spring Boot application, you can either apply the {dependency-management-plugin}[`io.spring.dependency-management`] plugin or use Gradle's native bom support.
The primary benefit of the former is that it offers property-based customization of managed versions, while using the latter will likely result in faster builds.
[[managing-dependencies.dependency-management-plugin]]
== Managing Dependencies with the Dependency Management Plugin
When you apply the {dependency-management-plugin}[`io.spring.dependency-management`] plugin, Spring Boot's plugin will automatically <<reacting-to-other-plugins.dependency-management,import the `spring-boot-dependencies` bom>> from the version of Spring Boot that you are using.
This provides a similar dependency management experience to the one that's enjoyed by Maven users.
For example, it allows you to omit version numbers when declaring dependencies that are managed in the bom.
To make use of this functionality, declare dependencies in the usual way but omit the version number:
[source,groovy,indent=0,subs="verbatim",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/dependencies.gradle[tags=dependencies]
----
[source,kotlin,indent=0,subs="verbatim",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/dependencies.gradle.kts[tags=dependencies]
----
[[managing-dependencies.dependency-management-plugin.customizing]]
=== Customizing Managed Versions
The `spring-boot-dependencies` bom that is automatically imported when the dependency management plugin is applied uses properties to control the versions of the dependencies that it manages.
Browse the {version-properties-appendix}[`Dependency versions Appendix`] in the Spring Boot reference for a complete list of these properties.
To customize a managed version you set its corresponding property.
For example, to customize the version of SLF4J which is controlled by the `slf4j.version` property:
[source,groovy,indent=0,subs="verbatim",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/custom-version.gradle[tags=custom-version]
----
[source,kotlin,indent=0,subs="verbatim",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/custom-version.gradle.kts[tags=custom-version]
----
WARNING: Each Spring Boot release is designed and tested against a specific set of third-party dependencies.
Overriding versions may cause compatibility issues and should be done with care.
[[managing-dependencies.dependency-management-plugin.using-in-isolation]]
=== Using Spring Boot's Dependency Management in Isolation
Spring Boot's dependency management can be used in a project without applying Spring Boot's plugin to that project.
The `SpringBootPlugin` class provides a `BOM_COORDINATES` constant that can be used to import the bom without having to know its group ID, artifact ID, or version.
First, configure the project to depend on the Spring Boot plugin but do not apply it:
ifeval::["{spring-boot-artifactory-repo}" == "release"]
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/depend-on-plugin-release.gradle[]
----
[source,kotlin,indent=0,subs="verbatim,attributes",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/depend-on-plugin-release.gradle.kts[]
----
endif::[]
ifeval::["{spring-boot-artifactory-repo}" == "milestone"]
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/depend-on-plugin-milestone.gradle[]
----
[source,kotlin,indent=0,subs="verbatim,attributes",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/depend-on-plugin-release.gradle.kts[]
----
endif::[]
ifeval::["{spring-boot-artifactory-repo}" == "snapshot"]
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/depend-on-plugin-snapshot.gradle[]
----
[source,kotlin,indent=0,subs="verbatim,attributes",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/depend-on-plugin-release.gradle.kts[]
----
endif::[]
The Spring Boot plugin's dependency on the dependency management plugin means that you can use the dependency management plugin without having to declare a dependency on it.
This also means that you will automatically use the same version of the dependency management plugin as Spring Boot uses.
Apply the dependency management plugin and then configure it to import Spring Boot's bom:
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/configure-bom.gradle[tags=configure-bom]
----
[source,kotlin,indent=0,subs="verbatim,attributes",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/configure-bom.gradle.kts[tags=configure-bom]
----
The Kotlin code above is a bit awkward.
That's because we're using the imperative way of applying the dependency management plugin.
We can make the code less awkward by applying the plugin from the root parent project, or by using the `plugins` block as we're doing for the Spring Boot plugin.
A downside of this method is that it forces us to specify the version of the dependency management plugin:
[source,kotlin,indent=0,subs="verbatim,attributes"]
----
include::../gradle/managing-dependencies/configure-bom-with-plugins.gradle.kts[tags=configure-bom]
----
[[managing-dependencies.dependency-management-plugin.learning-more]]
=== Learning More
To learn more about the capabilities of the dependency management plugin, please refer to its {dependency-management-plugin-documentation}[documentation].
[[managing-dependencies.gradle-bom-support]]
== Managing Dependencies with Gradle's Bom Support
Gradle allows a bom to be used to manage a project's versions by declaring it as a `platform` or `enforcedPlatform` dependency.
A `platform` dependency treats the versions in the bom as recommendations and other versions and constraints in the dependency graph may cause a version of a dependency other than that declared in the bom to be used.
An `enforcedPlatform` dependency treats the versions in the bom as requirements and they will override any other version found in the dependency graph.
The `SpringBootPlugin` class provides a `BOM_COORDINATES` constant that can be used to declare a dependency upon Spring Boot's bom without having to know its group ID, artifact ID, or version, as shown in the following example:
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/configure-platform.gradle[tags=configure-platform]
----
[source,kotlin,indent=0,subs="verbatim,attributes",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/configure-platform.gradle.kts[tags=configure-platform]
----
A platform or enforced platform will only constrain the versions of the configuration in which it has been declared or that extend from the configuration in which it has been declared.
As a result, in may be necessary to declare the same dependency in more than one configuration.
[[managing-dependencies.gradle-bom-support.customizing]]
=== Customizing Managed Versions
When using Gradle's bom support, you cannot use the properties from `spring-boot-dependencies` to control the versions of the dependencies that it manages.
Instead, you must use one of the mechanisms that Gradle provides.
One such mechanism is a resolution strategy.
SLF4J's modules are all in the `org.slf4j` group so their version can be controlled by configuring every dependency in that group to use a particular version, as shown in the following example:
[source,groovy,indent=0,subs="verbatim",role="primary"]
.Groovy
----
include::../gradle/managing-dependencies/custom-version-with-platform.gradle[tags=custom-version]
----
[source,kotlin,indent=0,subs="verbatim",role="secondary"]
.Kotlin
----
include::../gradle/managing-dependencies/custom-version-with-platform.gradle.kts[tags=custom-version]
----
WARNING: Each Spring Boot release is designed and tested against a specific set of third-party dependencies.
Overriding versions may cause compatibility issues and should be done with care.
| AsciiDoc | 4 | techAi007/spring-boot | spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/managing-dependencies.adoc | [
"Apache-2.0"
] |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Katie McLaughlin <[email protected]>, 2021
# Tom Fifield <[email protected]>, 2021
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2021-06-23 07:20+0000\n"
"Last-Translator: Katie McLaughlin <[email protected]>\n"
"Language-Team: English (Australia) (http://www.transifex.com/django/django/"
"language/en_AU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_AU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Advanced options"
msgstr "Advanced options"
msgid "Flat Pages"
msgstr "Flat Pages"
msgid "URL"
msgstr "URL"
msgid ""
"Example: “/about/contact/”. Make sure to have leading and trailing slashes."
msgstr ""
"Example: “/about/contact/”. Make sure to have leading and trailing slashes."
msgid ""
"This value must contain only letters, numbers, dots, underscores, dashes, "
"slashes or tildes."
msgstr ""
"This value must contain only letters, numbers, dots, underscores, dashes, "
"slashes or tildes."
msgid "Example: “/about/contact”. Make sure to have a leading slash."
msgstr "Example: “/about/contact”. Make sure to have a leading slash."
msgid "URL is missing a leading slash."
msgstr "URL is missing a leading slash."
msgid "URL is missing a trailing slash."
msgstr "URL is missing a trailing slash."
#, python-format
msgid "Flatpage with url %(url)s already exists for site %(site)s"
msgstr "Flatpage with url %(url)s already exists for site %(site)s"
msgid "title"
msgstr "title"
msgid "content"
msgstr "content"
msgid "enable comments"
msgstr "enable comments"
msgid "template name"
msgstr "template name"
msgid ""
"Example: “flatpages/contact_page.html”. If this isn’t provided, the system "
"will use “flatpages/default.html”."
msgstr ""
"Example: “flatpages/contact_page.html”. If this isn’t provided, the system "
"will use “flatpages/default.html”."
msgid "registration required"
msgstr "registration required"
msgid "If this is checked, only logged-in users will be able to view the page."
msgstr ""
"If this is checked, only logged-in users will be able to view the page."
msgid "sites"
msgstr "sites"
msgid "flat page"
msgstr "flat page"
msgid "flat pages"
msgstr "flat pages"
| Gettext Catalog | 3 | Joshua-Barawa/My-Photos | venv/lib/python3.8/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po | [
"PostgreSQL",
"Unlicense"
] |
module Main where
import Prelude
import Effect (Effect)
import Effect.Console (log)
import Data.Newtype (class Newtype, un)
newtype Target = Target String
derive instance newtypeTarget :: Newtype Target _
greetingTarget :: Target
greetingTarget = Target "world"
main :: Effect Unit
main = log ("hello, " <> un Target greetingTarget <> "!")
| PureScript | 4 | andys8/purescript | tests/purs/publish/basic-example/src/Main.purs | [
"BSD-3-Clause"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.