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
sequencelengths 1
8
|
---|---|---|---|---|---|
<template>
<v-row justify="center">
<v-col
cols="12"
sm="7"
md="6"
lg="5"
>
<v-sheet
elevation="10"
rounded="xl"
>
<v-sheet
class="pa-3 primary text-right"
dark
rounded="t-xl"
>
<v-btn icon>
<v-icon>mdi-content-save-cog-outline</v-icon>
</v-btn>
<v-btn
class="ml-2"
icon
>
<v-icon>mdi-check-bold</v-icon>
</v-btn>
</v-sheet>
<div class="pa-4">
<v-chip-group
active-class="primary--text"
column
>
<v-chip
v-for="tag in tags"
:key="tag"
>
{{ tag }}
</v-chip>
</v-chip-group>
</div>
</v-sheet>
</v-col>
</v-row>
</template>
<script>
export default {
data: () => ({
tags: [
'Work',
'Home Improvement',
'Vacation',
'Food',
'Drawers',
'Shopping',
'Art',
'Tech',
'Creative Writing',
],
}),
}
</script>
| Vue | 4 | mark-gene/vuetify | packages/docs/src/examples/v-chip-group/prop-column.vue | [
"MIT"
] |
#As the name suggests, the function returns you the definition and example of the sought English word
#(or breaks if it can't find the word because the API uses different columns for successful and invalid searches)
#usage: dict word
#usage: dict "word with space"
def dict [word: string] {
let link = (build-string 'https://api.dictionaryapi.dev/api/v2/entries/en/' ($word|str find-replace ' ' '%20'))
let output = (fetch $link |
rename word)
if $output.word == "No Definitions Found" {echo $output.word} {echo $output |
get meanings.definitions |
select definition example
}
}
| Nu | 2 | Yethal/nu_scripts | cool_oneliners/dict.nu | [
"MIT"
] |
#tag Class
Protected Class LogicalFontWFS
#tag Method, Flags = &h0
Sub Constructor()
// Do nothing
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Constructor(mb as MemoryBlock, bUnicodeSavvy as Boolean)
// Convert from a memory block
Height = mb.Long( 0 )
Width = mb.Long( 4 )
Escapement = mb.Long( 8 )
Orientation = mb.Long( 12 )
Weight = mb.Long( 16 )
Italic = (mb.Byte( 20 ) <> 0 )
Underline = (mb.Byte( 21 ) <> 0)
Strikeout = (mb.Byte( 22 ) <> 0)
CharSet = mb.Byte( 23 )
OutputPrecision = mb.Byte( 24 )
ClippingPrecision = mb.Byte( 25 )
Quality = mb.Byte( 26 )
dim pitchAndFamily as Integer
PitchAndFamily = mb.Byte( 27 )
Pitch = BitwiseAnd( pitchAndFamily, &h3 )
Family = Bitwise.ShiftRight( BitwiseAnd( pitchAndFamily, &hF0 ), 2 )
if bUnicodeSavvy then
FaceName = mb.WString( 28 )
else
FaceName = mb.CString( 28 )
end if
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function ToMemoryBlock(bUnicodeSavvy as Boolean) As MemoryBlock
// Convert to a memory block
// We make a 60 byte structure
dim ret as MemoryBlock
if bUnicodeSavvy then
ret = new MemoryBlock( kWideCharSize )
else
ret = new MemoryBlock( kANSISize )
end if
ret.Long( 0 ) = Height
ret.Long( 4 ) = Width
ret.Long( 8 ) = Escapement
ret.Long( 12 ) = Orientation
ret.Long( 16 ) = Weight
ret.BooleanValue( 20 ) = Italic
ret.BooleanValue( 21 ) = Underline
ret.BooleanValue( 22 ) = Strikeout
ret.Byte( 23 ) = CharSet
ret.Byte( 24 ) = OutputPrecision
ret.Byte( 25 ) = ClippingPrecision
ret.Byte( 26 ) = Quality
ret.Byte( 27 ) = Bitwise.ShiftRight( Family, 2 ) + Pitch
if bUnicodeSavvy then
ret.WString( 28 ) = FaceName
else
ret.CString( 28 ) = FaceName
end if
Return ret
End Function
#tag EndMethod
#tag Property, Flags = &h0
CharSet As Integer
#tag EndProperty
#tag Property, Flags = &h0
ClippingPrecision As Integer
#tag EndProperty
#tag Property, Flags = &h0
Escapement As Integer
#tag EndProperty
#tag Property, Flags = &h0
FaceName As String
#tag EndProperty
#tag Property, Flags = &h0
Family As Integer
#tag EndProperty
#tag Property, Flags = &h0
Height As Integer
#tag EndProperty
#tag Property, Flags = &h0
Italic As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Orientation As Integer
#tag EndProperty
#tag Property, Flags = &h0
OutputPrecision As Integer
#tag EndProperty
#tag Property, Flags = &h0
Pitch As Integer
#tag EndProperty
#tag Property, Flags = &h0
Quality As Integer
#tag EndProperty
#tag Property, Flags = &h0
Strikeout As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Underline As Boolean
#tag EndProperty
#tag Property, Flags = &h0
Weight As Integer
#tag EndProperty
#tag Property, Flags = &h0
Width As Integer
#tag EndProperty
#tag Constant, Name = kANSISize, Type = Double, Dynamic = False, Default = \"60", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetANSI, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetArabic, Type = Integer, Dynamic = False, Default = \"178", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetBaltic, Type = Integer, Dynamic = False, Default = \"186", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetChineseBig5, Type = Integer, Dynamic = False, Default = \"136", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetDefault, Type = Integer, Dynamic = False, Default = \"1", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetEastEurope, Type = Integer, Dynamic = False, Default = \"238", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetGB2312, Type = Integer, Dynamic = False, Default = \"134", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetGreek, Type = Integer, Dynamic = False, Default = \"161", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetHangeul, Type = Integer, Dynamic = False, Default = \"129", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetHebrew, Type = Integer, Dynamic = False, Default = \"177", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetJohab, Type = Integer, Dynamic = False, Default = \"130", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetMac, Type = Integer, Dynamic = False, Default = \"77", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetOEM, Type = Integer, Dynamic = False, Default = \"255", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetRussian, Type = Integer, Dynamic = False, Default = \"204", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetShiftJIS, Type = Integer, Dynamic = False, Default = \"128", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetSymbol, Type = Integer, Dynamic = False, Default = \"2", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetThai, Type = Integer, Dynamic = False, Default = \"222", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetTurkish, Type = Integer, Dynamic = False, Default = \"162", Scope = Public
#tag EndConstant
#tag Constant, Name = kCharSetVietnemese, Type = Integer, Dynamic = False, Default = \"163", Scope = Public
#tag EndConstant
#tag Constant, Name = kClipPrecisionCharacter, Type = Integer, Dynamic = False, Default = \"1", Scope = Public
#tag EndConstant
#tag Constant, Name = kClipPrecisionDefault, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kClipPrecisionEmbedded, Type = Integer, Dynamic = False, Default = \"128", Scope = Public
#tag EndConstant
#tag Constant, Name = kClipPrecisionLeftHandAngles, Type = Integer, Dynamic = False, Default = \"4", Scope = Public
#tag EndConstant
#tag Constant, Name = kClipPrecisionStroke, Type = Integer, Dynamic = False, Default = \"2", Scope = Public
#tag EndConstant
#tag Constant, Name = kClipPrecisionTrueTypeAlways, Type = Integer, Dynamic = False, Default = \"32", Scope = Public
#tag EndConstant
#tag Constant, Name = kFamilyDecorative, Type = Integer, Dynamic = False, Default = \"80", Scope = Public
#tag EndConstant
#tag Constant, Name = kFamilyDontCare, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kFamilyModern, Type = Integer, Dynamic = False, Default = \"48", Scope = Public
#tag EndConstant
#tag Constant, Name = kFamilyRoman, Type = Integer, Dynamic = False, Default = \"16", Scope = Public
#tag EndConstant
#tag Constant, Name = kFamilyScript, Type = Integer, Dynamic = False, Default = \"64", Scope = Public
#tag EndConstant
#tag Constant, Name = kFamilySwiss, Type = Integer, Dynamic = False, Default = \"32", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionCharacter, Type = Integer, Dynamic = False, Default = \"2", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionDefault, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionDevice, Type = Integer, Dynamic = False, Default = \"5", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionOutline, Type = Integer, Dynamic = False, Default = \"8", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionPostScriptOnly, Type = Integer, Dynamic = False, Default = \"10", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionRaster, Type = Integer, Dynamic = False, Default = \"6", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionScreenOutline, Type = Integer, Dynamic = False, Default = \"9", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionString, Type = Integer, Dynamic = False, Default = \"1", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionStroke, Type = Integer, Dynamic = False, Default = \"3", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionTrueType, Type = Integer, Dynamic = False, Default = \"4", Scope = Public
#tag EndConstant
#tag Constant, Name = kOutputPrecisionTrueTypeOnly, Type = Integer, Dynamic = False, Default = \"7", Scope = Public
#tag EndConstant
#tag Constant, Name = kPitchDefault, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kPitchFixed, Type = Integer, Dynamic = False, Default = \"1", Scope = Public
#tag EndConstant
#tag Constant, Name = kPitchMonoFont, Type = Integer, Dynamic = False, Default = \"8", Scope = Public
#tag EndConstant
#tag Constant, Name = kPitchVariable, Type = Integer, Dynamic = False, Default = \"2", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityAntiAliased, Type = Integer, Dynamic = False, Default = \"4", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityClearType, Type = Integer, Dynamic = False, Default = \"5", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityClearTypeNatural, Type = Integer, Dynamic = False, Default = \"6", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityDefault, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityDraft, Type = Integer, Dynamic = False, Default = \"1", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityNonAntiAliased, Type = Integer, Dynamic = False, Default = \"3", Scope = Public
#tag EndConstant
#tag Constant, Name = kQualityProof, Type = Integer, Dynamic = False, Default = \"2", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightBold, Type = Integer, Dynamic = False, Default = \"700", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightDontCare, Type = Integer, Dynamic = False, Default = \"0", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightExtraBold, Type = Integer, Dynamic = False, Default = \"800", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightExtraLight, Type = Integer, Dynamic = False, Default = \"200", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightHeavy, Type = Integer, Dynamic = False, Default = \"900", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightLight, Type = Integer, Dynamic = False, Default = \"300", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightMedium, Type = Integer, Dynamic = False, Default = \"500", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightNormal, Type = Integer, Dynamic = False, Default = \"400", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightSemiBold, Type = Integer, Dynamic = False, Default = \"600", Scope = Public
#tag EndConstant
#tag Constant, Name = kWeightThin, Type = Integer, Dynamic = False, Default = \"100", Scope = Public
#tag EndConstant
#tag Constant, Name = kWideCharSize, Type = Double, Dynamic = False, Default = \"92", Scope = Public
#tag EndConstant
#tag ViewBehavior
#tag ViewProperty
Name="CharSet"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="ClippingPrecision"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Escapement"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="FaceName"
Group="Behavior"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="Family"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Height"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Italic"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Orientation"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="OutputPrecision"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Pitch"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Quality"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Strikeout"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Underline"
Group="Behavior"
InitialValue="0"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Weight"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Width"
Group="Behavior"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass
| REALbasic | 5 | bskrtich/WFS | Windows Functionality Suite/Graphics Helpers/Classes/LogicalFontWFS.rbbas | [
"MIT"
] |
crypto
nft
stats cryptopunks
today
upcoming
ongoing
newest
exit | Gosu | 0 | minhhoang1023/GamestonkTerminal | scripts/test_crypto_nft.gst | [
"MIT"
] |
.sass-partial {
color: orchid;
}
| SCSS | 1 | laineus/vite | packages/playground/css/nested/_partial.scss | [
"MIT"
] |
tenacity(1)
# NAME
tenacity - Graphical cross-platform audio editor
# SYNOPSIS
*tenacity* -help++
*tenacity* -version
*tenacity* [-blocksize nnn] -test++
*tenacity* [-blocksize nnn] [ _AUDIO-FILE_ ] *...*
# OPTIONS
*-h --help*
Displays a brief list of command line options.
*-v --version*
Displays the Tenacity version number.
*-t --test*
Runs self diagnostics tests (only present in development builds).
*-b --blocksize nnn*
Sets the Tenacity block size for writing files to disk to nnn bytes.
# DESCRIPTION
*Tenacity* is a graphical audio editor. This man page does not describe all of
the features of Tenacity or how to use it; for this, see the html documentation
that came with the program, which should be accessible from the Help menu.
This man page describes the Unix-specific features, including special files and
environment variables.
Tenacity currently uses *libsndfile* to open many uncompressed audio formats
such as WAV, AIFF, and AU, and it can also be linked to *libmad*, *libvorbis*,
and *libflac*, to provide support for opening MP2/3, Ogg Vorbis, and FLAC
files, respectively. *LAME*, *libvorbis*, *libflac* and *libtwolame* provide
facilities to export files to all these formats as well.
Tenacity is primarily an interactive, graphical editor, not a batch-processing
tool. Whilst there is a basic batch processing tool it is experimental and
incomplete. If you need to batch-process audio or do simple edits from the
command line, using *sox* or *ecasound* driven by a bash script will be much
more powerful than tenacity.
# FILES
_~/.audacity-data/tenacity.cfg_
Per-user configuration file.
_/var/tmp/tenacity-<user>/_
Default location of Tenacity's temp directory, where <user> is your
username. If this location is not suitable (not enough space in
/var/tmp, for example), you should change the temp directory in the
Preferences and restart Tenacity. Tenacity is a disk-based editor, so
the temp directory is very important: it should always be on a fast
(local) disk with lots of free space.
Note that older versions of Tenacity put the temp directory inside of
the user's home directory. This is undesirable on many systems, and
using some directory in /tmp is recommended.
On many modern Linux systems all files in /tmp/ will be deleted each
time the system boots up, which makes recovering a recording that was
going on when the system crashed much harder. This is why the default
is to use a directory in /var/tmp/ which will not normally be deleted
by the system. Open the Preferences to check.
# SEARCH PATH
When looking for plug-ins, help files, localization files, or other
configuration files, Tenacity searches the following locations, in this order:
_AUDACITY_PATH_
Any directories in the _AUDACITY_PATH_ environment variable will be
searched before anywhere else.
_._
The current working directory when Tenacity is started.
_~/.audacity-data/Plug-Ins_
_<prefix>/share/tenacity_
The system-wide Tenacity directory, where <prefix> is usually /usr or
/usr/local, depending on where the program was installed.
_<prefix>/share/doc/tenacity_
The system-wide Tenacity documentation directory, where <prefix> is
usually /usr or /usr/local, depending on where the program was
installed.
For localization files in particular (i.e. translations of Tenacity into other
languages), Tenacity also searches _<prefix>/share/locale_.
# PLUG-INS
Tenacity supports two types of plug-ins on Unix: LADSPA and Nyquist plug-ins.
These are generally placed in a directory called _plug-ins_ somewhere on the
search path (see above).
LADSPA plug-ins can either be in the plug-ins directory, or alternatively in a
_ladspa_ directory on the search path if you choose to create one. Tenacity
will also search the directories in the _LADSPA_PATH_ environment variable for
additional LADSPA plug-ins.
Nyquist plug-ins can either be in the plug-ins directory, or alternatively in a
_nyquist_ directory on the search path if you choose to create one.
# VERSION
This man page documents Tenacity version 1.3.5.
# LICENSE
Tenacity is distributed under the GPL, however some of the libraries it links
to are distributed under other free licenses, including the LGPL and BSD
licenses.
# AUTHORS
Tenacity would not be possible without the Audacity project,
wxWidgets, libsndfile, and many of the other libraries it is
built upon. You can find a full list of contributors on GitHub:
https://github.com/tenacityteam/tenacity/graphs/contributors
The Audacity project leaders include Dominic Mazzoni, Matt Brubeck,
James Crook, Vaughan Johnson, Leland Lucius, and Markus Meyer,
but dozens of others have contributed.
http://www.audacityteam.org/about/credits/
| SuperCollider | 3 | BBArikL/tenacity | help/tenacity.1.scd | [
"CC-BY-3.0"
] |
# Parameters
param T := read "producer.dat" as "1n" use 1 comment "#";
set Ts := {1..T};
set Ns := {read "producer.dat" as "<n+>" skip 1 use 1 comment "#"};
param N := card(Ns);
param pMin[Ns*Ts] := read "producer.dat" as "<1n,2n> 3n" skip 2 use (N*T) comment "#";
param pMax[Ns*Ts] := read "producer.dat" as "<1n,2n> 4n" skip 2 use (N*T) comment "#";
param c[Ns*Ts] := read "producer.dat" as "<1n,2n> 5n" skip 2 use (N*T) comment "#";
param alpha[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 3n" skip 2 use (N*T) comment "#";
param beta[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 4n" skip 2 use (N*T) comment "#";
param d[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 5n" skip 2 use (N*T) comment "#";
param D[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 6n" skip 2 use (N*T) comment "#";
param k[Ns] := read "flexObligations.dat" as "<1n> 2n" skip 2+(N*T) use N comment "#";
param K[Ns] := read "flexObligations.dat" as "<1n> 3n" skip 2+(N*T) use N comment "#";
param l[Ns] := read "flexObligations.dat" as "<1n> 4n" skip 2+(N*T) use N comment "#";
param L[Ns] := read "flexObligations.dat" as "<1n> 5n" skip 2+(N*T) use N comment "#";
param EPS := read "prices.csv" as "2n" use 1 comment "#";
param pii := read "prices.csv" as "3n" use 1 comment "#";
param piE[Ts] := read "prices.csv" as "<1n> 2n" skip 1 use T comment "#";
param piIP[Ts] := read "prices.csv" as "<1n> 3n" skip 1 use T comment "#";
param piIM[Ts] := read "prices.csv" as "<1n> 4n" skip 1 use T comment "#";
param piFP[Ns*Ts] := read "flexIndicators.dat" as "<1n,2n> 3n" skip 2 use (N*T) comment "#";
param piFM[Ns*Ts] := read "flexIndicators.dat" as "<1n,2n> 4n" skip 2 use (N*T) comment "#";
param Pb[Ts] := read "producer-baselines.dat" as "<1n> 2n" skip 2 use T comment "#";
param pb[Ns*Ts] := read "producer-baselines.dat" as "<1n,2n> 3n" skip (2+T) use (N*T) comment "#";
# Variables
var P[Ts] >= -infinity;
var i[<n,t> in Ns*Ts] >= -infinity;
var iP[<n,t> in Ns*Ts] >= 0;
var iM[<n,t> in Ns*Ts] >= 0;
var I[Ts] >= -infinity;
var IP[Ts] >=0;
var IM[Ts] >=0;
var fP[Ns*Ts] >= -infinity;
var fM[Ns*Ts] >= -infinity;
var id[Ns*Ts] >= 0;
var iD[Ns*Ts] >= 0;
var p[<n,t> in Ns*Ts] >= max(pMin[n,t],k[n]) <= min(pMax[n,t],K[n]);
var pP[<n,t> in Ns*Ts] >= max(pMin[n,t],k[n]) <= min(pMax[n,t],K[n]);
var pM[<n,t> in Ns*Ts] >= max(pMin[n,t],k[n]) <= min(pMax[n,t],K[n]);
# Objective
maximize profit:
sum <t> in Ts : (-piIP[t]*IP[t]-piIM[t]*IM[t]
+sum <n> in Ns : (piFP[n,t]*fP[n,t]+piFM[n,t]*fM[n,t]
-c[n,t]*p[n,t]
- EPS*(iP[n,t]+iM[n,t])
- pii*(id[n,t]+iD[n,t])
)
);
# Constraints
subto TotalProduction:
forall <t> in Ts :
P[t] == sum <n> in Ns: p[n,t];
subto TotalImbalance:
forall <t> in Ts :
I[t] == P[t]-Pb[t];
subto TotalUpwardImbalance:
forall <t> in Ts :
IP[t] >= I[t];
subto TotalDownwardImbalance:
forall <t> in Ts :
IM[t] >= -I[t];
subto FlexPdef:
forall <n,t> in Ns*Ts:
fP[n,t]<=pP[n,t]-pb[n,t];
subto FlexMdef:
forall <n,t> in Ns*Ts:
fM[n,t]<=pb[n,t]-pM[n,t];
subto DownwardFlexObligations:
forall <n,t> in Ns*Ts:
fM[n,t] >= if alpha[n,t]>EPS then (alpha[n,t]*pb[n,t]) else -abs(pb[n,t]) end;
subto UpwardFlexObligations:
forall <n,t> in Ns*Ts:
fP[n,t] >= if beta[n,t]>EPS then (beta[n,t]*(-pb[n,t])) else -abs(pb[n,t]) end;
subto flexAccesL:
forall <n,t> in Ns*Ts:
pM[n,t] <= L[n];
subto flexAccesl:
forall <n,t> in Ns*Ts:
l[n] <= pP[n,t];
subto NodeBalance:
forall <n,t> in Ns*Ts:
pb[n,t]+i[n,t]==p[n,t];
subto UpwardNodeImbalance:
forall <n,t> in Ns*Ts:
iP[n,t] >= i[n,t];
subto DownwardNodeImbalance:
forall <n,t> in Ns*Ts:
iM[n,t] >= -i[n,t];
subto DynamicDownwardRestriction:
forall <n,t> in Ns*Ts:
id[n,t] >= d[n,t]-p[n,t];
subto DynamicUpwardRestriction:
forall <n,t> in Ns*Ts:
iD[n,t] >= p[n,t]-D[n,t];
subto DynamicDownwardRestrictionM:
forall <n,t> in Ns*Ts:
id[n,t] >= d[n,t]-pM[n,t];
subto DynamicUpwardRestrictionP:
forall <n,t> in Ns*Ts:
iD[n,t] >= pP[n,t]-D[n,t];
| Zimpl | 5 | sebMathieu/dsima | simulator/models/producer-flexibility.zpl | [
"BSD-3-Clause"
] |
module audiostreamerscrobbler.factories.PlayerDetectorThreadFactory
import audiostreamerscrobbler.factories.PlayerDetectorFactory
import audiostreamerscrobbler.threads.PlayerDetectorThread
function createPlayerDetectorThreadFactory = {
let factory = DynamicObject("PlayerDetectorThreadFactory"):
define("createDetectorThread", |this, playerTypeId, cb| -> createDetectorThread(playerTypeId, cb))
return factory
}
local function createDetectorThread = |playerTypeId, cb| {
let playerDetectorFactory = createPlayerDetectorFactory()
return createPlayerDetectorThread(playerTypeId, playerDetectorFactory, cb)
}
| Golo | 3 | vvdleun/audiostreamerscrobbler | src/main/golo/include/factories/PlayerDetectorThreadFactory.golo | [
"MIT"
] |
div {
em > 'Foo'
bar > 'Bar'
}
---
div{em>'Foo'bar>'Bar'}
===================================
div {
em { 'Foo' }
bar > 'Bar'
}
span; section > div {
'A'
"B"
}
---
div{em>'Foo'bar>'Bar'}span;section>div{'A''B'}
===================================== | Mask | 0 | atmajs/MaskJS | test/tmpl/stringify/node_many.min.mask | [
"MIT"
] |
type Type1
implements
A & B &
# comment 1
C & D &
# comment 2
E {a: a}
| GraphQL | 1 | tumido/prettier | tests/format/graphql/comments/interfaces.graphql | [
"MIT"
] |
SUMMARY = "Resin Flasher Package Group"
LICENSE = "Apache-2.0"
PR = "r1"
inherit packagegroup
BALENA_INIT_PACKAGE ?= "resin-init-flasher"
BALENA_MOUNTS ?= "resin-mounts-flasher"
BALENA_REGISTER ?= "resin-device-register"
include packagegroup-resin.inc
| BitBake | 2 | dtischler/px30-test | layers/meta-balena/meta-balena-common/recipes-core/packagegroups/packagegroup-resin-flasher.bb | [
"Apache-2.0"
] |
#lang scribble/manual
@(require (for-label racket)
(for-label rosette/base/form/define rosette/base/core/type))
@title[#:tag "ch:built-in-datatypes" #:style 'toc]{Built-In Datatypes}
The @seclink["ch:syntactic-forms"]{previous chapter} describes the
Racket syntax forms that are @tech[#:key "lifted constructs"]{lifted} by Rosette to
work on symbolic values.
This chapter describes the lifted datatypes and their corresponding operations. Most
lifted operations retain their Racket semantics, with the exception of
equality predicates (Section @seclink["sec:equality"]{4.1}) and
numeric operations (Section @seclink["sec:bools+ints+reals"]{4.2}).
Rosette distinguishes between two kinds of built-in datatypes:
@deftech[#:key "solvable type"]{solvable} and @deftech[#:key "unsolvable type"]{unsolvable}.
Solvable types are (efficiently) supported by SMT solvers, and they include booleans,
integers, reals, bitvectors, and uninterpreted functions. All other built-in types are
unsolvable---that is, not as well supported by SMT solvers.
Every lifted type is equipped with a predicate (e.g., @racket[boolean?]) that
recognizes values of that type. Solvable types are themselves recognized by
the @racket[solvable?] predicate. Lifted types include both concrete Racket
values and symbolic Rosette values, but only solvable types include
@tech[#:key "symbolic constant"]{symbolic constants},
as introduced by @seclink["sec:symbolic-constants"]{@code{define-symbolic[*]}}.
@(table-of-contents)
@include-section["equality.scrbl"]
@include-section["bools+ints+reals.scrbl"]
@include-section["bitvectors.scrbl"]
@include-section["uninterpreted.scrbl"]
@include-section["procedures.scrbl"]
@include-section["pairs.scrbl"]
@include-section["vectors.scrbl"]
@include-section["boxes.scrbl"]
@include-section["solvers+solutions.scrbl"]
| Racket | 4 | remysucre/rosette | rosette/guide/scribble/datatypes/builtin-datatypes.scrbl | [
"BSD-2-Clause"
] |
% Copyright (c) Facebook, Inc. and its affiliates.
%
% This source code is licensed under the MIT license found in the
% LICENSE file in the root directory of this source tree.
-module(tuples).
-export([
test_first_Ok/0,
test_first_Bad/0,
test_second_Ok/0,
test_second_Bad/0,
test_third_Ok/0,
test_third_Bad/0,
test_nested_Ok/0,
test_nested_Bad/0
]).
% Call this method with warn(1) to trigger a warning to expect
warn(0) -> ok.
first({X, _, _}) -> X.
second({_, Y, _}) -> Y.
third({_, _, Z}) -> Z.
test_first_Ok() ->
N = first({1, 2, 3}),
case N of
1 -> ok
end.
test_first_Bad() ->
N = first({1, 2, 3}),
case N of
1 -> warn(1)
end.
test_second_Ok() ->
N = second({1, 2, 3}),
case N of
2 -> ok
end.
test_second_Bad() ->
N = second({1, 2, 3}),
case N of
2 -> warn(1)
end.
test_third_Ok() ->
N = third({1, 2, 3}),
case N of
3 -> ok
end.
test_third_Bad() ->
N = third({1, 2, 3}),
case N of
3 -> warn(1)
end.
test_nested_Ok() ->
N = first(second({1, {2, 3, 4}, 5})),
case N of
2 -> ok
end.
test_nested_Bad() ->
N = first(second({1, {2, 3, 4}, 5})),
case N of
2 -> warn(1)
end.
| Erlang | 4 | niranthhr/facebook_prj | infer/tests/codetoanalyze/erlang/features/src/tuples.erl | [
"MIT"
] |
<!DOCTYPE html>
<html lang="en" style="width: 100%; height: 100%;">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy"
content="default-src 'none'; script-src 'sha256-v9xEHcwDE5dc/lU7HYs5bG3LpPWGmQe0w/Vz6kmdd60=' 'self'; frame-src 'self'; style-src 'unsafe-inline';">
<!-- Disable pinch zooming -->
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body style="margin: 0; overflow: hidden; width: 100%; height: 100%" role="document">
<script async type="module">
// @ts-check
/// <reference lib="dom" />
const isSafari = (
navigator.vendor && navigator.vendor.indexOf('Apple') > -1 &&
navigator.userAgent &&
navigator.userAgent.indexOf('CriOS') === -1 &&
navigator.userAgent.indexOf('FxiOS') === -1
);
const isFirefox = (
navigator.userAgent &&
navigator.userAgent.indexOf('Firefox') >= 0
);
const searchParams = new URL(location.toString()).searchParams;
const ID = searchParams.get('id');
const webviewOrigin = searchParams.get('origin');
const onElectron = searchParams.get('platform') === 'electron';
const expectedWorkerVersion = parseInt(searchParams.get('swVersion'));
/**
* Use polling to track focus of main webview and iframes within the webview
*
* @param {Object} handlers
* @param {() => void} handlers.onFocus
* @param {() => void} handlers.onBlur
*/
const trackFocus = ({ onFocus, onBlur }) => {
const interval = 250;
let isFocused = document.hasFocus();
setInterval(() => {
const isCurrentlyFocused = document.hasFocus();
if (isCurrentlyFocused === isFocused) {
return;
}
isFocused = isCurrentlyFocused;
if (isCurrentlyFocused) {
onFocus();
} else {
onBlur();
}
}, interval);
};
const getActiveFrame = () => {
return /** @type {HTMLIFrameElement | undefined} */ (document.getElementById('active-frame'));
};
const getPendingFrame = () => {
return /** @type {HTMLIFrameElement | undefined} */ (document.getElementById('pending-frame'));
};
/**
* @template T
* @param {T | undefined | null} obj
* @return {T}
*/
function assertIsDefined(obj) {
if (typeof obj === 'undefined' || obj === null) {
throw new Error('Found unexpected null');
}
return obj;
}
const vscodePostMessageFuncName = '__vscode_post_message__';
const defaultStyles = document.createElement('style');
defaultStyles.id = '_defaultStyles';
defaultStyles.textContent = `
html {
scrollbar-color: var(--vscode-scrollbarSlider-background) var(--vscode-editor-background);
}
body {
background-color: transparent;
color: var(--vscode-editor-foreground);
font-family: var(--vscode-font-family);
font-weight: var(--vscode-font-weight);
font-size: var(--vscode-font-size);
margin: 0;
padding: 0 20px;
}
img {
max-width: 100%;
max-height: 100%;
}
a, a code {
color: var(--vscode-textLink-foreground);
}
a:hover {
color: var(--vscode-textLink-activeForeground);
}
a:focus,
input:focus,
select:focus,
textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px;
}
code {
color: var(--vscode-textPreformat-foreground);
}
blockquote {
background: var(--vscode-textBlockQuote-background);
border-color: var(--vscode-textBlockQuote-border);
}
kbd {
color: var(--vscode-editor-foreground);
border-radius: 3px;
vertical-align: middle;
padding: 1px 3px;
background-color: hsla(0,0%,50%,.17);
border: 1px solid rgba(71,71,71,.4);
border-bottom-color: rgba(88,88,88,.4);
box-shadow: inset 0 -1px 0 rgba(88,88,88,.4);
}
.vscode-light kbd {
background-color: hsla(0,0%,87%,.5);
border: 1px solid hsla(0,0%,80%,.7);
border-bottom-color: hsla(0,0%,73%,.7);
box-shadow: inset 0 -1px 0 hsla(0,0%,73%,.7);
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-corner {
background-color: var(--vscode-editor-background);
}
::-webkit-scrollbar-thumb {
background-color: var(--vscode-scrollbarSlider-background);
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--vscode-scrollbarSlider-hoverBackground);
}
::-webkit-scrollbar-thumb:active {
background-color: var(--vscode-scrollbarSlider-activeBackground);
}
::highlight(find-highlight) {
background-color: var(--vscode-editor-findMatchHighlightBackground);
}
::highlight(current-find-highlight) {
background-color: var(--vscode-editor-findMatchBackground);
}`;
/**
* @param {boolean} allowMultipleAPIAcquire
* @param {*} [state]
* @return {string}
*/
function getVsCodeApiScript(allowMultipleAPIAcquire, state) {
const encodedState = state ? encodeURIComponent(state) : undefined;
return /* js */`
globalThis.acquireVsCodeApi = (function() {
const originalPostMessage = window.parent['${vscodePostMessageFuncName}'].bind(window.parent);
const doPostMessage = (channel, data, transfer) => {
originalPostMessage(channel, data, transfer);
};
let acquired = false;
let state = ${state ? `JSON.parse(decodeURIComponent("${encodedState}"))` : undefined};
return () => {
if (acquired && !${allowMultipleAPIAcquire}) {
throw new Error('An instance of the VS Code API has already been acquired');
}
acquired = true;
return Object.freeze({
postMessage: function(message, transfer) {
doPostMessage('onmessage', { message, transfer }, transfer);
},
setState: function(newState) {
state = newState;
doPostMessage('do-update-state', JSON.stringify(newState));
return newState;
},
getState: function() {
return state;
}
});
};
})();
delete window.parent;
delete window.top;
delete window.frameElement;
`;
}
/** @type {Promise<void>} */
const workerReady = new Promise((resolve, reject) => {
if (!areServiceWorkersEnabled()) {
return reject(new Error('Service Workers are not enabled. Webviews will not work. Try disabling private/incognito mode.'));
}
const swPath = `service-worker.js?v=${expectedWorkerVersion}&vscode-resource-base-authority=${searchParams.get('vscode-resource-base-authority')}&remoteAuthority=${searchParams.get('remoteAuthority') ?? ''}`;
navigator.serviceWorker.register(swPath)
.then(() => navigator.serviceWorker.ready)
.then(async registration => {
/**
* @param {MessageEvent} event
*/
const versionHandler = async (event) => {
if (event.data.channel !== 'version') {
return;
}
navigator.serviceWorker.removeEventListener('message', versionHandler);
if (event.data.version === expectedWorkerVersion) {
return resolve();
} else {
console.log(`Found unexpected service worker version. Found: ${event.data.version}. Expected: ${expectedWorkerVersion}`);
console.log(`Attempting to reload service worker`);
// If we have the wrong version, try once (and only once) to unregister and re-register
// Note that `.update` doesn't seem to work desktop electron at the moment so we use
// `unregister` and `register` here.
return registration.unregister()
.then(() => navigator.serviceWorker.register(swPath))
.then(() => navigator.serviceWorker.ready)
.finally(() => { resolve(); });
}
};
navigator.serviceWorker.addEventListener('message', versionHandler);
const postVersionMessage = (/** @type {ServiceWorker} */ controller) => {
controller.postMessage({ channel: 'version' });
};
// At this point, either the service worker is ready and
// became our controller, or we need to wait for it.
// Note that navigator.serviceWorker.controller could be a
// controller from a previously loaded service worker.
const currentController = navigator.serviceWorker.controller;
if (currentController?.scriptURL.endsWith(swPath)) {
// service worker already loaded & ready to receive messages
postVersionMessage(currentController);
} else {
// either there's no controlling service worker, or it's an old one:
// wait for it to change before posting the message
const onControllerChange = () => {
navigator.serviceWorker.removeEventListener('controllerchange', onControllerChange);
postVersionMessage(navigator.serviceWorker.controller);
};
navigator.serviceWorker.addEventListener('controllerchange', onControllerChange);
}
}).catch(error => {
reject(new Error(`Could not register service workers: ${error}.`));
});
});
const hostMessaging = new class HostMessaging {
constructor() {
this.channel = new MessageChannel();
/** @type {Map<string, Array<(event: MessageEvent, data: any) => void>>} */
this.handlers = new Map();
this.channel.port1.onmessage = (e) => {
const channel = e.data.channel;
const handlers = this.handlers.get(channel);
if (handlers) {
for (const handler of handlers) {
handler(e, e.data.args);
}
} else {
console.log('no handler for ', e);
}
};
}
/**
* @param {string} channel
* @param {any} data
* @param {any} [transfer]
*/
postMessage(channel, data, transfer) {
this.channel.port1.postMessage({ channel, data }, transfer);
}
/**
* @param {string} channel
* @param {(event: MessageEvent, data: any) => void} handler
*/
onMessage(channel, handler) {
let handlers = this.handlers.get(channel);
if (!handlers) {
handlers = [];
this.handlers.set(channel, handlers);
}
handlers.push(handler);
}
async signalReady() {
const start = (/** @type {string} */ parentOrigin) => {
window.parent.postMessage({ target: ID, channel: 'webview-ready', data: {} }, parentOrigin, [this.channel.port2]);
};
const parentOrigin = searchParams.get('parentOrigin');
const hostname = location.hostname;
if (!crypto.subtle) {
// cannot validate, not running in a secure context
throw new Error(`Cannot validate in current context!`);
}
// Here the `parentOriginHash()` function from `src/vs/workbench/common/webview.ts` is inlined
// compute a sha-256 composed of `parentOrigin` and `salt` converted to base 32
let parentOriginHash;
try {
const strData = JSON.stringify({ parentOrigin, salt: webviewOrigin });
const encoder = new TextEncoder();
const arrData = encoder.encode(strData);
const hash = await crypto.subtle.digest('sha-256', arrData);
const hashArray = Array.from(new Uint8Array(hash));
const hashHex = hashArray.map(b => b.toString(16).padStart(2, '0')).join('');
// sha256 has 256 bits, so we need at most ceil(lg(2^256-1)/lg(32)) = 52 chars to represent it in base 32
parentOriginHash = BigInt(`0x${hashHex}`).toString(32).padStart(52, '0');
} catch (err) {
throw err instanceof Error ? err : new Error(String(err));
}
if (hostname === parentOriginHash || hostname.startsWith(parentOriginHash + '.')) {
// validation succeeded!
return start(parentOrigin);
}
throw new Error(`Expected '${parentOriginHash}' as hostname or subdomain!`);
}
}();
const unloadMonitor = new class {
constructor() {
this.confirmBeforeClose = 'keyboardOnly';
this.isModifierKeyDown = false;
hostMessaging.onMessage('set-confirm-before-close', (_e, /** @type {string} */ data) => {
this.confirmBeforeClose = data;
});
hostMessaging.onMessage('content', (_e, /** @type {any} */ data) => {
this.confirmBeforeClose = data.confirmBeforeClose;
});
window.addEventListener('beforeunload', (event) => {
if (onElectron) {
return;
}
switch (this.confirmBeforeClose) {
case 'always': {
event.preventDefault();
event.returnValue = '';
return '';
}
case 'never': {
break;
}
case 'keyboardOnly':
default: {
if (this.isModifierKeyDown) {
event.preventDefault();
event.returnValue = '';
return '';
}
break;
}
}
});
}
onIframeLoaded(/** @type {HTMLIFrameElement} */ frame) {
frame.contentWindow.addEventListener('keydown', e => {
this.isModifierKeyDown = e.metaKey || e.ctrlKey || e.altKey;
});
frame.contentWindow.addEventListener('keyup', () => {
this.isModifierKeyDown = false;
});
}
};
// state
let firstLoad = true;
/** @type {any} */
let loadTimeout;
let styleVersion = 0;
/** @type {Array<{ readonly message: any, transfer?: ArrayBuffer[] }>} */
let pendingMessages = [];
const initData = {
/** @type {number | undefined} */
initialScrollProgress: undefined,
/** @type {{ [key: string]: string } | undefined} */
styles: undefined,
/** @type {string | undefined} */
activeTheme: undefined,
/** @type {string | undefined} */
themeName: undefined,
/** @type {boolean} */
screenReader: false,
/** @type {boolean} */
reduceMotion: false,
};
hostMessaging.onMessage('did-load-resource', (_event, data) => {
navigator.serviceWorker.ready.then(registration => {
assertIsDefined(registration.active).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []);
});
});
hostMessaging.onMessage('did-load-localhost', (_event, data) => {
navigator.serviceWorker.ready.then(registration => {
assertIsDefined(registration.active).postMessage({ channel: 'did-load-localhost', data });
});
});
navigator.serviceWorker.addEventListener('message', event => {
switch (event.data.channel) {
case 'load-resource':
case 'load-localhost':
hostMessaging.postMessage(event.data.channel, event.data);
return;
}
});
/**
* @param {HTMLDocument?} document
* @param {HTMLElement?} body
*/
const applyStyles = (document, body) => {
if (!document) {
return;
}
if (body) {
body.classList.remove('vscode-light', 'vscode-dark', 'vscode-high-contrast', 'vscode-high-contrast-light', 'vscode-reduce-motion', 'vscode-using-screen-reader');
if (initData.activeTheme) {
body.classList.add(initData.activeTheme);
if (initData.activeTheme === 'vscode-high-contrast-light') {
// backwards compatibility
body.classList.add('vscode-high-contrast');
}
}
if (initData.reduceMotion) {
body.classList.add('vscode-reduce-motion');
}
if (initData.screenReader) {
body.classList.add('vscode-using-screen-reader');
}
body.dataset.vscodeThemeKind = initData.activeTheme;
body.dataset.vscodeThemeName = initData.themeName || '';
}
if (initData.styles) {
const documentStyle = document.documentElement.style;
// Remove stale properties
for (let i = documentStyle.length - 1; i >= 0; i--) {
const property = documentStyle[i];
// Don't remove properties that the webview might have added separately
if (property && property.startsWith('--vscode-')) {
documentStyle.removeProperty(property);
}
}
// Re-add new properties
for (const variable of Object.keys(initData.styles)) {
documentStyle.setProperty(`--${variable}`, initData.styles[variable]);
}
}
};
/**
* @param {MouseEvent} event
*/
const handleInnerClick = (event) => {
if (!event?.view?.document) {
return;
}
const baseElement = event.view.document.querySelector('base');
for (const pathElement of event.composedPath()) {
/** @type {any} */
const node = pathElement;
if (node.tagName && node.tagName.toLowerCase() === 'a' && node.href) {
if (node.getAttribute('href') === '#') {
event.view.scrollTo(0, 0);
} else if (node.hash && (node.getAttribute('href') === node.hash || (baseElement && node.href === baseElement.href + node.hash))) {
const fragment = node.hash.slice(1);
const scrollTarget = event.view.document.getElementById(fragment) ?? event.view.document.getElementById(decodeURIComponent(fragment));
scrollTarget?.scrollIntoView();
} else {
hostMessaging.postMessage('did-click-link', node.href.baseVal || node.href);
}
event.preventDefault();
return;
}
}
};
/**
* @param {MouseEvent} event
*/
const handleAuxClick = (event) => {
// Prevent middle clicks opening a broken link in the browser
if (!event?.view?.document) {
return;
}
if (event.button === 1) {
for (const pathElement of event.composedPath()) {
/** @type {any} */
const node = pathElement;
if (node.tagName && node.tagName.toLowerCase() === 'a' && node.href) {
event.preventDefault();
return;
}
}
}
};
/**
* @param {KeyboardEvent} e
*/
const handleInnerKeydown = (e) => {
// If the keypress would trigger a browser event, such as copy or paste,
// make sure we block the browser from dispatching it. Instead VS Code
// handles these events and will dispatch a copy/paste back to the webview
// if needed
if (isUndoRedo(e) || isPrint(e) || isFindEvent(e)) {
e.preventDefault();
} else if (isCopyPasteOrCut(e)) {
if (onElectron) {
e.preventDefault();
} else {
return; // let the browser handle this
}
}
hostMessaging.postMessage('did-keydown', {
key: e.key,
keyCode: e.keyCode,
code: e.code,
shiftKey: e.shiftKey,
altKey: e.altKey,
ctrlKey: e.ctrlKey,
metaKey: e.metaKey,
repeat: e.repeat
});
};
/**
* @param {KeyboardEvent} e
*/
const handleInnerUp = (e) => {
hostMessaging.postMessage('did-keyup', {
key: e.key,
keyCode: e.keyCode,
code: e.code,
shiftKey: e.shiftKey,
altKey: e.altKey,
ctrlKey: e.ctrlKey,
metaKey: e.metaKey,
repeat: e.repeat
});
};
/**
* @param {KeyboardEvent} e
* @return {boolean}
*/
function isCopyPasteOrCut(e) {
const hasMeta = e.ctrlKey || e.metaKey;
const shiftInsert = e.shiftKey && e.key.toLowerCase() === 'insert';
return (hasMeta && ['c', 'v', 'x'].includes(e.key.toLowerCase())) || shiftInsert;
}
/**
* @param {KeyboardEvent} e
* @return {boolean}
*/
function isUndoRedo(e) {
const hasMeta = e.ctrlKey || e.metaKey;
return hasMeta && ['z', 'y'].includes(e.key.toLowerCase());
}
/**
* @param {KeyboardEvent} e
* @return {boolean}
*/
function isPrint(e) {
const hasMeta = e.ctrlKey || e.metaKey;
return hasMeta && e.key.toLowerCase() === 'p';
}
/**
* @param {KeyboardEvent} e
* @return {boolean}
*/
function isFindEvent(e) {
const hasMeta = e.ctrlKey || e.metaKey;
return hasMeta && e.key.toLowerCase() === 'f';
}
let isHandlingScroll = false;
/**
* @param {WheelEvent} event
*/
const handleWheel = (event) => {
if (isHandlingScroll) {
return;
}
hostMessaging.postMessage('did-scroll-wheel', {
deltaMode: event.deltaMode,
deltaX: event.deltaX,
deltaY: event.deltaY,
deltaZ: event.deltaZ,
detail: event.detail,
type: event.type
});
};
/**
* @param {Event} event
*/
const handleInnerScroll = (event) => {
if (isHandlingScroll) {
return;
}
const target = /** @type {HTMLDocument | null} */ (event.target);
const currentTarget = /** @type {Window | null} */ (event.currentTarget);
if (!currentTarget || !target?.body) {
return;
}
const progress = currentTarget.scrollY / target.body.clientHeight;
if (isNaN(progress)) {
return;
}
isHandlingScroll = true;
window.requestAnimationFrame(() => {
try {
hostMessaging.postMessage('did-scroll', progress);
} catch (e) {
// noop
}
isHandlingScroll = false;
});
};
function handleInnerDragStartEvent(/** @type {DragEvent} */ e) {
if (e.defaultPrevented) {
// Extension code has already handled this event
return;
}
if (!e.dataTransfer || e.shiftKey) {
return;
}
// Only handle drags from outside editor for now
if (e.dataTransfer.items.length && Array.prototype.every.call(e.dataTransfer.items, item => item.kind === 'file')) {
hostMessaging.postMessage('drag-start');
}
}
/**
* @param {() => void} callback
*/
function onDomReady(callback) {
if (document.readyState === 'interactive' || document.readyState === 'complete') {
callback();
} else {
document.addEventListener('DOMContentLoaded', callback);
}
}
function areServiceWorkersEnabled() {
try {
return !!navigator.serviceWorker;
} catch (e) {
return false;
}
}
/**
* @typedef {{
* contents: string;
* options: {
* readonly allowScripts: boolean;
* readonly allowForms: boolean;
* readonly allowMultipleAPIAcquire: boolean;
* }
* state: any;
* cspSource: string;
* }} ContentUpdateData
*/
/**
* @param {ContentUpdateData} data
* @return {string}
*/
function toContentHtml(data) {
const options = data.options;
const text = data.contents;
const newDocument = new DOMParser().parseFromString(text, 'text/html');
newDocument.querySelectorAll('a').forEach(a => {
if (!a.title) {
const href = a.getAttribute('href');
if (typeof href === 'string') {
a.title = href;
}
}
});
// Set default aria role
if (!newDocument.body.hasAttribute('role')) {
newDocument.body.setAttribute('role', 'document');
}
// Inject default script
if (options.allowScripts) {
const defaultScript = newDocument.createElement('script');
defaultScript.id = '_vscodeApiScript';
defaultScript.textContent = getVsCodeApiScript(options.allowMultipleAPIAcquire, data.state);
newDocument.head.prepend(defaultScript);
}
// Inject default styles
newDocument.head.prepend(defaultStyles.cloneNode(true));
applyStyles(newDocument, newDocument.body);
// Strip out unsupported http-equiv tags
for (const metaElement of Array.from(newDocument.querySelectorAll('meta'))) {
const httpEquiv = metaElement.getAttribute('http-equiv');
if (httpEquiv && !/^(content-security-policy|default-style|content-type)$/i.test(httpEquiv)) {
console.warn(`Removing unsupported meta http-equiv: ${httpEquiv}`);
metaElement.remove();
}
}
// Check for CSP
const csp = newDocument.querySelector('meta[http-equiv="Content-Security-Policy"]');
if (!csp) {
hostMessaging.postMessage('no-csp-found');
} else {
try {
// Attempt to rewrite CSPs that hardcode old-style resource endpoint
const cspContent = csp.getAttribute('content');
if (cspContent) {
const newCsp = cspContent.replace(/(vscode-webview-resource|vscode-resource):(?=(\s|;|$))/g, data.cspSource);
csp.setAttribute('content', newCsp);
}
} catch (e) {
console.error(`Could not rewrite csp: ${e}`);
}
}
// set DOCTYPE for newDocument explicitly as DOMParser.parseFromString strips it off
// and DOCTYPE is needed in the iframe to ensure that the user agent stylesheet is correctly overridden
return '<!DOCTYPE html>\n' + newDocument.documentElement.outerHTML;
}
onDomReady(() => {
if (!document.body) {
return;
}
hostMessaging.onMessage('styles', (_event, data) => {
++styleVersion;
initData.styles = data.styles;
initData.activeTheme = data.activeTheme;
initData.themeName = data.themeName;
initData.reduceMotion = data.reduceMotion;
initData.screenReader = data.screenReader;
const target = getActiveFrame();
if (!target) {
return;
}
if (target.contentDocument) {
applyStyles(target.contentDocument, target.contentDocument.body);
}
});
// propagate focus
hostMessaging.onMessage('focus', () => {
const activeFrame = getActiveFrame();
if (!activeFrame || !activeFrame.contentWindow) {
// Focus the top level webview instead
window.focus();
return;
}
if (document.activeElement === activeFrame) {
// We are already focused on the iframe (or one of its children) so no need
// to refocus.
return;
}
activeFrame.contentWindow.focus();
});
// update iframe-contents
let updateId = 0;
hostMessaging.onMessage('content', async (_event, /** @type {ContentUpdateData} */ data) => {
const currentUpdateId = ++updateId;
try {
await workerReady;
} catch (e) {
console.error(`Webview fatal error: ${e}`);
hostMessaging.postMessage('fatal-error', { message: e + '' });
return;
}
if (currentUpdateId !== updateId) {
return;
}
const options = data.options;
const newDocument = toContentHtml(data);
const initialStyleVersion = styleVersion;
const frame = getActiveFrame();
const wasFirstLoad = firstLoad;
// keep current scrollY around and use later
/** @type {(body: HTMLElement, window: Window) => void} */
let setInitialScrollPosition;
if (firstLoad) {
firstLoad = false;
setInitialScrollPosition = (body, window) => {
if (typeof initData.initialScrollProgress === 'number' && !isNaN(initData.initialScrollProgress)) {
if (window.scrollY === 0) {
window.scroll(0, body.clientHeight * initData.initialScrollProgress);
}
}
};
} else {
const scrollY = frame && frame.contentDocument && frame.contentDocument.body ? assertIsDefined(frame.contentWindow).scrollY : 0;
setInitialScrollPosition = (body, window) => {
if (window.scrollY === 0) {
window.scroll(0, scrollY);
}
};
}
// Clean up old pending frames and set current one as new one
const previousPendingFrame = getPendingFrame();
if (previousPendingFrame) {
previousPendingFrame.setAttribute('id', '');
document.body.removeChild(previousPendingFrame);
}
if (!wasFirstLoad) {
pendingMessages = [];
}
const newFrame = document.createElement('iframe');
newFrame.setAttribute('id', 'pending-frame');
newFrame.setAttribute('frameborder', '0');
const sandboxRules = new Set(['allow-same-origin', 'allow-pointer-lock']);
if (options.allowScripts) {
sandboxRules.add('allow-scripts');
sandboxRules.add('allow-downloads');
}
if (options.allowForms) {
sandboxRules.add('allow-forms');
}
newFrame.setAttribute('sandbox', Array.from(sandboxRules).join(' '));
if (!isFirefox) {
newFrame.setAttribute('allow', options.allowScripts ? 'clipboard-read; clipboard-write;' : '');
}
// We should just be able to use srcdoc, but I wasn't
// seeing the service worker applying properly.
// Fake load an empty on the correct origin and then write real html
// into it to get around this.
newFrame.src = `./fake.html?id=${ID}`;
newFrame.style.cssText = 'display: block; margin: 0; overflow: hidden; position: absolute; width: 100%; height: 100%; visibility: hidden';
document.body.appendChild(newFrame);
/**
* @param {Document} contentDocument
*/
function onFrameLoaded(contentDocument) {
// Workaround for https://bugs.chromium.org/p/chromium/issues/detail?id=978325
setTimeout(() => {
contentDocument.open();
contentDocument.write(newDocument);
contentDocument.close();
hookupOnLoadHandlers(newFrame);
if (initialStyleVersion !== styleVersion) {
applyStyles(contentDocument, contentDocument.body);
}
}, 0);
}
if (!options.allowScripts && isSafari) {
// On Safari for iframes with scripts disabled, the `DOMContentLoaded` never seems to be fired: https://bugs.webkit.org/show_bug.cgi?id=33604
// Use polling instead.
const interval = setInterval(() => {
// If the frame is no longer mounted, loading has stopped
if (!newFrame.parentElement) {
clearInterval(interval);
return;
}
const contentDocument = assertIsDefined(newFrame.contentDocument);
if (contentDocument.location.pathname.endsWith('/fake.html') && contentDocument.readyState !== 'loading') {
clearInterval(interval);
onFrameLoaded(contentDocument);
}
}, 10);
} else {
assertIsDefined(newFrame.contentWindow).addEventListener('DOMContentLoaded', e => {
const contentDocument = e.target ? (/** @type {HTMLDocument} */ (e.target)) : undefined;
onFrameLoaded(assertIsDefined(contentDocument));
});
}
/**
* @param {Document} contentDocument
* @param {Window} contentWindow
*/
const onLoad = (contentDocument, contentWindow) => {
if (contentDocument && contentDocument.body) {
// Workaround for https://github.com/microsoft/vscode/issues/12865
// check new scrollY and reset if necessary
setInitialScrollPosition(contentDocument.body, contentWindow);
}
const newFrame = getPendingFrame();
if (newFrame && newFrame.contentDocument && newFrame.contentDocument === contentDocument) {
const wasFocused = document.hasFocus();
const oldActiveFrame = getActiveFrame();
if (oldActiveFrame) {
document.body.removeChild(oldActiveFrame);
}
// Styles may have changed since we created the element. Make sure we re-style
if (initialStyleVersion !== styleVersion) {
applyStyles(newFrame.contentDocument, newFrame.contentDocument.body);
}
newFrame.setAttribute('id', 'active-frame');
newFrame.style.visibility = 'visible';
contentWindow.addEventListener('scroll', handleInnerScroll);
contentWindow.addEventListener('wheel', handleWheel);
if (wasFocused) {
contentWindow.focus();
}
pendingMessages.forEach((message) => {
contentWindow.postMessage(message.message, window.origin, message.transfer);
});
pendingMessages = [];
}
};
/**
* @param {HTMLIFrameElement} newFrame
*/
function hookupOnLoadHandlers(newFrame) {
clearTimeout(loadTimeout);
loadTimeout = undefined;
loadTimeout = setTimeout(() => {
clearTimeout(loadTimeout);
loadTimeout = undefined;
onLoad(assertIsDefined(newFrame.contentDocument), assertIsDefined(newFrame.contentWindow));
}, 200);
const contentWindow = assertIsDefined(newFrame.contentWindow);
contentWindow.addEventListener('load', function (e) {
const contentDocument = /** @type {Document} */ (e.target);
if (loadTimeout) {
clearTimeout(loadTimeout);
loadTimeout = undefined;
onLoad(contentDocument, this);
}
});
// Bubble out various events
contentWindow.addEventListener('click', handleInnerClick);
contentWindow.addEventListener('auxclick', handleAuxClick);
contentWindow.addEventListener('keydown', handleInnerKeydown);
contentWindow.addEventListener('keyup', handleInnerUp);
contentWindow.addEventListener('contextmenu', e => {
if (e.defaultPrevented) {
// Extension code has already handled this event
return;
}
e.preventDefault();
hostMessaging.postMessage('did-context-menu', {
clientX: e.clientX,
clientY: e.clientY,
});
});
contentWindow.addEventListener('dragenter', handleInnerDragStartEvent);
contentWindow.addEventListener('dragover', handleInnerDragStartEvent);
unloadMonitor.onIframeLoaded(newFrame);
}
});
// Forward message to the embedded iframe
hostMessaging.onMessage('message', (_event, /** @type {{message: any, transfer?: ArrayBuffer[] }} */ data) => {
const pending = getPendingFrame();
if (!pending) {
const target = getActiveFrame();
if (target) {
assertIsDefined(target.contentWindow).postMessage(data.message, window.origin, data.transfer);
return;
}
}
pendingMessages.push(data);
});
hostMessaging.onMessage('initial-scroll-position', (_event, progress) => {
initData.initialScrollProgress = progress;
});
hostMessaging.onMessage('execCommand', (_event, data) => {
const target = getActiveFrame();
if (!target) {
return;
}
assertIsDefined(target.contentDocument).execCommand(data);
});
/** @type {string | undefined} */
let lastFindValue = undefined;
hostMessaging.onMessage('find', (_event, data) => {
const target = getActiveFrame();
if (!target) {
return;
}
if (!data.previous && lastFindValue !== data.value) {
// Reset selection so we start search at the head of the last search
const selection = target.contentWindow.getSelection();
selection.collapse(selection.anchorNode);
}
lastFindValue = data.value;
const didFind = (/** @type {any} */ (target.contentWindow)).find(
data.value,
/* caseSensitive*/ false,
/* backwards*/ data.previous,
/* wrapAround*/ true,
/* wholeWord */ false,
/* searchInFrames*/ false,
false);
hostMessaging.postMessage('did-find', didFind);
});
hostMessaging.onMessage('find-stop', (_event, data) => {
const target = getActiveFrame();
if (!target) {
return;
}
lastFindValue = undefined;
if (!data.clearSelection) {
const selection = target.contentWindow.getSelection();
for (let i = 0; i < selection.rangeCount; i++) {
selection.removeRange(selection.getRangeAt(i));
}
}
});
trackFocus({
onFocus: () => hostMessaging.postMessage('did-focus'),
onBlur: () => hostMessaging.postMessage('did-blur')
});
(/** @type {any} */ (window))[vscodePostMessageFuncName] = (/** @type {string} */ command, /** @type {any} */ data) => {
switch (command) {
case 'onmessage':
case 'do-update-state':
hostMessaging.postMessage(command, data);
break;
}
};
// Also forward events before the contents of the webview have loaded
window.addEventListener('keydown', handleInnerKeydown);
window.addEventListener('dragenter', handleInnerDragStartEvent);
window.addEventListener('dragover', handleInnerDragStartEvent);
hostMessaging.signalReady();
});
</script>
</body>
</html>
| HTML | 4 | EngineLessCC/vscode | src/vs/workbench/contrib/webview/browser/pre/index.html | [
"MIT"
] |
/**
* This file is part of the Phalcon.
*
* (c) Phalcon Team <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Phalcon\Html\Helper;
use Phalcon\Html\Exception;
/**
* Class Base
*/
class Base extends AbstractHelper
{
/**
* Produce a `<base/>` tag.
*
* @param string $href
* @param array $attributes
*
* @return string
* @throws Exception
*/
public function __invoke(string href = null, array attributes = []) -> string
{
var overrides = [];
if !empty href {
let overrides = ["href" : href];
}
/**
* Avoid duplicate "href" and ignore it if it is passed in the attributes
*/
unset attributes["href"];
let overrides = array_merge(overrides, attributes);
return this->renderElement("base", overrides);
}
}
| Zephir | 5 | tidytrax/cphalcon | phalcon/Html/Helper/Base.zep | [
"BSD-3-Clause"
] |
i 00001 02 24 77777 00 042 0002
i 00002 00 000 0000 00 22 00000
i 00003 00 010 0000 00 040 0002
i 00004 02 35 00020 02 24 77777
i 00005 00 042 0002 00 22 00000
i 00006 00 000 0000 00 010 0000
i 00007 00 040 0002 02 35 00020
i 00010 02 24 77777 00 042 0002
i 00011 00 040 0000 00 22 00000
i 00012 00 042 0000 00 040 0002
i 00013 02 35 00020 02 24 77777
i 00014 00 042 0002 00 22 00000
i 00015 00 040 0000 00 042 0000
i 00016 00 040 0002 02 35 00020
i 00017 06 33 12345 00 22 00000
i 00020 02 33 76543 00 22 00000
| Octave | 0 | besm6/mesm6 | test/addr0/addr0.oct | [
"MIT"
] |
/**
* Copyright (c) 2016-present, Facebook, 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.
*/
#include "caffe2/core/db.h"
#include "caffe2/core/init.h"
#include "caffe2/proto/caffe2_pb.h"
#include "caffe2/core/logging.h"
C10_DEFINE_string(input_db, "", "The input db.");
C10_DEFINE_string(input_db_type, "", "The input db type.");
C10_DEFINE_string(output_db, "", "The output db.");
C10_DEFINE_string(output_db_type, "", "The output db type.");
C10_DEFINE_int(batch_size, 1000, "The write batch size.");
using caffe2::db::Cursor;
using caffe2::db::DB;
using caffe2::db::Transaction;
int main(int argc, char** argv) {
caffe2::GlobalInit(&argc, &argv);
std::unique_ptr<DB> in_db(caffe2::db::CreateDB(
FLAGS_input_db_type, FLAGS_input_db, caffe2::db::READ));
std::unique_ptr<DB> out_db(caffe2::db::CreateDB(
FLAGS_output_db_type, FLAGS_output_db, caffe2::db::NEW));
std::unique_ptr<Cursor> cursor(in_db->NewCursor());
std::unique_ptr<Transaction> transaction(out_db->NewTransaction());
int count = 0;
for (; cursor->Valid(); cursor->Next()) {
transaction->Put(cursor->key(), cursor->value());
if (++count % FLAGS_batch_size == 0) {
transaction->Commit();
LOG(INFO) << "Converted " << count << " items so far.";
}
}
LOG(INFO) << "A total of " << count << " items processed.";
return 0;
}
| C++ | 4 | Hacky-DH/pytorch | binaries/convert_db.cc | [
"Intel"
] |
## Licensed to Cloudera, Inc. under one
## or more contributor license agreements. See the NOTICE file
## distributed with this work for additional information
## regarding copyright ownership. Cloudera, Inc. 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.
<%!
import sys
from desktop import conf
if sys.version_info[0] > 2:
from django.utils.translation import gettext as _
else:
from django.utils.translation import ugettext as _
from useradmin.hue_password_policy import is_password_policy_enabled, get_password_hint
%>
<link rel="stylesheet" href="${ static('desktop/css/login.css') }">
<div id="login-modal" class="modal fade hide">
<div class="login-container">
<a href="#" class="close logged-out link-message" data-dismiss="modal" style="display: none; margin: 10px">×</a>
<div class="logo"><img src="${ static('desktop/art/[email protected]') }" width="70" height="70" alt="${ _('Hue logo') }"></div>
<h4 class="muted" style="margin-bottom: 50px; padding: 30px">
<span class="logged-out link-message" style="display: none">
${ _('Your session expired and your current action requires to') }
<a class="reload pointer">
${ _('reload this page') }
</a>
</span>
<span class="auto-logged-out link-message" style="display: none">
${ _('We did not hear from you for about') } <strong class="time">${ conf.AUTH.IDLE_SESSION_TIMEOUT.get() }</strong> ${ _('and for security reasons Hue logged you out') }
<a class="reload pointer margin-top-30">
${ _('Please reload this page to continue') }
</a>
</span>
</h4>
</div>
</div>
<script>
$(document).ready(function () {
$('.reload').on('click', function () {
location.reload();
});
$('.time').text(($('.time').text()*1000).toHHMMSS(true));
});
</script>
| Mako | 4 | yetsun/hue | desktop/core/src/desktop/templates/login_modal.mako | [
"Apache-2.0"
] |
/*
* Copyright 2012-2020 the original author or 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
*
* https://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.
*/
package org.springframework.boot.autoconfigure.hazelcast;
import com.hazelcast.client.impl.clientside.HazelcastClientProxy;
import com.hazelcast.config.Config;
import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.HazelcastInstance;
import org.assertj.core.api.Condition;
import org.junit.jupiter.api.Test;
import org.springframework.boot.autoconfigure.AutoConfigurations;
import org.springframework.boot.test.context.assertj.AssertableApplicationContext;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import org.springframework.boot.test.context.runner.ContextConsumer;
import org.springframework.boot.testsupport.classpath.ClassPathExclusions;
import org.springframework.boot.testsupport.classpath.ClassPathOverrides;
import org.springframework.core.io.ClassPathResource;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link HazelcastAutoConfiguration} with Hazelcast 3.
*
* @author Stephane Nicoll
*/
@ClassPathExclusions("hazelcast*.jar")
@ClassPathOverrides({ "com.hazelcast:hazelcast:3.12.8", "com.hazelcast:hazelcast-client:3.12.8" })
class Hazelcast3AutoConfigurationTests {
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
.withConfiguration(AutoConfigurations.of(HazelcastAutoConfiguration.class));
@Test
void defaultConfigFile() {
// no hazelcast-client.xml and hazelcast.xml is present in root classpath
// this also asserts that XML has priority over YAML
// as both hazelcast.yaml and hazelcast.xml in test classpath.
this.contextRunner.run((context) -> {
Config config = context.getBean(HazelcastInstance.class).getConfig();
assertThat(config.getConfigurationUrl()).isEqualTo(new ClassPathResource("hazelcast.xml").getURL());
});
}
@Test
void explicitConfigFileWithXml() {
HazelcastInstance hazelcastServer = Hazelcast.newHazelcastInstance();
try {
this.contextRunner
.withPropertyValues("spring.hazelcast.config=org/springframework/boot/autoconfigure/"
+ "hazelcast/hazelcast-client-specific.xml")
.run(assertSpecificHazelcastClient("explicit-xml"));
}
finally {
hazelcastServer.shutdown();
}
}
private ContextConsumer<AssertableApplicationContext> assertSpecificHazelcastClient(String label) {
return (context) -> assertThat(context).getBean(HazelcastInstance.class).isInstanceOf(HazelcastInstance.class)
.has(labelEqualTo(label));
}
private static Condition<HazelcastInstance> labelEqualTo(String label) {
return new Condition<>((o) -> ((HazelcastClientProxy) o).getClientConfig().getLabels().stream()
.anyMatch((e) -> e.equals(label)), "Label equals to " + label);
}
}
| Java | 4 | Cuiqingqiang/spring-boot | spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/hazelcast/Hazelcast3AutoConfigurationTests.java | [
"Apache-2.0"
] |
interface ITest:
def Do() as string
def Do[of T]() as T
class Test(ITest):
def Do() as string:
return "non-generic"
def Do[of T]() as T:
pass
t = Test()
assert "non-generic" == t.Do()
#t.Do[of int]()
| Boo | 4 | popcatalin81/boo | tests/testcases/regression/BOO-1016-1.boo | [
"BSD-3-Clause"
] |
@echo off
"%~dp0\yarn.cmd" %*
| Batchfile | 2 | duluca/angular | third_party/github.com/yarnpkg/yarn/releases/download/v1.21.1/bin/yarnpkg.cmd | [
"MIT"
] |
scriptname _Seed_FoodDatastoreHandler extends Quest
{ This script handles the lookup and storage of food data. Actual
hunger / thirst / spoilage logic is handled by their requisite
systems. }
;/
Food Datastore
The store is an 8-array Linked Array that stores data using
the pattern [WholeFood, ResultFood, QuantityFood, ...]
/;
import SeedUtil
import _SeedInternal
FormList[] property foodLists auto hidden
Potion[] property spoiledVersions auto hidden
FormList property _Seed_SpoiledFoods auto
FormList property _Seed_Bread auto
FormList property _Seed_MeatRaw auto
FormList property _Seed_MeatCooked auto
FormList property _Seed_SmallGameRaw auto
FormList property _Seed_SmallGameCooked auto
FormList property _Seed_FishRaw auto
FormList property _Seed_FishCooked auto
FormList property _Seed_SeafoodRaw auto
FormList property _Seed_SeafoodCooked auto
FormList property _Seed_Vegetables auto
FormList property _Seed_Fruit auto
FormList property _Seed_Cheese auto
FormList property _Seed_Treats auto
FormList property _Seed_Pastries auto
FormList property _Seed_Stews auto
FormList property _Seed_CheeseBowls auto
FormList property _Seed_DrinkMilk auto
FormList property _Seed_DrinkAlcoholic auto
FormList property _Seed_DrinkNonAlcoholic auto
FormList property _Seed_Preserved auto
Potion property _Seed_Quantity2 auto
Potion property _Seed_Quantity8 auto
Potion[] multiPartFoodData1
Potion[] multiPartFoodData2
Potion[] multiPartFoodData3
Potion[] multiPartFoodData4
Potion[] multiPartFoodData5
Potion[] multiPartFoodData6
Potion[] multiPartFoodData7
Potion[] multiPartFoodData8
Potion property _Seed_Spoiled_Bread auto
Potion property _Seed_Spoiled_MeatRaw auto
Potion property _Seed_Spoiled_MeatCooked auto
Potion property _Seed_Spoiled_SmallGameRaw auto
Potion property _Seed_Spoiled_SmallGameCooked auto
Potion property _Seed_Spoiled_FishRaw auto
Potion property _Seed_Spoiled_FishCooked auto
Potion property _Seed_Spoiled_SeafoodRaw auto
Potion property _Seed_Spoiled_SeafoodCooked auto
Potion property _Seed_Spoiled_Vegetable auto
Potion property _Seed_Spoiled_Fruit auto
Potion property _Seed_Spoiled_Cheese auto
Potion property _Seed_Spoiled_Treat auto
Potion property _Seed_Spoiled_Pastry auto
Potion property _Seed_Spoiled_Stew auto
Potion property _Seed_Spoiled_CheeseBowl auto
Potion property _Seed_Spoiled_Milk auto
MiscObject property _Seed_PerishedFood auto
;/
System Management
/;
function StartSystem()
if !self.IsRunning()
self.Start()
endif
InitializeArrays()
; CreateFoodKeywordValueMaps()
endFunction
function StopSystem()
if self.IsRunning()
self.Stop()
endif
endFunction
function InitializeArrays()
multiPartFoodData1 = new Potion[128]
multiPartFoodData2 = new Potion[128]
multiPartFoodData3 = new Potion[128]
multiPartFoodData4 = new Potion[128]
multiPartFoodData5 = new Potion[128]
multiPartFoodData6 = new Potion[128]
multiPartFoodData7 = new Potion[128]
multiPartFoodData8 = new Potion[128]
foodLists = new FormList[19]
foodLists[0] = _Seed_Bread
foodLists[1] = _Seed_MeatRaw
foodLists[2] = _Seed_MeatCooked
foodLists[3] = _Seed_SmallGameRaw
foodLists[4] = _Seed_SmallGameCooked
foodLists[5] = _Seed_FishRaw
foodLists[6] = _Seed_FishCooked
foodLists[7] = _Seed_SeafoodRaw
foodLists[8] = _Seed_SeafoodCooked
foodLists[9] = _Seed_Vegetables
foodLists[10] = _Seed_Fruit
foodLists[11] = _Seed_Cheese
foodLists[12] = _Seed_Treats
foodLists[13] = _Seed_Pastries
foodLists[14] = _Seed_Stews
foodLists[15] = _Seed_CheeseBowls
foodLists[16] = _Seed_DrinkMilk
foodLists[17] = _Seed_DrinkAlcoholic
foodLists[18] = _Seed_DrinkNonAlcoholic
spoiledVersions = new Potion[19]
spoiledVersions[0] = _Seed_Spoiled_Bread
spoiledVersions[1] = _Seed_Spoiled_MeatRaw
spoiledVersions[2] = _Seed_Spoiled_MeatCooked
spoiledVersions[3] = _Seed_Spoiled_SmallGameRaw
spoiledVersions[4] = _Seed_Spoiled_SmallGameCooked
spoiledVersions[5] = _Seed_Spoiled_FishRaw
spoiledVersions[6] = _Seed_Spoiled_FishCooked
spoiledVersions[7] = _Seed_Spoiled_SeafoodRaw
spoiledVersions[8] = _Seed_Spoiled_SeafoodCooked
spoiledVersions[9] = _Seed_Spoiled_Vegetable
spoiledVersions[10] = _Seed_Spoiled_Fruit
spoiledVersions[11] = _Seed_Spoiled_Cheese
spoiledVersions[12] = _Seed_Spoiled_Treat
spoiledVersions[13] = _Seed_Spoiled_Pastry
spoiledVersions[14] = _Seed_Spoiled_Stew
spoiledVersions[15] = _Seed_Spoiled_CheeseBowl
spoiledVersions[16] = _Seed_Spoiled_Milk
spoiledVersions[17] = None
spoiledVersions[18] = None
endFunction
;/
Public Functions
/;
int function IdentifyFood(Potion food)
;@TODO: Check keywords first
; Return values:
; 0: Not found
; n: Food Type (see Food IDs)
int i = 0
while i < foodLists.Length
if foodLists[i].HasForm(food)
return i + 1
else
i += 1
endif
endWhile
return 0
endFunction
function AddFoodIdentity(Potion food, int foodId)
; Adds a food to a category. Uses the Food ID enum
; as the foodId. Also removes it from any other category.
if foodId < 1 || foodId > 19
SeedDebug(3, "Attempted to set food " + food + " to type " + foodId + ", which is an invalid type.")
SeedDebug(3, "If you are the author of the mod that used AddFoodIdentity(), check the food type in your code.")
return
endif
int idx = foodId - 1
foodLists[idx].AddForm(food)
SeedDebug(1, "Set food " + food + " as type " + foodId)
endFunction
function RemoveFoodIdentity(Potion food, int foodId)
; Removes a food from a category.
int idx = foodId - 1
foodLists[idx].RemoveAddedForm(food)
SeedDebug(1, "Unset food " + food + " from type " + foodId)
endFunction
bool function IsFoodPreserved(Potion food)
; Returns whether or not the food is preserved.
if _Seed_Preserved.HasForm(food)
return true
else
return false
endif
endFunction
function SetFoodPreserved(Potion food, bool abIsPreserved = true)
; Sets the preservation state of the food.
if abIsPreserved
_Seed_Preserved.AddForm(food)
else
_Seed_Preserved.RemoveAddedForm(food)
endif
endFunction
Form function GetSpoiledVersion(Potion food, int aiType = -1)
if _Seed_SpoiledFoods.HasForm(food)
return _Seed_PerishedFood
endif
int typeIndex
if aiType != -1
typeIndex = aiType - 1
else
aiType = IdentifyFood(food) - 1
if typeIndex < 0
return None
endif
endif
return spoiledVersions[typeIndex]
endFunction
function AddUpdateMultiPartFood(Potion akWholeFood, Potion akResultFood, int aiQuantity)
; Adds food entries to linked array. If found, updates it with the supplied data.
; Follows the pattern: WholeFood, ResultFood, QuantityFood, WholeFood, ResultFood, QuantityFood...
int idx = LinkedArrayFindPotion(akWholeFood, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
Potion quantity
if aiQuantity == 2
quantity = _Seed_Quantity2
elseif aiQuantity == 8
quantity = _Seed_Quantity8
endif
if idx == -1
int newIdx = LinkedArrayAddPotion(akWholeFood, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
LinkedArrayAddPotionAt(akResultFood, newIdx + 1, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
LinkedArrayAddPotionAt(quantity, newIdx + 2, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
endif
if idx > -1
; Update the existing entry
LinkedArrayAddPotionAt(akResultFood, idx + 1, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
LinkedArrayAddPotionAt(quantity, idx + 2, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
endif
endFunction
function RemoveMultiPartFood(Potion akWholeFood)
; Removes a food record from the table, if found. Resorts the table when complete.
int idx = LinkedArrayRemovePotion(akWholeFood, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8, false)
if idx > -1
LinkedArrayRemovePotionAt(idx + 1, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
LinkedArrayRemovePotionAt(idx + 2, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
LinkedArraySortPotions( multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
endif
endFunction
Potion function GetMultiPartFoodResult(Potion akWholeFood)
; Gets the result food of the given multi-part food. If not found, returns None.
int idx = LinkedArrayFindPotion(akWholeFood, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
if idx > -1
return LinkedArrayGetPotionAt(idx + 1, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
else
return None
endif
endFunction
Potion function GetMultiPartFoodFromIndex(int aiWholeFoodIndex)
; Gets the result food relative to the multi-part food index.
return LinkedArrayGetPotionAt(aiWholeFoodIndex + 1, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
endFunction
int function GetMultiPartFoodQuantity(Potion akWholeFood)
; Gets the result food of the given multi-part food. If not found, returns -1.
int idx = LinkedArrayFindPotion(akWholeFood, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
if idx > -1
Potion quantity = LinkedArrayGetPotionAt(idx + 2, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
if quantity == _Seed_Quantity2
return 2
elseif quantity == _Seed_Quantity8
return 8
endif
endif
endFunction
int function GetMultiPartFoodQuantityFromIndex(int aiWholeFoodIndex)
; Gets the result food relative to the multi-part food index.
Potion quantity = LinkedArrayGetPotionAt(aiWholeFoodIndex + 2, multiPartFoodData1, multiPartFoodData2, multiPartFoodData3, multiPartFoodData4, \
multiPartFoodData5, multiPartFoodData6, multiPartFoodData7, multiPartFoodData8)
if quantity == _Seed_Quantity2
return 2
elseif quantity == _Seed_Quantity8
return 8
endif
endFunction
;/
Linked Array Functions
/;
int function LinkedArrayAddPotion(Potion akPotion, Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8)
; Adds a form to the first available element in the first available array
; associated with this ArrayID.
; Return values
; -1 = Failed (Linked array full)
; n = New element index
int idx = -1
idx = akArray1.Find(none)
if idx != -1
akArray1[idx] = akPotion
return idx
endif
idx = -1
idx = akArray2.Find(none)
if idx != -1
akArray2[idx] = akPotion
return idx + 128
endif
idx = -1
idx = akArray3.Find(none)
if idx != -1
akArray3[idx] = akPotion
return idx + 256
endif
idx = -1
idx = akArray4.Find(none)
if idx != -1
akArray4[idx] = akPotion
return idx + 384
endif
idx = -1
idx = akArray5.Find(none)
if idx != -1
akArray5[idx] = akPotion
return idx + 512
endif
idx = -1
idx = akArray6.Find(none)
if idx != -1
akArray6[idx] = akPotion
return idx + 640
endif
idx = -1
idx = akArray7.Find(none)
if idx != -1
akArray7[idx] = akPotion
return idx + 768
endif
idx = -1
idx = akArray8.Find(none)
if idx != -1
akArray8[idx] = akPotion
return idx + 896
endif
return -1
endFunction
bool function LinkedArrayAddPotionAt(Potion akPotion, int aiIndex, Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8)
; Adds a potion to the linked-array relative index.
; Return values
; false = Error (linked array full)
; true = Success
int idx = 0
if aiIndex < 128
idx = aiIndex
akArray1[idx] = akPotion
return true
endif
if aiIndex < 256
idx = aiIndex - 128
akArray2[idx] = akPotion
return true
endif
if aiIndex < 384
idx = aiIndex - 256
akArray3[idx] = akPotion
return true
endif
if aiIndex < 512
idx = aiIndex - 384
akArray4[idx] = akPotion
return true
endif
if aiIndex < 640
idx = aiIndex - 512
akArray5[idx] = akPotion
return true
endif
if aiIndex < 768
idx = aiIndex - 640
akArray6[idx] = akPotion
return true
endif
if aiIndex < 896
idx = aiIndex - 768
akArray7[idx] = akPotion
return true
endif
if aiIndex < 1024
idx = aiIndex - 896
akArray8[idx] = akPotion
return true
endif
return false
endFunction
int function LinkedArrayRemovePotion(Potion akPotion, Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8, bool abSort = true)
; Removes the first occurrence of a form from the array, if found.
; Return values
; -1 = Failed (Linked array full)
; n = New element index
int idx = -1
idx = akArray1.Find(akPotion)
if idx != -1
akArray1[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx
endif
idx = -1
idx = akArray2.Find(akPotion)
if idx != -1
akArray2[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 128
endif
idx = -1
idx = akArray3.Find(akPotion)
if idx != -1
akArray3[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 256
endif
idx = -1
idx = akArray4.Find(akPotion)
if idx != -1
akArray4[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 384
endif
idx = -1
idx = akArray5.Find(akPotion)
if idx != -1
akArray5[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 512
endif
idx = -1
idx = akArray6.Find(akPotion)
if idx != -1
akArray6[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 640
endif
idx = -1
idx = akArray7.Find(akPotion)
if idx != -1
akArray7[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 768
endif
idx = -1
idx = akArray8.Find(akPotion)
if idx != -1
akArray8[idx] = none
if abSort
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
return idx + 896
endif
return -1
endFunction
bool function LinkedArrayRemovePotionAt(int aiIndex, Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8)
; Removes a potion at the linked-array relative index.
; Return values
; false = Error (linked array full)
; true = Success
int idx = 0
if aiIndex < 128
idx = aiIndex
akArray1[idx] = None
return true
endif
if aiIndex < 256
idx = aiIndex - 128
akArray2[idx] = None
return true
endif
if aiIndex < 384
idx = aiIndex - 256
akArray3[idx] = None
return true
endif
if aiIndex < 512
idx = aiIndex - 384
akArray4[idx] = None
return true
endif
if aiIndex < 640
idx = aiIndex - 512
akArray5[idx] = None
return true
endif
if aiIndex < 768
idx = aiIndex - 640
akArray6[idx] = None
return true
endif
if aiIndex < 896
idx = aiIndex - 768
akArray7[idx] = None
return true
endif
if aiIndex < 1024
idx = aiIndex - 896
akArray8[idx] = None
return true
endif
return false
endFunction
int function LinkedArrayFindPotion(Potion akPotion, Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8, bool abSort = true)
; Attempts to find the given potion in the associated array ID, and returns the index (relative to the linked array) if found.
; Return values
; -1 = akPotion not found
; n = akPotion index
int idx = -1
idx = akArray1.Find(akPotion)
if idx != -1
return idx
endif
idx = akArray2.Find(akPotion)
if idx != -1
return idx + 128
endif
idx = akArray3.Find(akPotion)
if idx != -1
return idx + 256
endif
idx = akArray4.Find(akPotion)
if idx != -1
return idx + 384
endif
idx = akArray5.Find(akPotion)
if idx != -1
return idx + 512
endif
idx = akArray6.Find(akPotion)
if idx != -1
return idx + 640
endif
idx = akArray7.Find(akPotion)
if idx != -1
return idx + 768
endif
idx = akArray8.Find(akPotion)
if idx != -1
return idx + 896
endif
return -1
endFunction
Potion function LinkedArrayGetPotionAt(int aiIndex, Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8, bool abSort = true)
; Attempts to retrieve the potion at the supplied linked-array relative index. Returns None if aiIndex is out of bounds.
int idx = aiIndex
if aiIndex < 128
return akArray1[idx]
elseif aiIndex < 256
idx -= 128
return akArray2[idx]
elseif aiIndex < 384
idx -= 256
return akArray3[idx]
elseif aiIndex < 512
idx -= 384
return akArray4[idx]
elseif aiIndex < 640
idx -= 512
return akArray5[idx]
elseif aiIndex < 768
idx -= 640
return akArray6[idx]
elseif aiIndex < 896
idx -= 768
return akArray7[idx]
elseif aiIndex < 1024
idx -= 896
return akArray8[idx]
endif
return None
endFunction
function LinkedArrayClearPotions128(Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8)
; Reinitializes and clears linked arrays into Potion[128] arrays.
; Return values
; none
akArray1 = new Potion[128]
akArray2 = new Potion[128]
akArray3 = new Potion[128]
akArray4 = new Potion[128]
akArray5 = new Potion[128]
akArray6 = new Potion[128]
akArray7 = new Potion[128]
akArray8 = new Potion[128]
endFunction
function LinkedArrayRemoveInvalidPotions(Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8)
; Clears all arrays of invalid Potions ([Form <None>]) and re-sorts.
; Return values
; none
bool foundInvalidForm = false
int i = 0
while i < akArray1.Length
if akArray1[i] == "[Form <None>]"
akArray1[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray2.Length
if akArray2[i] == "[Form <None>]"
akArray2[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray3.Length
if akArray3[i] == "[Form <None>]"
akArray3[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray4.Length
if akArray4[i] == "[Form <None>]"
akArray4[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray5.Length
if akArray5[i] == "[Form <None>]"
akArray5[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray6.Length
if akArray6[i] == "[Form <None>]"
akArray6[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray7.Length
if akArray7[i] == "[Form <None>]"
akArray7[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
i = 0
while i < akArray8.Length
if akArray8[i] == "[Form <None>]"
akArray8[i] = none
foundInvalidForm = true
endif
i += 1
endWhile
if foundInvalidForm
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8)
endif
endFunction
int function LinkedArrayCountPotions(Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8)
;Counts the number of indicies in this linked array that do not have a "none" type
; Return values
; int myCount = number of indicies that are not "none"
int myCount = 0
int i = 0
while i < akArray1.Length
if akArray1[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray2.Length
if akArray2[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray3.Length
if akArray3[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray4.Length
if akArray4[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray5.Length
if akArray5[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray6.Length
if akArray6[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray7.Length
if akArray7[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
i = 0
while i < akArray8.Length
if akArray8[i] != none
myCount += 1
i += 1
else
i += 1
endif
endWhile
return myCount
endFunction
bool function LinkedArraySortPotions(Potion[] akArray1, Potion[] akArray2, Potion[] akArray3, Potion[] akArray4, \
Potion[] akArray5, Potion[] akArray6, Potion[] akArray7, Potion[] akArray8, int i = 0)
; Removes blank elements by shifting all elements down, moving elements
; to arrays "below" the current one if necessary.
; Optionally starts sorting from element i.
; Return values
; false = No sorting required
; true = Success
;debug.trace("Sort Start")
bool firstNoneFound = false
int firstNoneFoundArrayId = 0
int firstNoneIndex = 0
while i < 1024
;Which array am I looking in?
int j = 0 ;Actual array index to check
int myCurrArray ;Current array
if i < 128
myCurrArray = 1
j = i
elseif i < 256 && i >= 128
j = i - 128
myCurrArray = 2
elseif i < 384 && i >= 256
j = i - 256
myCurrArray = 3
elseif i < 512 && i >= 384
j = i - 384
myCurrArray = 4
elseif i < 640 && i >= 512
j = i - 512
myCurrArray = 5
elseif i < 768 && i >= 640
j = i - 640
myCurrArray = 6
elseif i < 896 && i >= 768
j = i - 768
myCurrArray = 7
elseif i < 1024 && i >= 896
j = i - 896
myCurrArray = 8
endif
if myCurrArray == 1
if akArray1[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray1[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 2
if akArray2[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray2[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 3
if akArray3[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray3[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 4
if akArray4[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray4[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 5
if akArray5[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray5[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 6
if akArray6[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray6[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 7
if akArray7[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray7[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
elseif myCurrArray == 8
if akArray8[j] == none
if firstNoneFound == false
firstNoneFound = true
firstNoneFoundArrayId = myCurrArray
firstNoneIndex = j
i += 1
else
i += 1
endif
else
if firstNoneFound == true
;check to see if it's a couple of blank entries in a row
if !(akArray8[j] == none)
;notification("Moving element " + i + " to index " + firstNoneIndex)
if firstNoneFoundArrayId == 1
akArray1[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 2
akArray2[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 3
akArray3[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 4
akArray4[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 5
akArray5[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 6
akArray6[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 7
akArray7[firstNoneIndex] = akArray1[j]
akArray1[j] = none
elseif firstNoneFoundArrayId == 8
akArray8[firstNoneIndex] = akArray1[j]
akArray1[j] = none
endif
;Call this function recursively until it returns
LinkedArraySortPotions(akArray1, akArray2, akArray3, akArray4, akArray5, akArray6, akArray7, akArray8, firstNoneIndex + 1)
return true
else
i += 1
endif
else
i += 1
endif
endif
endif
endWhile
return false
endFunction | Papyrus | 4 | chesko256/Campfire | Scripts/Source/_Seed_FoodDatastoreHandler.psc | [
"MIT"
] |
create-react-class = require \create-react-class
Form = create-react-class do
# render :: a -> ReactElement
render: ->
div null,
# MAKES
React.create-element SimpleSelect,
placeholder: "Select a make"
options: @state.makes |> map ~> label: it, value: it
value: @state.make
# on-value-change :: Item -> (a -> Void) -> Void
on-value-change: (make) !~>
@set-state {make, model: undefined}, ~> @refs.models.focus!
# on-focus :: Item -> String -> Void
on-focus: (item, reason) ~>
@set-state focused: true
# on-blur :: Item -> String -> Void
on-blur: (item, reason) !~>
@set-state focused:false
# on-enter :: Item -> Void
on-enter: (item) !~>
if typeof item == \undefined
alert 'you did not select any item'
style: if @state.focused then color: "#0099ff" else {}
# MODELS
React.create-element SimpleSelect,
ref: \models
placeholder: "Select a model"
options: (@state.models?[@state?.make?.label] ? []) |> map ~> label: it, value: it
value: @state.model
# disabled :: Boolean
disabled: typeof @state.make == \undefined
on-value-change: (model) ~> @set-state {model}
style: margin-top: 20, opacity: if [email protected] then 1 else 0.5
# get-initial-state :: a -> UIState
get-initial-state: ->
focused: false
make: undefined
makes: ["Bentley", "Cadillac", "Lamborghini", "Maserati", "Volkswagen"]
model: undefined
models:
Bentley: ["Arnage", "Azure", "Continental", "Corniche", "Turbo R"]
Cadillac: ["Allante", "Catera", "Eldorado", "Fleetwood", "Seville"]
Lamborghini: ["Aventador", "Countach", "Diablo", "Gallardo", "Murcielago"]
Maserati: ["Bitturbo", "Coupe", "GranTurismo", "Quattroporte", "Spyder"]
Volkswagen: ["Beetle", "Fox", "Jetta", "Passat", "Rabbit"]
render (React.create-element Form, null), mount-node | LiveScript | 4 | rodcope1/react-selectize-rodcope1 | public/examples/simple/EventListeners.ls | [
"Apache-2.0"
] |
{-# LANGUAGE CPP, EmptyDataDecls, TypeSynonymInstances, FlexibleInstances, MultiParamTypeClasses, FlexibleContexts #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Graphics.UI.FLTK.LowLevel.Base.RepeatButton
(
repeatButtonNew,
repeatButtonCustom
, drawRepeatButtonBase
, handleRepeatButtonBase
, resizeRepeatButtonBase
, hideRepeatButtonBase
, showWidgetRepeatButtonBase
-- * Hierarchy
--
-- $hierarchy
-- * Functions
--
-- $functions
)
where
#include "Fl_ExportMacros.h"
#include "Fl_Types.h"
#include "Fl_Repeat_ButtonC.h"
#include "Fl_WidgetC.h"
import C2HS hiding (cFromEnum, cFromBool, cToBool,cToEnum)
import Graphics.UI.FLTK.LowLevel.Fl_Types
import Graphics.UI.FLTK.LowLevel.Fl_Enumerations
import Graphics.UI.FLTK.LowLevel.Utils
import Graphics.UI.FLTK.LowLevel.Hierarchy
import Graphics.UI.FLTK.LowLevel.Dispatch
import qualified Data.Text as T
import Graphics.UI.FLTK.LowLevel.Base.Widget
{# fun Fl_OverriddenRepeat_Button_New_WithLabel as overriddenWidgetNewWithLabel' { `Int',`Int',`Int',`Int', `CString', id `Ptr ()'} -> `Ptr ()' id #}
{# fun Fl_OverriddenRepeat_Button_New as overriddenWidgetNew' { `Int',`Int',`Int',`Int', id `Ptr ()'} -> `Ptr ()' id #}
repeatButtonCustom ::
Rectangle -- ^ The bounds of this RepeatButton
-> Maybe T.Text -- ^ The RepeatButton label
-> Maybe (Ref RepeatButton -> IO ()) -- ^ Optional custom drawing function
-> Maybe (CustomWidgetFuncs RepeatButton) -- ^ Optional custom widget functions
-> IO (Ref RepeatButton)
repeatButtonCustom rectangle l' draw' funcs' =
widgetMaker
rectangle
l'
draw'
funcs'
overriddenWidgetNew'
overriddenWidgetNewWithLabel'
{# fun Fl_Repeat_Button_New as widgetNew' { `Int',`Int',`Int',`Int' } -> `Ptr ()' id #}
{# fun Fl_Repeat_Button_New_WithLabel as widgetNewWithLabel' { `Int',`Int',`Int',`Int', `CString'} -> `Ptr ()' id #}
repeatButtonNew :: Rectangle -> Maybe T.Text -> IO (Ref RepeatButton)
repeatButtonNew rectangle l' =
widgetMaker
rectangle
l'
Nothing
Nothing
overriddenWidgetNew'
overriddenWidgetNewWithLabel'
{# fun Fl_Repeat_Button_Destroy as widgetDestroy' { id `Ptr ()' } -> `()' supressWarningAboutRes #}
instance (impl ~ ( IO ())) => Op (Destroy ()) RepeatButtonBase orig impl where
runOp _ _ button = swapRef button $
\buttonPtr ->
widgetDestroy' buttonPtr >>
return nullPtr
{#fun Fl_Repeat_Button_deactivate as deactivate' { id `Ptr ()'} -> `()' supressWarningAboutRes #}
instance (impl ~ ( IO ())) => Op (Deactivate ()) RepeatButtonBase orig impl where
runOp _ _ button = withRef button (\p -> deactivate' p )
{# fun Fl_Repeat_Button_draw as drawSuper' { id `Ptr ()' } -> `()' supressWarningAboutRes #}
drawRepeatButtonBase :: Ref RepeatButtonBase -> IO ()
drawRepeatButtonBase repeatButton = withRef repeatButton $ \repeatButtonPtr -> drawSuper' repeatButtonPtr
{# fun Fl_Repeat_Button_handle as handleSuper' { id `Ptr ()',`Int' } -> `Int' #}
handleRepeatButtonBase :: Ref RepeatButtonBase -> Event -> IO (Either UnknownEvent ())
handleRepeatButtonBase repeatButton event = withRef repeatButton $ \repeatButtonPtr -> handleSuper' repeatButtonPtr (fromIntegral (fromEnum event)) >>= return . successOrUnknownEvent
{# fun Fl_Repeat_Button_resize as resizeSuper' { id `Ptr ()',`Int',`Int',`Int',`Int' } -> `()' supressWarningAboutRes #}
resizeRepeatButtonBase :: Ref RepeatButtonBase -> Rectangle -> IO ()
resizeRepeatButtonBase repeatButton rectangle =
let (x_pos, y_pos, width, height) = fromRectangle rectangle
in withRef repeatButton $ \repeatButtonPtr -> resizeSuper' repeatButtonPtr x_pos y_pos width height
{# fun Fl_Repeat_Button_hide as hideSuper' { id `Ptr ()' } -> `()' supressWarningAboutRes #}
hideRepeatButtonBase :: Ref RepeatButtonBase -> IO ()
hideRepeatButtonBase repeatButton = withRef repeatButton $ \repeatButtonPtr -> hideSuper' repeatButtonPtr
{# fun Fl_Repeat_Button_show as showSuper' { id `Ptr ()' } -> `()' supressWarningAboutRes #}
showWidgetRepeatButtonBase :: Ref RepeatButtonBase -> IO ()
showWidgetRepeatButtonBase repeatButton = withRef repeatButton $ \repeatButtonPtr -> showSuper' repeatButtonPtr
{# fun Fl_DerivedRepeat_Button_draw as draw'' { id `Ptr ()' } -> `()' #}
instance (impl ~ ( IO ())) => Op (Draw ()) RepeatButtonBase orig impl where
runOp _ _ repeatButton = withRef repeatButton $ \repeatButtonPtr -> draw'' repeatButtonPtr
{#fun Fl_DerivedRepeat_Button_handle as repeatButtonHandle' { id `Ptr ()', id `CInt' } -> `Int' #}
instance (impl ~ (Event -> IO (Either UnknownEvent ()))) => Op (Handle ()) RepeatButtonBase orig impl where
runOp _ _ repeatButton event = withRef repeatButton (\p -> repeatButtonHandle' p (fromIntegral . fromEnum $ event)) >>= return . successOrUnknownEvent
{# fun Fl_DerivedRepeat_Button_resize as resize' { id `Ptr ()',`Int',`Int',`Int',`Int' } -> `()' supressWarningAboutRes #}
instance (impl ~ (Rectangle -> IO ())) => Op (Resize ()) RepeatButtonBase orig impl where
runOp _ _ repeatButton rectangle = withRef repeatButton $ \repeatButtonPtr -> do
let (x_pos,y_pos,w_pos,h_pos) = fromRectangle rectangle
resize' repeatButtonPtr x_pos y_pos w_pos h_pos
{# fun Fl_DerivedRepeat_Button_show as show' { id `Ptr ()' } -> `()' #}
instance (impl ~ ( IO ())) => Op (ShowWidget ()) RepeatButtonBase orig impl where
runOp _ _ repeatButton = withRef repeatButton $ \repeatButtonPtr -> show' repeatButtonPtr
{# fun Fl_DerivedRepeat_Button_hide as hide' { id `Ptr ()' } -> `()' #}
instance (impl ~ ( IO ())) => Op (Hide ()) RepeatButtonBase orig impl where
runOp _ _ repeatButton = withRef repeatButton $ \repeatButtonPtr -> hide' repeatButtonPtr
-- $hierarchy
-- @
-- "Graphics.UI.FLTK.LowLevel.Base.Widget"
-- |
-- v
-- "Graphics.UI.FLTK.LowLevel.Base.Button"
-- |
-- v
-- "Graphics.UI.FLTK.LowLevel.Base.RepeatButton"
-- @
-- $functions
-- @
-- deactivate :: 'Ref' 'RepeatButtonBase' -> 'IO' ()
--
-- destroy :: 'Ref' 'RepeatButtonBase' -> 'IO' ()
--
-- draw :: 'Ref' 'RepeatButtonBase' -> 'IO' ()
--
-- handle :: 'Ref' 'RepeatButtonBase' -> 'Event' -> 'IO' ('Either' 'UnknownEvent' ())
--
-- hide :: 'Ref' 'RepeatButtonBase' -> 'IO' ()
--
-- resize :: 'Ref' 'RepeatButtonBase' -> 'Rectangle' -> 'IO' ()
--
-- showWidget :: 'Ref' 'RepeatButtonBase' -> 'IO' ()
-- @
| C2hs Haskell | 5 | ericu/fltkhs | src/Graphics/UI/FLTK/LowLevel/Base/RepeatButton.chs | [
"MIT"
] |
{-# LANGUAGE ForeignFunctionInterface #-}
--------------------------------------------------------------------------------
--
-- Module : Scan
-- Copyright : (c) 2009 Trevor L. McDonell
-- License : BSD
--
-- Apply a binary operator to an array similar to 'fold', but return a
-- successive list of values reduced from the left (or right).
--
--------------------------------------------------------------------------------
module Main where
#include "scan.h"
-- Friends
import C2HS hiding (newArray)
import Time
import RandomVector
-- System
import Control.Monad
import Control.Exception
import qualified Foreign.CUDA as CUDA
--------------------------------------------------------------------------------
-- Reference
--------------------------------------------------------------------------------
scanList :: (Num e, Storable e) => Vector e -> IO (Vector e)
scanList xs = do
bnds <- getBounds xs
xs' <- getElems xs
(t,zs') <- benchmark 100 (return (scanl1 (+) xs')) (return ())
putStrLn $ "List: " ++ shows (fromInteger (timeIn millisecond t`div`100)::Float) " ms"
newListArray bnds zs'
scanArr :: (Num e, Storable e) => Vector e -> IO (Vector e)
scanArr xs = do
bnds <- getBounds xs
zs <- newArray_ bnds
let idx = range bnds
(t,_) <- benchmark 100 (foldM_ (k zs) 0 idx) (return ())
putStrLn $ "Array: " ++ shows (fromInteger (timeIn millisecond t)/100::Float) " ms"
return zs
where
k zs a i = do
x <- readArray xs i
let z = x+a
writeArray zs i z
return z
--------------------------------------------------------------------------------
-- CUDA
--------------------------------------------------------------------------------
--
-- Include the time to copy the data to/from the storable array (significantly
-- faster than from a Haskell list)
--
scanCUDA :: Vector Float -> IO (Vector Float)
scanCUDA xs = do
bnds <- getBounds xs
zs <- newArray_ bnds
let len = rangeSize bnds
CUDA.allocaArray len $ \d_xs -> do
CUDA.allocaArray len $ \d_zs -> do
(t,_) <- flip (benchmark 100) CUDA.sync $ do
withVector xs $ \p -> CUDA.pokeArray len p d_xs
scanl1_plusf d_xs d_zs len
withVector zs $ \p -> CUDA.peekArray len d_zs p
putStrLn $ "CUDA: " ++ shows (fromInteger (timeIn millisecond t)/100::Float) " ms (with copy)"
(t',_) <- benchmark 100 (scanl1_plusf d_xs d_zs len) CUDA.sync
putStrLn $ "CUDA: " ++ shows (fromInteger (timeIn millisecond t')/100::Float) " ms (compute only)"
return zs
{# fun unsafe scanl1_plusf
{ withDP* `CUDA.DevicePtr Float'
, withDP* `CUDA.DevicePtr Float'
, `Int'
} -> `()' #}
where
withDP p a = CUDA.withDevicePtr p $ \p' -> a (castPtr p')
--------------------------------------------------------------------------------
-- Main
--------------------------------------------------------------------------------
main :: IO ()
main = do
dev <- CUDA.get
props <- CUDA.props dev
putStrLn $ "Using device " ++ show dev ++ ": " ++ CUDA.deviceName props
arr <- randomArr (1,100000) :: IO (Vector Float)
ref <- scanList arr
ref' <- scanArr arr
cuda <- scanCUDA arr
return ()
putStr "== Validating: "
verify ref ref' >>= \rv -> assert rv (return ())
verify ref cuda >>= \rv -> putStrLn $ if rv then "Ok!" else "INVALID!"
| C2hs Haskell | 5 | flowbox-public/cuda | examples/src/scan/Scan.chs | [
"BSD-3-Clause"
] |
export default {
skip_if_ssr: true,
html: `
<div>foo</div>
<div>0 has foo: true</div>
<div>foo</div>
<div>1 has foo: true</div>
<div>foo</div>
<div>2 has foo: true</div>
`
};
| JavaScript | 1 | Theo-Steiner/svelte | test/runtime/samples/binding-this-component-each-block/_config.js | [
"MIT"
] |
*** Settings ***
Suite Setup Run Tests ${EMPTY} standard_libraries/xml/element_should_exist_with_lxml.robot
Force Tags require-lxml
Resource xml_resource.robot
*** Test Cases ***
Get Element Count
${tc} = Check Test Case ${TESTNAME}
Check Log Message ${tc.kws[0].kws[0].msgs[0]} 0 elements matched 'nonex'.
Check Log Message ${tc.kws[1].kws[0].msgs[0]} 1 element matched 'another'.
Check Log Message ${tc.kws[2].kws[0].msgs[0]} 1 element matched '.'.
Check Log Message ${tc.kws[3].kws[0].msgs[0]} 4 elements matched './/child'.
Element Should Exist Passes When There Are One Or More Matches
${tc} = Check Test Case ${TESTNAME}
Check Log Message ${tc.kws[0].msgs[0]} 1 element matched 'another/child'.
Check Log Message ${tc.kws[1].msgs[0]} 3 elements matched 'child'.
Element Should Exist Fails When There Are No Matches
${tc} = Check Test Case ${TESTNAME}
Check Log Message ${tc.kws[0].msgs[0]} 0 elements matched 'nönëx'.
Element Should Exist With Custom Error Message
Check Test Case ${TESTNAME}
Element Should Not Exist Passes When There Are No Matches
${tc} = Check Test Case ${TESTNAME}
Check Log Message ${tc.kws[0].msgs[0]} 0 elements matched 'nonex'.
Element Should Not Exist Fails When There Is One Match
${tc} = Check Test Case ${TESTNAME}
Check Log Message ${tc.kws[0].msgs[0]} 1 element matched 'another/child'.
Element Should Not Exist Fails When There Are Multiple Matches
${tc} = Check Test Case ${TESTNAME}
Check Log Message ${tc.kws[0].msgs[0]} 4 elements matched './/child'.
Element Should Not Exist With Custom Error Message
Check Test Case ${TESTNAME}
| RobotFramework | 3 | phil-davis/robotframework | atest/robot/standard_libraries/xml/element_should_exist_with_lxml.robot | [
"ECL-2.0",
"Apache-2.0"
] |
<?php
/*
*
* Copyright 2015 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.
*
*/
// To generate the necessary proto classes:
// $ protoc --proto_path=../protos --php_out=. --grpc_out=.
// --plugin=protoc-gen-grpc=../../bins/opt/grpc_php_plugin
// ../protos/helloworld.proto
require dirname(__FILE__).'/vendor/autoload.php';
function greet($hostname, $name)
{
$client = new Helloworld\GreeterClient($hostname, [
'credentials' => Grpc\ChannelCredentials::createInsecure(),
]);
$request = new Helloworld\HelloRequest();
$request->setName($name);
list($response, $status) = $client->SayHello($request)->wait();
if ($status->code !== Grpc\STATUS_OK) {
echo "ERROR: " . $status->code . ", " . $status->details . PHP_EOL;
exit(1);
}
echo $response->getMessage() . PHP_EOL;
}
$name = !empty($argv[1]) ? $argv[1] : 'world';
$hostname = !empty($argv[2]) ? $argv[2] : 'localhost:50051';
greet($hostname, $name);
| PHP | 4 | arghyadip01/grpc | examples/php/greeter_client.php | [
"Apache-2.0"
] |
{
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Parser (
parseExpr,
) where
import Lexer
import Syntax
import Control.Monad.Except
}
%name expr
%tokentype { Token }
%monad { Except String } { (>>=) } { return }
%error { parseError }
%token
int { TokenNum $$ }
var { TokenSym $$ }
print { TokenPrint }
'=' { TokenEq }
%%
terms
: term { [$1] }
| term terms { $1 : $2 }
term
: var { Var $1 }
| var '=' int { Assign $1 $3 }
| print term { Print $2 }
{
parseError :: [Token] -> Except String a
parseError (l:ls) = throwError (show l)
parseError [] = throwError "Unexpected end of Input"
parseExpr :: String -> Either String [Expr]
parseExpr input =
let tokenStream = scanTokens input in
runExcept (expr tokenStream)
}
| Yacc | 5 | aavogt/wiwinwlh | src/24-parsing/happy/Parser.y | [
"BSD-Source-Code"
] |
[
(statement)
(blank_node_property_list)
(collection)
] @indent
[
"]"
")"
] @branch
| Scheme | 0 | yzia2000/nvim-treesitter | queries/turtle/indents.scm | [
"Apache-2.0"
] |
module.exports (cg) = cg.term {
constructor (name) =
self.is identifier = true
self.identifier = name
arguments () = nil
}
| PogoScript | 1 | Sotrek/Alexa | Alexa_Cookbook/Workshop/StatePop/4_IOT/tests/node_modules/aws-sdk/node_modules/cucumber/node_modules/pogo/lib/terms/identifier.pogo | [
"MIT"
] |
:host {
background:red;
padding:1em;
display:block;
font-size:20px;
color:white;
}
.inner-container {
width:432px;
font-weight:bold;
}
| CSS | 3 | coreyscherbing/angular | modules/playground/src/relative_assets/app/style.css | [
"MIT"
] |
body { font-family : Courier; background: #000; color: #0f0; }
li { list-style:none;}
ul { padding:0;}
#sidebar { position:absolute; left:520px; top:20px; padding : 10px;}
| CSS | 2 | henryqdineen/RxJS | examples/worzone/index.css | [
"Apache-2.0"
] |
<?php
$this->layout(
'minimal',
[
'title' => __('Forgot Password'),
'page_class' => 'login-content',
]
);
?>
<div class="public-page">
<div class="card">
<div class="card-body">
<div class="row mb-4">
<div class="col-sm">
<h2 class="card-title mb-0 text-center"><?=__('Forgot Password')?></h2>
</div>
</div>
<p>
<?=__('This installation\'s administrator has not configured this functionality.')?>
</p>
<p>
<?=__(
'Contact an administrator to reset your password following the instructions in our documentation:'
)?>
</p>
<a class="btn btn-primary btn-block mt-2 mb-3" href="https://docs.azuracast.com/en/administration/users#resetting-an-account-password" target="_blank">
<?=__('Password Reset Instructions')?>
</a>
</div>
</div>
</div>
| HTML+PHP | 3 | lamasbr/AzuraCast | templates/frontend/account/forgot_disabled.phtml | [
"Apache-2.0"
] |
/* Copyright (c) 2017-2019 Netronome Systems, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_32=0x000000bb
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_33=0xccddeeff
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_34=0xc0ffee
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_35=0xdeadbeef
#include "pkt_vlan_ipv4_udp_x84.uc"
#include <global.uc>
#include "actions_harness.uc"
#include <actions.uc>
#include "single_ctx_test.uc"
.reg expected_pv_broadcast
.reg pkt_len
move(expected_pv_broadcast, 0x02a<<BF_L(PV_VLAN_ID_bf))
pv_get_length(pkt_len, pkt_vec)
local_csr_wr[T_INDEX, (32 * 4)]
immed[__actions_t_idx, (32 * 4)]
alu[__actions_t_idx, t_idx_ctx, OR, &$__actions[0], <<2]
nop
local_csr_wr[T_INDEX, __actions_t_idx]
nop
nop
nop
test_assert_equal($__actions[0], 0x000000bb)
test_assert_equal($__actions[1], 0xccddeeff)
__actions_veb_lookup(pkt_vec, discards_filter_mac#)
//test_assert_equal(pkt_vec[PV_VLAN_wrd], expected_pv_broadcast)
test_assert_equal(*$index++, 0xc0ffee)
test_assert_equal(*$index++, 0xdeadbeef)
test_pass()
discards_filter_mac#:
test_fail()
PV_SEEK_SUBROUTINE#:
pv_seek_subroutine(pkt_vec)
| UnrealScript | 3 | pcasconnetronome/nic-firmware | test/datapath/actions_classify_mac_pf_match_vlan_ipv4_udp_x84_test.uc | [
"BSD-2-Clause"
] |
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Victor Gomes <[email protected]>
Date: Wed, 22 Sep 2021 17:57:25 +0200
Subject: Skip deoptimization data size
Sparkplug code does not contain deoptimization data.
Bug: v8:12258
Change-Id: Ieb9f7f1469e00677d9533c6f05b17c80ef06b9d6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3175820
Commit-Queue: Victor Gomes <[email protected]>
Commit-Queue: Camillo Bruni <[email protected]>
Auto-Submit: Victor Gomes <[email protected]>
Reviewed-by: Camillo Bruni <[email protected]>
Cr-Commit-Position: refs/heads/main@{#76997}
diff --git a/src/objects/code-inl.h b/src/objects/code-inl.h
index 48e5810f14f9f69b0cb245fb24353e4bb2120e0e..4cbb1595c964ae352a15350a640aa3be0778ac15 100644
--- a/src/objects/code-inl.h
+++ b/src/objects/code-inl.h
@@ -394,7 +394,9 @@ int Code::MetadataSize() const {
int Code::SizeIncludingMetadata() const {
int size = CodeSize();
size += relocation_info().Size();
- size += deoptimization_data().Size();
+ if (kind() != CodeKind::BASELINE) {
+ size += deoptimization_data().Size();
+ }
return size;
}
| Diff | 3 | tylerkahn/electron | patches/v8/baseline_skip_deoptimization_data_size.patch | [
"MIT"
] |
#foo(
_bar()'void
)
bar #foo() { this }
b : bar() | Objective-J | 0 | justinmann/sj | tests/private4.sj | [
"Apache-2.0"
] |
package cases;
class Issue7935 extends DisplayTestCase {
/**
class Main {
public static function main() {
trace({-1-};{-2-}
}
}
**/
function test1() {
hasParserError("Expected expression or )");
}
/**
class Main {
public static function main() {
trace(0
{-1-}}{-2-}
}
**/
function test2() {
hasParserError("Expected , or )");
}
/**
class Main {
public static function main() {
trace(0,
{-1-}}{-2-}
}
**/
function test3() {
hasParserError("Expected expression");
}
function hasParserError(message:String) {
arrayEq([
{
kind: DKParserError,
range: diagnosticsRange(pos(1), pos(2)),
severity: Error,
args: message
}
], diagnostics());
}
}
| Haxe | 4 | Alan-love/haxe | tests/display/src/cases/Issue7935.hx | [
"MIT"
] |
module DceRpc;
export {
redef enum Log::ID += { LOG };
type Info: record {
## Timestamp for when the event happened.
ts: time &log;
## Unique ID for the connection.
uid: string &log;
## The connection's 4-tuple of endpoint addresses/ports.
id: conn_id &log;
## UUID of the binding interface.
int_uuid: string &log &optional;
## Description for the UUID of the binding interface.
int_uuid_desc: string &log &optional;
## opnum seen in the call.
opnum: count &log &optional;
## Call message type.
## Either REQUEST or RESPONSE.
msg_type: string &log &optional;
## Length of the stub data in the call.
stub_len: count &log &optional;
};
## Event that can be handled to access the dcerpc record as it is sent on
## to the logging framework.
global log_dcerpc: event(rec: Info);
## Flag to ignore interface UUID values specified in ignore_int_uuid_set.
const ignore_int_uuid_bool = T &redef;
## Set of interface UUID values to ignore ( if ignore_int_uuid_bool is set to true ).
const ignore_int_uuid_set = set("e1af8308-5d1f-11c9-91a4-08002b14a0fa") &redef;
}
redef record connection += {
dcerpc: Info &optional;
};
event bro_init() &priority=5
{
Log::create_stream(DceRpc::LOG, [$columns=DceRpc::Info, $ev=log_dcerpc]);
}
function set_session(c: connection)
{
if ( ! c?$dcerpc )
{
add c$service["dce-rpc"];
c$dcerpc = [$ts=network_time(),$id=c$id,$uid=c$uid];
}
}
function write_session(c: connection, ts: time, msg_type: string, opnum: count, stub_len: count)
{
local rec = c$dcerpc;
rec$ts = ts;
rec$msg_type = msg_type;
rec$opnum = opnum;
rec$stub_len = stub_len;
Log::write(DceRpc::LOG, rec);
}
event dce_rpc_bind(c: connection, uuid: string) &priority=5
{
if ( ignore_int_uuid_bool )
if ( uuid in ignore_int_uuid_set )
return;
set_session(c);
c$dcerpc$int_uuid = uuid;
if ( uuid in DceRpc::uuid_map )
c$dcerpc$int_uuid_desc = DceRpc::uuid_map[uuid];
}
event dce_rpc_request(c: connection, opnum: count, stub: string) &priority=5
{
if ( c?$dcerpc )
{
if ( ! c$dcerpc?$int_uuid )
return;
write_session(c,network_time(),"REQUEST",opnum,|stub|);
}
}
event dce_rpc_response(c: connection, opnum: count, stub: string) &priority=5
{
if ( c?$dcerpc )
{
if ( ! c$dcerpc?$int_uuid )
return;
write_session(c,network_time(),"RESPONSE",opnum,|stub|);
}
}
| Bro | 4 | LaudateCorpus1/cs-bro | bro-scripts/dce-rpc/main.bro | [
"BSD-2-Clause"
] |
package com.blankj.base_transform
import com.android.build.api.transform.*
import com.android.build.gradle.AppExtension
import com.android.build.gradle.AppPlugin
import com.android.build.gradle.internal.pipeline.TransformManager
import com.blankj.base_transform.util.LogUtils
import com.blankj.base_transform.util.ZipUtils
import groovy.io.FileType
import org.apache.commons.io.FileUtils
import org.gradle.api.Plugin
import org.gradle.api.Project
import java.lang.reflect.ParameterizedType
abstract class BaseTransformPlugin<T> implements Plugin<Project>, BaseTransformCallback<T> {
Project mProject
T getExt() {
return mProject.getExtensions().getByName(getPluginName())
}
@Override
void apply(Project project) {
if (project.plugins.hasPlugin(AppPlugin)) {
mProject = project
LogUtils.init(project)
log('project(' + project.toString() + ') apply ' + getPluginName() + ' gradle plugin!')
project.extensions.create(getPluginName(), getGenericClass())
def android = project.extensions.getByType(AppExtension)
android.registerTransform(new BaseTransform())
}
}
Class<T> getGenericClass() {
return ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]
}
class BaseTransform extends Transform {
@Override
String getName() {
return "${getPluginName()}Transform"
}
@Override
Set<QualifiedContent.ContentType> getInputTypes() {
return TransformManager.CONTENT_CLASS
}
@Override
Set<? super QualifiedContent.Scope> getScopes() {
return TransformManager.SCOPE_FULL_PROJECT
}
@Override
boolean isIncremental() {
return false
}
@Override
void transform(TransformInvocation transformInvocation)
throws TransformException, InterruptedException, IOException {
super.transform(transformInvocation)
log(getName() + " started")
long stTime = System.currentTimeMillis()
def inputs = transformInvocation.getInputs()
def referencedInputs = transformInvocation.getReferencedInputs()
def outputProvider = transformInvocation.getOutputProvider()
def isIncremental = transformInvocation.isIncremental()
outputProvider.deleteAll()
log("${getPluginName()}Extension: $ext")
onScanStarted()
inputs.each { TransformInput input ->
input.directoryInputs.each { DirectoryInput dirInput ->// 遍历文件夹
File dir = dirInput.file
File dest = outputProvider.getContentLocation(
dirInput.name,
dirInput.contentTypes,
dirInput.scopes,
Format.DIRECTORY
)
FileUtils.copyDirectory(dir, dest)
log("scan dir: ${dirInput.file} -> $dest")
scanDir(dest)
}
input.jarInputs.each { JarInput jarInput ->// 遍历 jar 文件
File jar = jarInput.file
def jarName = jarInput.name
def dest = outputProvider.getContentLocation(
jarName,
jarInput.contentTypes,
jarInput.scopes,
Format.JAR
)
FileUtils.copyFile(jar, dest)
if (isIgnoreScan(jarInput)) {
log("jump jar: $jarName -> $dest")
return
}
log("scan jar: $jarName -> $dest")
scanJar(dest)
}
}
onScanFinished()
log(getName() + " finished: " + (System.currentTimeMillis() - stTime) + "ms")
}
void scanJar(File jar) {
File tmp = new File(jar.getParent(), "temp_" + jar.getName())
List<File> unzipFile = ZipUtils.unzipFile(jar, tmp)
if (unzipFile != null && unzipFile.size() > 0) {
scanDir(tmp, jar)
FileUtils.forceDelete(tmp)
}
}
void scanDir(File root) {
scanDir(root, root)
}
void scanDir(File dir, File originScannedJarOrDir) {
if (!dir.isDirectory()) return
String rootPath = dir.getAbsolutePath()
if (!rootPath.endsWith(BaseTransformConfig.FILE_SEP)) {
rootPath += BaseTransformConfig.FILE_SEP
}
dir.eachFileRecurse(FileType.FILES) { File file ->
def fileName = file.name
if (!fileName.endsWith('.class')
|| fileName.startsWith('R$')
|| fileName == 'R.class'
|| fileName == 'BuildConfig.class') {
return
}
def filePath = file.absolutePath
def packagePath = filePath.replace(rootPath, '')
def className = packagePath.replace(BaseTransformConfig.FILE_SEP, ".")
// delete .class
className = className.substring(0, className.length() - 6)
scanClassFile(file, className, originScannedJarOrDir)
}
}
}
void log(Object obj) {
LogUtils.l(getPluginName(), obj)
}
} | Groovy | 5 | YashBangera7/AndroidUtilCode | plugin/lib/base-transform/src/main/java/com/blankj/base_transform/BaseTransformPlugin.groovy | [
"Apache-2.0"
] |
/dev/rrp3:
16693 bwk me
6 aed
6 cpb
5 evp
4 ber
4 men
4 mitch
3 ast
3 jfr
3 lax
3 nel
2 blue
2 jfk
2 njas
1 122sec
1 ddwar
1 gopi
1 jk
1 learn
1 low
1 nac
1 sidor
| Eiffel | 0 | Crestwave/goawk | testdata/output/t.e | [
"MIT"
] |
%TITLE%
RUC 990728/0000F000 coq
LEVEL HGHT TEMP DWPT WDIR WSPD
-------------------------------------------------------------------
%RAW%
966.37, 377.33, 24.14, 18.04, 180.29, 6.72
950.00, 527.23, 23.10, 17.20, 186.84, 10.78
925.00, 759.23, 21.88, 14.55, 199.80, 16.99
900.00, 996.72, 20.18, 13.66, 209.45, 22.71
875.00, 1239.72, 18.73, 13.30, 221.90, 25.04
850.00, 1488.64, 16.94, 13.81, 232.17, 26.25
825.00, 1742.68, 15.05, 12.87, 247.94, 26.12
800.00, 2003.16, 14.15, 7.84, 259.77, 27.88
775.00, 2271.16, 12.34, 6.96, 267.49, 28.01
750.00, 2545.16, 10.19, 7.39, 279.40, 28.04
725.00, 2826.65, 8.38, 2.89, 286.43, 28.85
700.00, 3115.61, 6.63, -6.10, 295.16, 31.20
675.00, 3413.58, 4.63, -8.40, 299.35, 34.64
650.00, 3720.06, 2.48, -10.15, 299.91, 37.68
625.00, 4036.03, 0.18, -11.85, 299.53, 40.64
600.00, 4361.03, -2.17, -13.67, 299.88, 43.86
575.00, 4697.95, -4.56, -15.86, 299.00, 46.37
550.00, 5045.51, -7.11, -18.36, 297.48, 48.60
525.00, 5406.95, -9.66, -22.44, 295.75, 50.08
500.00, 5781.48, -12.36, -27.08, 293.68, 52.06
475.00, 6171.43, -15.06, -31.78, 290.79, 57.25
450.00, 6577.48, -17.66, -34.04, 288.43, 60.56
425.00, 7003.40, -20.16, -34.19, 286.40, 60.67
400.00, 7449.88, -22.96, -34.49, 284.84, 60.06
375.00, 7919.96, -26.31, -34.15, 285.72, 59.88
350.00, 8414.88, -29.76, -35.74, 287.44, 60.87
325.00, 8939.41, -33.07, -40.23, 290.24, 65.15
300.00, 9497.86, -36.53, -45.18, 293.20, 74.13
275.00, 10096.23, -40.07, -49.36, 293.23, 84.37
250.00, 10740.76, -43.86, -54.60, 291.11, 92.37
225.00, 11443.69, -47.95, -58.15, 288.73, 100.65
200.00, 12213.69, -52.09, -62.13, 287.07, 104.78
175.00, 13068.33, -55.94, -66.77, 285.79, 101.28
150.00, 14043.88, -57.68, -70.86, 283.35, 83.57
125.00, 15201.94, -56.56, -69.04, 285.37, 57.01
100.00, 16647.74, -56.52, -65.44, 286.92, 38.34
75.00, 18511.71, -57.68, -70.86, 283.35, 83.57
50.00, 21138.82, -57.68, -70.86, 283.35, 83.57
%END%
----- Parcel Information-----
*** MU PARCEL IN LOWEST 300mb ***
LPL: P=966 T=75F Td=64F
CAPE: 1423 J/kg
CINH: -68 J/kg
LI: -7 C
LI(300mb): -3 C
3km Cape: 53 J/kg
NCAPE: 0.17 m/s2
LCL: 883mb 781m
LFC: 770mb 1948m
EL: 250mb 10363m
MPL: 145mb 13882m
All heights AGL
----- Moisture -----
Precip Water: 1.26 in
Mean W: 11.8 g/Kg
----- Lapse Rates -----
700-500mb 19 C 7.3 C/km
850-500mb 31 C 7.3 C/km
| Coq | 3 | ebaals/Thesis | sharppy/databases/sars/supercell/99072800f0.coq | [
"BSD-3-Clause"
] |
#!/bin/bash
# Copyright Istio 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.
set -x
set -e
WD=$(dirname "$0")
WD=$(cd "$WD"; pwd)
ROOT=$(dirname "$WD")
MANIFESTS_DIR="${ROOT}/../manifests"
function update_branch() {
local FROM="${1}"
local TO="${2}"
if [ "${FROM}" != "${TO}" ]; then
echo "Updating version for branch ${TO}..."
# Update version string in docs.
sed -i "s|blob/${FROM}|blob/${TO}|g" "${ROOT}"/ARCHITECTURE.md
sed -i "s|blob/${FROM}|blob/${TO}|g" "${ROOT}"/README.md
# Update tag for building profiles.
find "${MANIFESTS_DIR}"/profiles -type f -exec sed -i "s/tag: ${FROM}-latest-daily/tag: ${TO}-latest-daily/g" {} \;
# Update tag for testdata.
find "${ROOT}"/cmd/mesh/testdata -type f -exec sed -i "s/tag: ${FROM}-latest-daily/tag: ${TO}-latest-daily/g" {} \;
find "${ROOT}"/pkg/values/testdata -type f -exec sed -i "s/tag: ${FROM}-latest-daily/tag: ${TO}-latest-daily/g" {} \;
# Update operator version.
find "${ROOT}"/version -type f -exec sed -r "s/[0-9]+\.[0-9]+\.[0-9]+/${OPERATOR_VERSION}/g" {} \;
fi
}
FROM_BRANCH=${FROM_BRANCH:-master}
CURRENT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
SHORT_VERSION=${CURRENT_BRANCH//release-/}
[[ ${SHORT_VERSION} =~ ^[0-9]+\.[0-9]+ ]] && SHORT_VERSION=${BASH_REMATCH[0]}
PATCH_VERSION=${PATCH_VERSION:-0}
OPERATOR_VERSION="${SHORT_VERSION}.${PATCH_VERSION}"
update_branch "${FROM_BRANCH}" "${CURRENT_BRANCH}"
| Shell | 5 | rveerama1/istio | operator/scripts/run_update_branch.sh | [
"Apache-2.0"
] |
// check-pass
// pretty-expanded FIXME #23616
#[deny(dead_code)]
pub enum Foo {
Bar {
baz: isize
}
}
fn main() { }
| Rust | 3 | Eric-Arellano/rust | src/test/ui/issues/issue-14837.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
{
$1 = "test"
print $0
}
| Awk | 0 | Crestwave/goawk | testdata/gawk/rebuild.awk | [
"MIT"
] |
/*
Copyright © 2011-2013 MLstate
This file is part of Opa.
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.
*/
/**
* Comparison
*/
import stdlib.core.map
/**
* {1 About this module}
*
* This module implements comparison using runtime type.
*
* The implementation separate matching type and value to provide efficient
* comparison.
*
* {1 Where should I start ?}
*
* {1 What if I need more?}
*/
/*
* {1 Types defined in this module}
*/
@private
type input = external
@private
type P.implementation('a) = P.postenv,'a,'a->Order.comparison
@private
type P.compare('a) = 'a,'a->Order.comparison
@private
type P.postenv = llarray(P.implementation(input))
@private
type P.preenv = {entries:list(P.entry(input)) next_index:int}
@private
type P.key ={
name : string
args : list(OpaType.ty)
}
/**
* [ty : P.key]
* The type for the entry
*
* [implementation : option(P.implementation('a))]
* The implementation if already known (during type comparison calculation
* implementation is not known)
*
* [postenv_i : option(int)]
* If the unknown implementation need to be, it is affected an index in the
* env_postmatch_ty, e.g. recursion
*/
@private
type P.entry('a) = {
ty : P.key
implementation : option(P.implementation('a))
postenv_i : option(int)
}
@private
type Record.patterns_indexes = external
@private
type Record.fields_indexes = external
@private
type Record.field_index = external
/**
* {1 Interface}
*/
@both_implem // to duplicate caches
Compare = {{
@private
`@` = LowLevelArray.get
@private @expand
`&&&`(a,b) = if a then {eq} else b
@private @expand
`|||`(a,b) = a=a if a=={eq} then b else a
@private P = ComparePrivate
@private Record = ComparePrivate.Record
compare = @nonexpansive(
@unsafe_cast(
compare_front(@typeval('a)): input,input-> Order.comparison
): 'a,'a-> Order.comparison
)
compare_ty = compare_prematch_ty(@typeval(OpaType.ty)):OpaType.ty,OpaType.ty->Order.comparison
order_ty = Order.make(@unsafe_cast(compare_ty)):order(OpaType.ty,Order.default)
@workable
equal_ty(a,b) = ComparePrivate.equal_ty(a,b)
@private compare_int_postenv_(_, a,b) = compare_int( a,b)
@private compare_float_postenv_(_, a,b) = compare_float( a,b)
@private compare_string_postenv_(_,a,b) = compare_string(a,b)
/** Workaround for bad definition of @unsafe_cast */
@private compare_int_postenv = @nonexpansive(Magic.id(compare_int_postenv_) : P.implementation)
@private compare_float_postenv = @nonexpansive(Magic.id(compare_float_postenv_) :P.implementation)
@private compare_string_postenv = @nonexpansive(Magic.id(compare_string_postenv_) :P.implementation)
@private compare_int = @nonexpansive(Magic.id(@toplevel.compare_int) :'a,'a->Order.comparison)
@private compare_float = @nonexpansive(Magic.id(@toplevel.compare_float) :'a,'a->Order.comparison)
@private compare_string = @nonexpansive(Magic.id(@toplevel.compare_string) :'a,'a->Order.comparison)
@private always_equal_postenv(_,_,_) = {eq}
@private always_not_equal_postenv(_,_,_) = {neq}
// TODO us something faster than a map
@private cache_ty = {{
compare_lty(lty1,lty2) =
match lty1
[hd1|tl1] ->
match lty2
[hd2|tl2] -> compare_ty(hd1,hd2) ||| compare_lty(tl1,tl2) // TODO PATH
[] -> {lt}
end
[] ->
match lty2
[] -> {eq}
_ -> {gt}
end
compare_key(a:P.key,b:P.key) = compare_string(a.name,b.name) ||| compare_lty(a.args,b.args)
order_key = Order.make(@unsafe_cast(compare_key)):order(P.key,Order.default)
TyMap = Map_make(order_key)
cache = Mutable.make(TyMap.empty):Mutable.t(map(P.key,(P.compare(input))))
get(ty) = TyMap.get(ty,cache.get())
add(ty,cmp) = cache.set(TyMap.add(ty,cmp,cache.get()))
}}
/*
Return the comparison function for constant type as fast as possible,
Remove noop encapsulation of the type
Cache top type for comparison (other deeper name are locally cached by the
compare_prematch_ty
The goal is that the cache contains only type that are compared by compare
and nothing else (to minimize time of cache access)
*/
@private
compare_front(ty) =
match ty
{TyConst = c} -> match c
{TyInt} -> @unsafe_cast(compare_int)
{TyFloat} -> @unsafe_cast(compare_float)
{TyString} -> @unsafe_cast(compare_string)
end
{TyName_args = args; TyName_ident = ident} as ty ->
key = P.key(ident,args)
cache_ty.get(key)
?
cmp = compare_prematch_ty(ty)
do cache_ty.add(key,cmp)
cmp
{TyForall_quant = _; TyForall_body = impl} -> compare_front(impl)
_ -> compare_prematch_ty(ty)
@private
@expand
field_ty_to_field(f)=OpaValue.Record.field_of_name(f.label)?error("")
@private fields_ty_to_fields(fields) = LowLevelArray.mapi(fields)(_i,f->field_ty_to_field(f)):llarray(Record.field)
@private
compare_prematch_ty(original_ty) =
// do debug(->"CMP PREMATCH")
error_ty(ty) = error("Comparing {OpaType.to_pretty(original_ty)} is impossible.\n" ^
"Because contains a value of type {OpaType.to_pretty(ty)}.")
/* For record and sum, take values and fields */
rec record_gen(fields_ty,fields,fields_indexes,preenv) =
match LowLevelArray.size(fields)
0 -> (always_equal_postenv,preenv)
/* the following optimization is important and should be extended */
1 -> // sum case record with no information have already been compared physically
// so it s not necessary to short cut with always_equal_postenv for void empty field
(field_cmp,preenv) = aux((fields_ty@0).ty,preenv)
field_index = Record.field_index(fields_indexes,fields@0)
(Record.compare_field(field_index,field_cmp, _, _, _),preenv)
2 -> (field_cmp0,preenv) = aux((fields_ty@0).ty,preenv)
(field_cmp1,preenv) = aux((fields_ty@1).ty,preenv)
field_index0 = Record.field_index(fields_indexes,fields@0)
field_index1 = Record.field_index(fields_indexes,fields@1)
((postenv,a,b->
Record.compare_field(field_index0, field_cmp0, postenv, a, b)
||| Record.compare_field(field_index1, field_cmp1, postenv, a, b) )
,preenv)
/* feel free to add more optimized cases */
n ->
(fields_cmp,preenv) = LowLevelArray.fold_mapi(fields_ty,preenv)(_i,x,preenv->
aux(x.ty,preenv)
) // passer aux arrays
fields_index = LowLevelArray.mapi(fields)(_i,field-> Record.field_index(fields_indexes,field))
cmp=Record.compare_fields(n,fields_index,fields_cmp)
(cmp,preenv)
and record(fields_ty,preenv) =
fields = fields_ty_to_fields(fields_ty)
fields_indexes = fields |> Record.fields_indexes
record_gen(fields_ty,fields,fields_indexes,preenv)
/* Perhaps here it's problematics : it depends of the order of sum */
and sum(col,preenv)=
col_a = LowLevelArray.of_list_mapi(col)(_i,l->LowLevelArray.of_list(l)) : llarray(llarray(OpaType.field))
n = LowLevelArray.size(col_a)
match n
| 1 -> record(col_a@0,preenv)
| _ ->
fields = LowLevelArray.mapi(col_a)(_i,row->fields_ty_to_fields(row))
fields_indexes = LowLevelArray.mapi(fields)(_i,fields-> Record.fields_indexes(fields))
patterns_indexes = Record.patterns_indexes(fields_indexes) // O(1)
(cmps,preenv) = LowLevelArray.fold_mapi(col_a,preenv)(i,fields_ty,preenv->record_gen(fields_ty,fields@i,fields_indexes@i,preenv))
cmp(postenv,a,b)=
if a === b then {eq} else
match ComparePrivate.Record.compare_structure(patterns_indexes,a,b)
-2 -> {lt}
-1 -> {gt}
i -> (cmps@i)(postenv,a,b)
end
(cmp,preenv)
/** named type can be in tree state in preenv
absent => need to generate something
present but not known => need to call the futur implementation from postenv
present and known => directly use implementation of preenv
*/
and named(ident,args,preenv) =
key = P.key(ident,args)
match P.get_entry(key,preenv)
/* no entry => need to calculate it
and register it in preenv */
{none} ->
preenv = P.add_entry(key,preenv)
ty_impl = OpaType.type_of_name(ident, args)
(cmp,preenv) = aux(ty_impl,preenv)
preenv=P.update_implementation(key,cmp,preenv)
(cmp,preenv)
{some=entry} ->
match entry.implementation
/* implementation is already being calculated (i.e. recursive type) */
{none} ->
(preenv,i) = P.need_env_postmatch(key,preenv)
cmp=(postenv:P.postenv,a,b->
(postenv@i)(postenv,a,b))
(cmp,preenv)
/* entry is available */
{some=cmp} -> (cmp,preenv)
end
and custom(comparator,args,preenv) =
nargs = List.length(args)
#<Ifstatic:OPA_CLOSURE>
match nargs with
| 0 -> ((_postenv,a,b -> comparator(a,b)), preenv)
| _ ->
(_args_cmp,preenv) = List.fold_map(aux,args,preenv)
cmp(_postenv,a,b)=
f = match nargs with
| 0 -> @unsafe_cast(comparator)
| _ ->
clos_arg = OpaValue.Closure.Args.create(nargs)
do List.iteri(
(i, x -> OpaValue.Closure.Args.set(clos_arg, i, x)
), args)
OpaValue.Closure.apply(@unsafe_cast(comparator), clos_arg)
f(a,b)
(cmp,preenv)
#<Else>
match nargs with
| 0 -> ((_postenv,a,b -> comparator(a,b)), preenv)
| _ -> @fail("Custom comparison is not implemented for cases where List.length(args) > 0 in non closure mode")
#<End>
and lazy_error(ty,preenv)=
cmp(_,_,_) = error_ty(ty)
(cmp,preenv)
// TODO call immediate_error in current lazy_error case that are always accessed (not cover by a sum type)
and _immediate_error(ty) = error_ty(ty)
/* Main aux function ************************/
and aux(ty,preenv) =
// do debug(->"AUX TY={ty}")
match ty with
/* Basic case *****************************/
/* ordered for speed */
{TyConst = c} ->
cmp = match c
{TyInt} -> @unsafe_cast(compare_int_postenv)
{TyFloat} -> @unsafe_cast(compare_float_postenv)
{TyString} -> @unsafe_cast(compare_string_postenv)
end
(cmp, preenv)
/* Record case ****************************/
{TyRecord_row = row} -> record(LowLevelArray.of_list(row),preenv)
{TySum_col = col}
{TySum_col = col; TySum_colvar = _} -> sum(col,preenv)
/* Named case *****************************/
{TyName_args = args; TyName_ident = ident} ->
match (%%BslValue.MagicContainer.compare_get%%)(ident) with
{none} -> named(ident,args,preenv)
{some = comparator} -> custom(comparator,args,preenv)
end
/* Indirection cases ***********************/
{TyForall_quant = _; TyForall_body = impl} -> aux(impl,preenv)
/* Maybe error case if called *************/
{TyRecord_row = _; TyRecord_rowvar = _}
{TyVar = _} -> lazy_error(ty,preenv)
/* Unimplemented case *********************/
{TyArrow_params = _; TyArrow_res = _} -> (always_not_equal_postenv,preenv)
/* Error case *****************************/
{TyAbstract} -> lazy_error(ty,preenv)
(cmp,preenv) = aux(original_ty,P.empty_preenv)
postenv = P.postenv_i(preenv)
@unsafe_cast(cmp(postenv,_,_)):'a,'a->Order.comparison
}}
@private ComparePrivate = {{
@private
`@` = LowLevelArray.get
@private @expand
`|||`(a,b) = if a=={eq} then b else a
equal_lty(l1,l2) = l1 === l2 || match List.for_all2(equal_ty,l1,l2) {result=b} -> b _ -> false
equal_field(f1:OpaType.field,f2:OpaType.field) = f1.label==f2.label && equal_ty(f1.ty,f2.ty)
equal_fields(l1,l2) = l1 === l2 || match List.for_all2(equal_field,l1,l2) {result=b} -> b _ -> false
equal_sum(s1,s2) = s1 == s2 || match List.for_all2(equal_fields,s1,s2) {result=b} -> b _ -> false
/** basic implementation to bootstrap comparison
must be fast so it does not assume any optimisation of the backend */
equal_ty(ty1:OpaType.ty,ty2:OpaType.ty) =
ty1 === ty2 ||
match ty1
/* Basic case *****************************/
/* ordered for speed */
{TyConst = c1 } -> // constant sharing probably make the remaining useless
match ty2
{TyConst = c2 } ->
c1 === c2 ||
match c1
{TyInt} -> match c2 {TyInt} -> true _ -> false end
{TyString} -> match c2 {TyString} -> true _ -> false end
{TyFloat} -> match c2 {TyFloat} -> true _ -> false end
end
_ -> false
end
/* Named case *****************************/
{TyName_args = args1; TyName_ident = ident1} -> match ty2 {TyName_args = args2; TyName_ident = ident2} -> ident1==ident2 && equal_lty(args1,args2) _ -> false end
/* Record case ****************************/
{TyRecord_row = row1}{TyRecord_row = row1; TyRecord_rowvar = _}->
match ty2 {TyRecord_row = row2} {TyRecord_row = row2; TyRecord_rowvar = _} -> equal_fields(row1,row2) _ -> false end
{TySum_col = col1}{TySum_col = col1; TySum_colvar = _} ->
match ty2 {TySum_col = col2}{TySum_col = col2; TySum_colvar = _} -> equal_sum(col1,col2) _ -> false end
/* Indirection cases ***********************/
{TyForall_quant = _; TyForall_body = impl1} -> match ty2 {TyForall_quant = _; TyForall_body = impl2} -> equal_ty(impl1,impl2) _ -> false end
{TyVar = _} -> match ty2 {TyVar = _} -> true _ -> false end // ??
{TyArrow_params = p1; TyArrow_res = r1} -> match ty2 {TyArrow_params = p2; TyArrow_res = r2} -> equal_ty(r1,r2) && equal_lty(p1,p2) _-> false end
{TyAbstract} -> false
_ -> false
empty_preenv = {next_index=0 entries=[]}
/* Key construction */
key(name,args)= ~{name args}:P.key
/* Entry construction */
entry(key) = {ty=key implementation=none postenv_i=none} : P.entry
key_eq(k1:P.key,k2:P.key) = k1.name==k2.name && equal_lty(k1.args,k2.args)
// do something faster, '==' use slow comparison
entry_key_eq(k1:P.key,e2:P.entry) = key_eq(k1,e2.ty)
/** Change the implementation associated to a key */
update_implementation(key,implem:P.implementation(input),preenv:P.preenv) =
// do debug(->"try update_implementation {key}")
upif(v:P.entry) =
if key_eq(v.ty,key) then
match v.implementation
{none} ->
// do debug(->"update_implementation {key}")
{v with implementation=some(@unsafe_cast(implem))}
{some=_} ->
// do debug(->"update_implementation twice")
v
else v
entries=List.map(upif,preenv.entries)
{preenv with ~entries}
open_entry(v:option(P.entry(input)))=@unsafe_cast(v):option(P.entry)
findl(key,list) =
match list
[hd|tl] -> if entry_key_eq(key,hd) then some(hd) else findl(key,tl)
[] -> none
/** Get the entry associated to a key */
get_entry(key,preenv:P.preenv) = open_entry(findl(key,preenv.entries))
/** Set the env_postmatch flag of an entry */
need_env_postmatch(key,preenv:P.preenv) =
match List.index_p(v -> entry_key_eq(key,v) && v.postenv_i!={none},preenv.entries)
{some=i} -> (preenv,i)
{none} ->
i = preenv.next_index
upif(v) =
if entry_key_eq(key,v) then {v with postenv_i=some(i)}
else v
entries=List.map(upif,preenv.entries)
({preenv with ~entries next_index=i+1},i)
/**
* Generate the post env
* It is an array of comparison implementations, indicated and indexed as
* specified by the preenv
*/
postenv_i(preenv:P.preenv):P.postenv =
n = List.fold(e,acc-> match e.postenv_i {none}->acc {some=_}-> acc+1,preenv.entries,0)
postenv = LowLevelArray.create(n, @unsafe_cast(0)) // TODO
set(e:P.entry(input)) =
match e.postenv_i
{none} -> void
{some=i} ->
implem = e.implementation?error("[compare.P.postenv_i] no implementation")
LowLevelArray.set(postenv,i,implem)
end
do List.iter(set,preenv.entries)
postenv
add_entry(key,preenv:P.preenv):P.preenv =
entries = [entry(key)|preenv.entries]
{preenv with ~entries}
preenv_to_string(preenv) =
preenv.entries
|> List.map(entry -> "ty = {OpaType.to_string({ TyName_args=entry.ty.args TyName_ident=entry.ty.name})} (in postenv = {entry.postenv_i})", _)
|> ["PREENV="] ++ _
|> String.concat("\n",_)
Record = {{
field_index = %% bslValue.Record.field_index %% : Record.fields_indexes,Record.field -> Record.field_index
fields_indexes = %% bslValue.Record.fields_indexes %% : llarray(Record.field) -> Record.fields_indexes
dot_with_field_index = %% bslValue.Record.dot_with_field_index %% : 'record, Record.field_index -> 'field_content
patterns_indexes = %% bslValue.Record.patterns_indexes %% : llarray(Record.fields_indexes) -> Record.patterns_indexes
/*
* If the returned integer is -2 or -1 it is a comparison otherwise it is the
* index
*/
compare_structure = %% bslValue.Record.compare_structure %% : Record.patterns_indexes,'record,'record -> int
/*
* Comparing fields, should use something faster like llarray instead of list
* so fold2 and fold should provide field index list((string,('preenv,'a,'a -> 'cmp)))
*/
@expand
compare_field(field_i:Record.field_index, field_cmp:P.implementation, postenv, a, b) =
field_i = field_i
fa = dot_with_field_index(a,field_i)
fb = dot_with_field_index(b,field_i)
field_cmp(postenv,fa,fb)
compare_fields(n,fields_index, fields_cmp : llarray(P.implementation) )(postenv,a, b) =
if a === b then {eq} else
rec aux(nm1,i) =
r = compare_field(fields_index@i, fields_cmp@i, postenv, a, b)
if r!={eq} || i==nm1 then r
else aux(nm1,i+1)
aux(n-1,0)
}}
}}
| Opa | 4 | Machiaweliczny/oppailang | lib/stdlib/core/compare/compare.opa | [
"MIT"
] |
<?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()">
<div py:for="e in entries">
<h2><a
href="${blogroot}/${`e.year`}/${`e.month`}/${`e.day`}/${`e.subject`}.xhtml">${e.subject}</a></h2>
<div py:replace="XML(e.content)" />
<p>Posted at <a href="${blogroot}/${`e.year`}/">${`e.year`}</a>-<a
href="${blogroot}/${`e.year`}/${`e.month`}/">${`e.month`}</a>-<a
href="${blogroot}/${`e.year`}/${`e.month`}/${`e.day`}/">${`e.day`}</a>
${time.strftime('%H:%M:%S', e.date)} by
<a href="mailto:${e.email}">${e.author}</a><br />
Tags: <span py:for="i, t in enumerate(e.tags)" py:strip="True"><span
py:if="i > 0" py:strip="True">, </span><a
href="${blogroot}/tag/${`t`}" py:content="t" /></span>
</p>
</div>
</div>
</html>
| Genshi | 2 | decklin/ennepe | examples/simple/style/econtent.kid | [
"0BSD"
] |
export default {
props: {
items: ['a', 'b', 'c']
},
html: `
<div>
<button>click me</button>
<button>click me</button>
<button>click me</button>
</div>
`,
test({ assert, component, target, window }) {
const buttons = target.querySelectorAll('button');
const clicks = [];
component.$on('foo', event => {
clicks.push(event.detail);
});
const event = new window.MouseEvent('click');
buttons[0].dispatchEvent(event);
buttons[2].dispatchEvent(event);
assert.deepEqual(clicks, ['a', 'c']);
}
};
| JavaScript | 3 | Theo-Steiner/svelte | test/runtime/samples/component-events-each/_config.js | [
"MIT"
] |
is ← ⎕ReadIntVecFile 'readintvecfile.txt'
⎕ ← 'Number of integers in file:'
⎕ ← ⊃ ⍴ is ⍝ -> 16
⎕ ← 'File content:'
⎕ ← is
⎕ ← 'File content reversed:'
⎕ ← ⌽ is
0 | APL | 3 | melsman/apltail | tests/readintvecfile.apl | [
"MIT"
] |
$(OBJDIR)/trace.cmi: $(OBJDIR)/pretty.cmi
| D | 1 | heechul/crest-z3 | cil/obj/.depend/trace.di | [
"BSD-3-Clause"
] |
# Author: Nicolas Hug
cimport cython
from cython.parallel import prange
import numpy as np
cimport numpy as np
from .common import Y_DTYPE
from .common cimport Y_DTYPE_C
np.import_array()
def _update_raw_predictions(
Y_DTYPE_C [::1] raw_predictions, # OUT
grower,
n_threads,
):
"""Update raw_predictions with the predictions of the newest tree.
This is equivalent to (and much faster than):
raw_predictions += last_estimator.predict(X_train)
It's only possible for data X_train that is used to train the trees (it
isn't usable for e.g. X_val).
"""
cdef:
unsigned int [::1] starts # start of each leaf in partition
unsigned int [::1] stops # end of each leaf in partition
Y_DTYPE_C [::1] values # value of each leaf
const unsigned int [::1] partition = grower.splitter.partition
list leaves
leaves = grower.finalized_leaves
starts = np.array([leaf.partition_start for leaf in leaves],
dtype=np.uint32)
stops = np.array([leaf.partition_stop for leaf in leaves],
dtype=np.uint32)
values = np.array([leaf.value for leaf in leaves], dtype=Y_DTYPE)
_update_raw_predictions_helper(raw_predictions, starts, stops, partition,
values, n_threads)
cdef inline void _update_raw_predictions_helper(
Y_DTYPE_C [::1] raw_predictions, # OUT
const unsigned int [::1] starts,
const unsigned int [::1] stops,
const unsigned int [::1] partition,
const Y_DTYPE_C [::1] values,
int n_threads,
):
cdef:
unsigned int position
int leaf_idx
int n_leaves = starts.shape[0]
for leaf_idx in prange(n_leaves, schedule='static', nogil=True,
num_threads=n_threads):
for position in range(starts[leaf_idx], stops[leaf_idx]):
raw_predictions[partition[position]] += values[leaf_idx]
| Cython | 4 | MaiRajborirug/scikit-learn | sklearn/ensemble/_hist_gradient_boosting/_gradient_boosting.pyx | [
"BSD-3-Clause"
] |
= Documentation for Change Password Feature
The change password feature implements a form that a user can use to
change their password.
== Auth Value Methods
change_password_additional_form_tags :: HTML fragment containing additional form tags to use on the change password form.
change_password_button :: The text to use for the change password button.
change_password_error_flash :: The flash error to show for an unsuccessful password change.
change_password_notice_flash :: The flash notice to show after a successful password change.
change_password_page_title :: The page title to use on the change password form.
change_password_redirect :: Where to redirect after a sucessful password change.
change_password_requires_password? :: Whether a password is required when changing passwords.
change_password_route :: The route to the change password action. Defaults to +change-password+.
invalid_previous_password_message :: The message to use when the previous password was incorrect. Defaults to +invalid_password_message+.
new_password_label :: The label to use for the new password.
new_password_param :: The parameter name to use for new passwords.
== Auth Methods
after_change_password :: Run arbitrary code after successful password change.
before_change_password :: Run arbitrary code before changing the password for an account.
before_change_password_route :: Run arbitrary code before handling a change password route.
change_password_view :: The HTML to use for the change password form.
| RDoc | 4 | monorkin/rodauth | doc/change_password.rdoc | [
"MIT"
] |
console.log("hello deno");
| TypeScript | 1 | Preta-Crowz/deno | cli/tests/tsc2/https_deno.land-x-mod.ts | [
"MIT"
] |
-- Dumping database structure for test
CREATE DATABASE IF NOT EXISTS `test` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `test`;
-- Dumping structure for table test.users
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(50) DEFAULT NULL,
`password` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `email`, `password`) VALUES
(1, '[email protected]', 'Mellon');
/*!40000 ALTER TABLE `users` ENABLE KEYS */; | SQL | 3 | DBatOWL/tutorials | cas/cas-server/src/main/resources/create_test_db_and_users_tbl.sql | [
"MIT"
] |
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/dk_color_FFFFFF"
android:orientation="vertical"
android:padding="@dimen/dk_dp_10">
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/dk_color_CC3A4B"
android:textSize="16sp"
android:textStyle="bold"
tools:text="用例名" />
<TextView
android:id="@+id/tv_caseid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_name"
android:layout_marginTop="@dimen/dk_dp_10"
android:textColor="@color/dk_color_CC3A4B"
android:textStyle="bold"
tools:text="caseId:" />
<TextView
android:id="@+id/tv_person"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_caseid"
android:layout_marginTop="@dimen/dk_dp_10"
android:textColor="@color/dk_color_666666"
tools:text="采集人:" />
<TextView
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_person"
android:layout_marginTop="@dimen/dk_dp_10"
android:textColor="@color/dk_color_666666"
tools:text="采集时间:" />
<RadioButton
android:id="@+id/rb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:clickable="false" />
</RelativeLayout> | XML | 3 | lvyongtao/DoraemonKit | Android/dokit-mc/src/main/res/layout/dk_item_mc_case.xml | [
"Apache-2.0"
] |
# Contexts are only partially implemented.
# comparisons
T a.b == a.b
T a.b <= a.b
T a.b >= a.b
T Args(a.b == a.c) == List(a.b, == , a.c)
# canonical ordering
T Args(a.a + z) == [z,a.a]
# sympy translation
T Expand( (a + b.c)^3 ) == a^3 + 3*a*(b.c^2) + b.c^3 + 3*(a^2)*b.c
b.c = 1
T b.c == 1
Clear(b.c)
T Args(b.c == 1) == [b.c,==,1 ]
ClearAll(b.c,a,z,a.a,a.b,a.c)
b.d = 1
T ContextSymbols(b) == ["d"]
ClearAll(b.d)
T ContextSymbols(b) == []
T Args(b.d == 1) == [b.d,==,1 ]
ClearAll(b.c,b.d,b)
| Objective-J | 4 | UnofficialJuliaMirrorSnapshots/Symata.jl-a906b1d5-d016-55c4-aab3-8a20cba0db2a | symata_test/context_test.sj | [
"MIT"
] |
#ifndef TEST_INTEROP_CXX_TEMPLATES_INPUTS_MEMBER_TEMPLATES_H
#define TEST_INTEROP_CXX_TEMPLATES_INPUTS_MEMBER_TEMPLATES_H
struct HasMemberTemplates {
template <class T> T addSameTypeParams(T a, T b) { return a + b; }
template <class T, class U> T addMixedTypeParams(T a, U b) { return a + b; }
template <class T, class U> int addAll(int a, T b, U c) { return a + b + c; }
template <class T> T passThrough(T val) { return val; }
template <class T> T passThroughConst(const T val) { return val; }
template <class T> T passThroughOnConst(T val) const { return val; }
template <class T> T passThroughConstOnConst(const T val) const {
return val;
}
template <class T> void doNothingConstRef(const T &val) {}
template <class T> void make42Ref(T &val) {}
};
template <class T> struct TemplateClassWithMemberTemplates {
T value;
template <class U> void setValue(U val) { value = val; }
TemplateClassWithMemberTemplates(T val) : value(val) {}
};
using IntWrapper = TemplateClassWithMemberTemplates<int>;
struct HasStaticMemberTemplates {
template <class T> static T add(T a, T b) { return a + b; }
template <class T, class U> static T addTwoTemplates(T a, U b) { return a + b; }
template <class T> static T removeReference(T &a) { return a; }
};
#endif // TEST_INTEROP_CXX_TEMPLATES_INPUTS_MEMBER_TEMPLATES_H | C | 3 | gandhi56/swift | test/Interop/Cxx/templates/Inputs/member-templates.h | [
"Apache-2.0"
] |
At: "010.hac":7:
parse error: syntax error
parser stacks:
state value
#STATE# (null)
#STATE# list<(root_item)>: (instance-decl) ... [3:1..16]
#STATE# keyword: namespace [5:1..9]
#STATE# identifier: more_arrays [5:11..21]
#STATE# { [5:23]
#STATE# (type-ref) [7:1..3]
#STATE# identifier: fancy_array [7:5..15]
#STATE# (null)
#STATE# [ [7:16]
#STATE# (range) [7:17]
#STATE# , [7:18]
in state #STATE#, possible rules are:
bracketed_sparse_range: '[' range . ']' (#RULE#)
acceptable tokens are:
']' (shift)
| Bison | 0 | broken-wheel/hacktist | hackt_docker/hackt/test/parser/basic/010.stderr.bison | [
"MIT"
] |
IMAGE POINT FILE
29
pt_id,val,fid_val,no_obs,l.,s.,sig_l,sig_s,res_l,res_s,fid_x,fid_y
ESP_020297_2045_REDmos_hijitreged_8bit_1 0 0 0
-25268.843750 -8676.963867
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_2 0 0 0
-23514.054688 -5512.686523
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_3 0 0 0
-26400.000000 200.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_4 0 0 0
-26400.000000 4400.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_5 0 0 0
-26400.000000 8600.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_6 0 0 0
-12304.000000 -10395.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_7 0 0 0
-13783.144531 -6906.027344
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_8 0 0 0
-12670.103516 -1356.096680
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_9 0 0 0
-12724.632813 1643.853516
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_10 0 0 0
-13200.000000 8600.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_11 0 0 0
1074.492188 -11312.470703
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_12 0 0 0
1113.947266 -7836.264648
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_13 0 0 0
-875.183594 -3187.724121
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_14 0 0 0
-284.751953 4006.200195
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_15 0 0 0
0.000000 8600.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_16 0 0 0
14292.000000 -10500.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_17 0 0 0
14377.546875 -7960.347656
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_18 0 0 0
14878.832031 -1385.569336
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_19 0 0 0
13545.093750 2482.661133
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_20 0 0 0
13200.000000 8600.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_21 0 0 0
27952.640625 -10201.527344
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_22 0 0 0
28415.074219 -6926.744141
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_23 0 0 0
25602.656250 -2595.035156
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_24 0 0 0
26501.554688 3477.498047
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_020297_2045_REDmos_hijitreged_8bit_25 0 0 0
26400.000000 8600.000000
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_028855_2045_REDmos_hijitreged_8bit_1 0 0 0
-22069.843750 -3153.483398
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_028855_2045_REDmos_hijitreged_8bit_2 0 0 0
-21388.449219 -1153.021484
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_028855_2045_REDmos_hijitreged_8bit_3 0 0 0
-21496.292969 2336.141602
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
ESP_028855_2045_REDmos_hijitreged_8bit_4 0 0 0
-9083.490234 -6484.095703
0.000000 0.000000
0.000000 0.000000
0.000000 0.000000
| IGOR Pro | 1 | kaitlyndlee/plio | plio/examples/SocetGXP/GXP_example_ipf.ipf | [
"Unlicense"
] |
#int fact(int n) {
# if (n == 1)
# return 1;
# return n * fact(n-1);
#}
func $fact (var %n i32) i32 {
if (ne i32 i32 (dread i32 %n, constval i32 1)) {
call &fact (sub i32 (dread i32 %n, constval i32 1))
return (mul i32 (dread i32 %n, regread i32 %%retval))
}
return (constval i32 1)
}
# EXEC: %irbuild Main.mpl
# EXEC: %irbuild Main.irb.mpl
# EXEC: %cmp Main.irb.mpl Main.irb.irb.mpl
| Maple | 4 | harmonyos-mirror/OpenArkCompiler-test | test/testsuite/irbuild_test/I0029-mapleall-irbuild-edge-fact/Main.mpl | [
"MulanPSL-1.0"
] |
[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
level = "DEBUG"
[entryPoints.web]
address = ":8000"
[api]
insecure = true
[providers.consul]
rootKey = "traefik"
endpoints = ["{{ .ConsulAddress }}"]
| TOML | 2 | sidharthv96/traefik | integration/fixtures/consul/simple.toml | [
"MIT"
] |
resistorCodes := dataset([{0, 'Black'},
{1, 'Brown'},
{2, 'Red'},
{3, 'Orange'},
{4, 'Yellow'},
{5, 'Green'},
{6, 'Blue'},
{7, 'Violet'},
{8, 'Grey'},
{9, 'White'}], {unsigned1 value, string color});
color2code := DICTIONARY(resistorCodes, { STRING fcolor := color => value});
colorn2code := DICTIONARY(resistorCodes, { STRING6 ncolor := color => value});
colorv2code := DICTIONARY(resistorCodes, { VARSTRING vcolor := color => value});
ucolor2code := DICTIONARY(resistorCodes, { UNICODE fcolor := color => value});
ucolorn2code := DICTIONARY(resistorCodes, { UNICODE6 ncolor := color => value});
ucolorv2code := DICTIONARY(resistorCodes, { VARUNICODE vcolor := color => value});
ucoloru2code := DICTIONARY(resistorCodes, { UTF8 ucolor := color => value});
code1ToColor := DICTIONARY(resistorCodes, { value => color});
string c1 := 'White' : STORED('color1');
string c2 := 'White ' : STORED('color2');
string c3 := 'Whit' : STORED('color3');
string c4 := 'White or maybe not' : STORED('color4');
unicode u1 := u'White' : STORED('ucolor1');
unicode u2 := u'White ' : STORED('ucolor2');
unicode u3 := u'Whit' : STORED('ucolor3');
unicode u4 := u'White with a hint of yellow' : STORED('ucolor4');
color2code[c1].value;
color2code[c2].value;
color2code[c3].value;
color2code[c4].value;
colorn2code[c1].value;
colorn2code[c2].value;
colorn2code[c3].value;
colorn2code[c4].value;
colorv2code[c1].value;
colorv2code[c2].value;
colorv2code[c3].value;
colorv2code[c4].value;
code1ToColor[1].value;
code1ToColor[257].value;
'---';
ucolor2code[u1].value;
ucolor2code[u2].value;
ucolor2code[u3].value;
ucolor2code[u4].value;
ucolorn2code[u1].value;
ucolorn2code[u2].value;
ucolorn2code[u3].value;
ucolorn2code[u4].value;
ucolorv2code[u1].value;
ucolorv2code[u2].value;
ucolorv2code[u3].value;
ucolorv2code[u4].value;
ucoloru2code[u1].value;
ucoloru2code[u2].value;
ucoloru2code[u3].value;
ucoloru2code[u4].value;
| ECL | 3 | miguelvazq/HPCC-Platform | testing/regress/ecl/dict_field2.ecl | [
"Apache-2.0"
] |
<style>
.NEW { background: #ddd; }
.INPROGRESS-RETRYABLE { background: #419bf9; }
.INPROGRESS-NOTRETRYABLE { background: #419bf9; }
.SUCCEEDED { background: #5CB346; }
.FAILED { background: #d9534f; }
.WAITING-TO-RETRY { background: #f0ad4e; }
.CANCELLED { background: #333; }
.thread-snooze {}
.n1-send-later {}
.send-reminders {}
#container {
width: 100%;
height: 100%;
padding: 0 20px 0 20px;
}
h1 {
font-size: 26px;
margin: 0;
}
h2 {
text-align: left;
font-size: 20px;
margin: 0 0 0 5px;
}
.container-wrap {
height: calc(100% - 39px);
}
.job-area.thread-snooze {
height: 60%;
}
.job-area.n1-send-later {
height: 20%;
}
.job-area.send-reminders {
height: 20%;
}
.day-wrap {
display: flex;
height: calc(100% - 30px);
}
.day {
margin: 0 5px;
height: calc(100% - 20px);
}
.day h3 {
margin: 0;
max-height: 14px;
overflow: hidden;
font-family: sans-serif;
font-size: 12px;
margin-bottom: 6px;
}
.hour-wrap {
height: 100%;
display: flex;
}
.hour {
height: 100%;
width: 12px;
}
.hour h4 {
margin-bottom: 5px;
font-family: sans-serif;
font-size: 8px;
padding-top: 5px;
}
.hour:nth-child(even) h4 {
visibility: hidden;
}
.job-wrap {
height: calc(100% - 19px);
display: flex;
flex-direction: column-reverse;
}
.job {
margin: 1px 1px 0 1px;
height: 10px;
width: 10px;
}
</style>
<h1>Worker Jobs</h1>
<div class="container-wrap">
{{#each jobData}}
<div class="job-area {{this.typeId}}" id={{this.typeId}}>
<h2>{{this.typeName}}</h2>
<div class="day-wrap">
{{#each this.dayBins}}
<div class="day">
<div class="hour-wrap">
{{#each this.hourBins}}
<div class="hour {{this.timeStr}}">
<div class="job-wrap">
{{#each this.jobs}}
<div class="job {{this.status}} {{this.type}}"
title="{{this.foremanId}} {{this.statusUpdatedAt}} {{this.error.message}}"></div>
{{/each}}
</div>
<h4>{{this.timeStr}}</h4>
</div>
{{/each}}
</div>
<h3>{{this.dayStr}}</h3>
</div>
{{/each}}
</div>
</div>
{{/each}}
</div>
| HTML | 4 | cnheider/nylas-mail | packages/cloud-api/src/views/admin.html | [
"MIT"
] |
# Copyright (C) 2009, Parrot Foundation.
set N0, 1.0
set N1, 4.0
set N2, 16.0
set N3, 64.0
set N4, 256.0
set N5, 1024.0
set N6, 4096.0
set N7, 16384.0
set N8, 65536.0
set N9, 262144.0
set N10, 1048576.0
set N11, 4194304.0
set N12, 16777216.0
set N13, 67108864.0
set N14, 268435456.0
set N15, 1073741824.0
set N16, 4294967296.0
set N17, 17179869184.0
set N18, 68719476736.0
set N19, 274877906944.0
set N20, 1099511627776.0
set N21, 4398046511104.0
set N22, 17592186044416.0
set N23, 70368744177664.0
set N24, 281474976710656.0
set N25, 1.12589990684262e+15
print N0
print "\n"
print N1
print "\n"
print N2
print "\n"
print N3
print "\n"
print N4
print "\n"
print N5
print "\n"
print N6
print "\n"
print N7
print "\n"
print N8
print "\n"
print N9
print "\n"
print N10
print "\n"
print N11
print "\n"
print N12
print "\n"
print N13
print "\n"
print N14
print "\n"
print N15
print "\n"
print N16
print "\n"
print N17
print "\n"
print N18
print "\n"
print N19
print "\n"
print N20
print "\n"
print N21
print "\n"
print N22
print "\n"
print N23
print "\n"
print N24
print "\n"
print N25
print "\n"
end
# Local Variables:
# mode: pir
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir:
| Parrot Assembly | 1 | winnit-myself/Wifie | t/native_pbc/testdata/number.pasm | [
"Artistic-2.0"
] |
/*--------------------------------------------------*/
/* SAS Programming for R Users - code for exercises */
/* Copyright 2016 SAS Institute Inc. */
/*--------------------------------------------------*/
/*SP4R04s04*/
/*Part A*/
data sp4r.simple_lin (keep=x y);
call streaminit(123);
do x=1 to 30;
beta01 = 25;
beta11 = 1;
y = beta01 + beta11*x + rand('Normal',0,5);
output;
end;
run;
/*Part B*/
proc sgplot data=sp4r.simple_lin;
scatter x=x y=y / legendlabel='Scatter' name='Scatter'
markerattrs=(color=blue symbol=starfilled);
reg x=x y=y / legendlabel='Line of Best Fit' name='Line'
lineattrs=(color=red pattern=dot);
title 'My Scatter Plot';
xaxis label='X Values' min=0 max=31;
yaxis label='Y Values' min=15 max=65;
keylegend 'Scatter' 'Line';
run;
title;
/*Part C*/
proc sgplot data=sp4r.simple_lin;
needle x=x y=y / legendlabel='Needle' name='Needle' markerattrs=(color=blue symbol=starfilled);
pbspline x=x y=y / legendlabel='Line of Best Fit' name='Line'
lineattrs=(color=red pattern=dot);
title 'My Needle Plot';
xaxis label='X Values' min=0 max=31;
yaxis label='Y Values' min=15 max=65;
keylegend 'Needle' 'Line';
run;
title;
| SAS | 4 | snowdj/sas-prog-for-r-users | code/SP4R04s04.sas | [
"CC-BY-4.0"
] |
_ = require 'underscore'
Rx = require 'rx-lite'
NylasStore = require 'nylas-store'
DatabaseStore = require('./database-store').default
AccountStore = require('./account-store').default
TaskQueue = require './task-queue'
# Public: The TaskQueueStatusStore allows you to inspect the task queue from
# any window, even though the queue itself only runs in the work window.
#
class TaskQueueStatusStore extends NylasStore
constructor: ->
@_queue = []
@_waitingLocals = []
@_waitingRemotes = []
query = DatabaseStore.findJSONBlob(TaskQueue.JSONBlobStorageKey)
Rx.Observable.fromQuery(query).subscribe (json) =>
@_queue = json || []
@_waitingLocals = @_waitingLocals.filter ({task, resolve}) =>
queuedTask = _.findWhere(@_queue, {id: task.id})
if not queuedTask or queuedTask.queueState.localComplete
resolve(task)
return false
return true
@_waitingRemotes = @_waitingRemotes.filter ({task, resolve}) =>
queuedTask = _.findWhere(@_queue, {id: task.id})
if not queuedTask
resolve(task)
return false
return true
@trigger()
queue: ->
@_queue
waitForPerformLocal: (task) =>
new Promise (resolve, reject) =>
@_waitingLocals.push({task, resolve})
waitForPerformRemote: (task) =>
new Promise (resolve, reject) =>
@_waitingRemotes.push({task, resolve})
tasksMatching: (type, matching = {}) ->
type = type.name unless _.isString(type)
@_queue.filter (task) -> task.constructor.name is type and _.isMatch(task, matching)
module.exports = new TaskQueueStatusStore()
| CoffeeScript | 5 | cnheider/nylas-mail | packages/client-app/src/flux/stores/task-queue-status-store.coffee | [
"MIT"
] |
( Generated from test_oper_powerequals_in.muv by the MUV compiler. )
( https://github.com/revarbat/pymuv )
: _main[ _arg -- ret ]
4 var! _a
_a @ 2 pow dup _a !
;
: __start
"me" match me ! me @ location loc ! trig trigger !
_main
;
| MUF | 3 | revarbat/pymuv | tests/test_oper_powerequals_cmp.muf | [
"MIT"
] |
{#ASda}
========
Evaluation
----------
Evaluation
==========
LiquidHaskell Is For Real
-------------------------
<div class="hidden">
\begin{code}
main = putStrLn "Easter Egg: to force Makefile"
\end{code}
</div>
<br>
Substantial code bases.
<br>
Complex properties.
<br>
<div class="fragment">Inference is crucial.</div>
Numbers
-------
<div align="center">
**Library** **LOC**
--------------------------- ---------
`Data.List` 814
`Data.Set.Splay` 149
`Data.Vector.Algorithms` 1219
`Data.Map.Base` 1396
`Data.Text` 3125
`Data.Bytestring` 3501
**Total** **10224**
--------------------------- ---------
</div>
Numbers
-------
<div align="center">
**Library** **LOC** **Time**
--------------------------- --------- ----------
`Data.List` 814 52s
`Data.Set.Splay` 149 26s
`Data.Vector.Algorithms` 1219 196s
`Data.Map.Base` 1396 247s
`Data.Text` 3125 809s
`Data.Bytestring` 3501 549s
**Total** **10224** **1880s**
--------------------------- --------- ----------
</div>
Termination
-----------
Proving termination is **easy in practice**.
<br>
- <div class="fragment">`503` recursive functions</div>
- <div class="fragment">`67%` automatically proved</div>
- <div class="fragment">`30%` need *witnesses* `/[...]`</div>
- <div class="fragment">`1` witness per `100` lines of code</div>
- <div class="fragment">`20` *not proven* to terminate</div>
- <div class="fragment">`12` *do not* terminate (e.g. top-level `IO` loops)</div>
- <div class="fragment">`8` currently *outside scope* of LiquidHaskell</div>
Future Work
-----------
<br>
<br>
- <div class="fragment">Speed</div>
- <div class="fragment">Case Studies</div>
- <div class="fragment">**Error Messages**</div>
{#asd}
=======
Thank You!
----------
<br>
`cabal install liquidhaskell`
<br>
`https://github.com/ucsd-progsys/liquidhaskell`
<br>
| Literate Haskell | 2 | curiousleo/liquidhaskell | docs/slides/flops14/lhs/11_Evaluation.lhs | [
"MIT",
"BSD-3-Clause"
] |
#!/usr/bin/env bats
SCRIPT_NAME="steps-lib.sh"
SCRIPT="$BATS_TEST_DIRNAME/../../ci/steps/$SCRIPT_NAME"
source "$SCRIPT"
@test "is_env_var_set should return 1 if env var is not set" {
run is_env_var_set "ASDF_TEST_SET"
[ "$status" = 1 ]
}
@test "is_env_var_set should return 0 if env var is set" {
ASDF_TEST_SET="test" run is_env_var_set "ASDF_TEST_SET"
[ "$status" = 0 ]
}
@test "directory_exists should 1 if directory doesn't exist" {
run directory_exists "/tmp/asdfasdfasdf"
[ "$status" = 1 ]
}
@test "directory_exists should 0 if directory exists" {
run directory_exists "$(pwd)"
[ "$status" = 0 ]
}
@test "file_exists should 1 if file doesn't exist" {
run file_exists "hello-asfd.sh"
[ "$status" = 1 ]
}
@test "file_exists should 0 if file exists" {
run file_exists "$SCRIPT"
[ "$status" = 0 ]
}
@test "is_executable should 1 if file isn't executable" {
run is_executable "hello-asfd.sh"
[ "$status" = 1 ]
}
@test "is_executable should 0 if file is executable" {
run is_executable "$SCRIPT"
[ "$status" = 0 ]
} | Shell | 4 | mia-cx/code-server-npm | test/scripts/steps-lib.bats | [
"MIT"
] |
// skip
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This is built by issue10607.go with a -B option.
// Verify that we have one build-id note with the expected value.
package main
import (
"bytes"
"debug/elf"
"fmt"
"os"
)
func main() {
f, err := elf.Open("/proc/self/exe")
if err != nil {
if os.IsNotExist(err) {
return
}
fmt.Fprintln(os.Stderr, "opening /proc/self/exe:", err)
os.Exit(1)
}
c := 0
fail := false
for i, s := range f.Sections {
if s.Type != elf.SHT_NOTE {
continue
}
d, err := s.Data()
if err != nil {
fmt.Fprintf(os.Stderr, "reading data of note section %d: %v\n", i, err)
continue
}
for len(d) > 0 {
namesz := f.ByteOrder.Uint32(d)
descsz := f.ByteOrder.Uint32(d[4:])
typ := f.ByteOrder.Uint32(d[8:])
an := (namesz + 3) &^ 3
ad := (descsz + 3) &^ 3
if int(12+an+ad) > len(d) {
fmt.Fprintf(os.Stderr, "note section %d too short for header (%d < 12 + align(%d,4) + align(%d,4))\n", i, len(d), namesz, descsz)
break
}
// 3 == NT_GNU_BUILD_ID
if typ == 3 && namesz == 4 && bytes.Equal(d[12:16], []byte("GNU\000")) {
id := string(d[12+an:12+an+descsz])
if id == "\x12\x34\x56\x78" {
c++
} else {
fmt.Fprintf(os.Stderr, "wrong build ID data: %q\n", id)
fail = true
}
}
d = d[12+an+ad:]
}
}
if c == 0 {
fmt.Fprintln(os.Stderr, "no build-id note")
fail = true
} else if c > 1 {
fmt.Fprintln(os.Stderr, c, "build-id notes")
fail = true
}
if fail {
os.Exit(1)
}
}
| Go | 3 | Havoc-OS/androidprebuilts_go_linux-x86 | test/fixedbugs/issue10607a.go | [
"BSD-3-Clause"
] |
# This file is a part of Julia. License is MIT: https://julialang.org/license
# Small sanity tests to ensure changing the rounding of float functions work
using Base.MathConstants
using Test
@testset "Float64 checks" begin
# a + b returns a number exactly between prevfloat(1.) and 1., so its
# final result depends strongly on the utilized rounding direction.
a = prevfloat(0.5)
b = 0.5
c = 0x1p-54
d = prevfloat(1.)
@testset "Default rounding direction, RoundNearest" begin
@test a + b === 1.
@test - a - b === -1.
@test a - b === -c
@test b - a === c
end
end
@testset "Float32 checks" begin
a32 = prevfloat(0.5f0)
b32 = 0.5f0
c32 = (1.f0 - prevfloat(1.f0))/2
d32 = prevfloat(1.0f0)
@testset "Default rounding direction, RoundNearest" begin
@test a32 + b32 === 1.0f0
@test - a32 - b32 === -1.0f0
@test a32 - b32 === -c32
@test b32 - a32 === c32
end
end
@testset "convert with rounding" begin
for v = [sqrt(2),-1/3,nextfloat(1.0),prevfloat(1.0),nextfloat(-1.0),
prevfloat(-1.0),nextfloat(0.0),prevfloat(0.0)]
pn = Float32(v,RoundNearest)
@test pn == convert(Float32,v)
pz = Float32(v,RoundToZero)
@test abs(pz) <= abs(v) < nextfloat(abs(pz))
@test signbit(pz) == signbit(v)
pd = Float32(v,RoundDown)
@test pd <= v < nextfloat(pd)
pu = Float32(v,RoundUp)
@test prevfloat(pu) < v <= pu
@test pn == pd || pn == pu
@test v > 0 ? pz == pd : pz == pu
@test pu - pd == eps(pz)
end
for T in [Float32,Float64]
for v in [sqrt(big(2.0)),-big(1.0)/big(3.0),nextfloat(big(1.0)),
prevfloat(big(1.0)),nextfloat(big(0.0)),prevfloat(big(0.0)),
pi,ℯ,eulergamma,catalan,golden,
typemax(Int64),typemax(UInt64),typemax(Int128),typemax(UInt128),0xa2f30f6001bb2ec6]
pn = T(v,RoundNearest)
@test pn == convert(T,BigFloat(v))
pz = T(v,RoundToZero)
@test pz == setrounding(()->convert(T,BigFloat(v)), BigFloat, RoundToZero)
pd = T(v,RoundDown)
@test pd == setrounding(()->convert(T,BigFloat(v)), BigFloat, RoundDown)
pu = T(v,RoundUp)
@test pu == setrounding(()->convert(T,BigFloat(v)), BigFloat, RoundUp)
@test pn == pd || pn == pu
@test v > 0 ? pz == pd : pz == pu
@test isinf(pu) || pu - pd == eps(pz)
end
end
end
@testset "fenv" begin
@test Base.Rounding.from_fenv(Base.Rounding.to_fenv(RoundNearest)) == RoundNearest
@test Base.Rounding.from_fenv(Base.Rounding.to_fenv(RoundToZero)) == RoundToZero
@test Base.Rounding.from_fenv(Base.Rounding.to_fenv(RoundUp)) == RoundUp
@test Base.Rounding.from_fenv(Base.Rounding.to_fenv(RoundDown)) == RoundDown
@test_throws ArgumentError Base.Rounding.from_fenv(-99)
end
@testset "round error throwing" begin
badness = 1//0
@test_throws DivideError round(Int64,badness,RoundNearestTiesAway)
@test_throws DivideError round(Int64,badness,RoundNearestTiesUp)
end
@testset "rounding properties" for Tf in [Float16,Float32,Float64]
# these should hold for all u, but we just test the smallest and largest
# of each binade
for i in exponent(floatmin(Tf)):exponent(floatmax(Tf))
for u in [ldexp(Tf(1.0), i), -ldexp(Tf(1.0), i),
ldexp(prevfloat(Tf(2.0)), i), -ldexp(prevfloat(Tf(2.0)), i)]
r = round(u, RoundNearest)
if isfinite(u)
@test isfinite(r)
@test isinteger(r)
@test abs(r-u) < 0.5 || abs(r-u) == 0.5 && isinteger(r/2)
@test signbit(u) == signbit(r)
else
@test u === r
end
r = round(u, RoundNearestTiesAway)
if isfinite(u)
@test isfinite(r)
@test isinteger(r)
@test abs(r-u) < 0.5 || (r-u) == copysign(0.5,u)
@test signbit(u) == signbit(r)
else
@test u === r
end
r = round(u, RoundNearestTiesUp)
if isfinite(u)
@test isfinite(r)
@test isinteger(r)
@test -0.5 < r-u <= 0.5
@test signbit(u) == signbit(r)
else
@test u === r
end
end
end
end
@testset "rounding difficult values" begin
for x = Int64(2)^53-10:Int64(2)^53+10
y = Float64(x)
i = trunc(Int64,y)
@test Int64(trunc(y)) == i
@test Int64(round(y)) == i
@test Int64(floor(y)) == i
@test Int64(ceil(y)) == i
@test round(Int64,y) == i
@test floor(Int64,y) == i
@test ceil(Int64,y) == i
end
for x = 2^24-10:2^24+10
y = Float32(x)
i = trunc(Int,y)
@test Int(trunc(y)) == i
@test Int(round(y)) == i
@test Int(floor(y)) == i
@test Int(ceil(y)) == i
@test round(Int,y) == i
@test floor(Int,y) == i
@test ceil(Int,y) == i
end
# rounding vectors
let ≈(x,y) = x==y && typeof(x)==typeof(y)
for t in [Float32,Float64]
# try different vector lengths
for n in [0,3,255,256]
r = (1:n) .- div(n,2)
y = t[x/4 for x in r]
@test trunc.(y) ≈ t[div(i,4) for i in r]
@test floor.(y) ≈ t[i>>2 for i in r]
@test ceil.(y) ≈ t[(i+3)>>2 for i in r]
@test round.(y) ≈ t[(i+1+isodd(i>>2))>>2 for i in r]
@test broadcast(x -> round(x, RoundNearestTiesAway), y) ≈ t[(i+1+(i>=0))>>2 for i in r]
@test broadcast(x -> round(x, RoundNearestTiesUp), y) ≈ t[(i+2)>>2 for i in r]
end
end
end
@test_throws InexactError round(Int,Inf)
@test_throws InexactError round(Int,NaN)
@test round(Int,2.5) == 2
@test round(Int,1.5) == 2
@test round(Int,-2.5) == -2
@test round(Int,-1.5) == -2
@test round(Int,2.5,RoundNearestTiesAway) == 3
@test round(Int,1.5,RoundNearestTiesAway) == 2
@test round(Int,2.5,RoundNearestTiesUp) == 3
@test round(Int,1.5,RoundNearestTiesUp) == 2
@test round(Int,-2.5,RoundNearestTiesAway) == -3
@test round(Int,-1.5,RoundNearestTiesAway) == -2
@test round(Int,-2.5,RoundNearestTiesUp) == -2
@test round(Int,-1.5,RoundNearestTiesUp) == -1
@test round(Int,-1.9) == -2
@test_throws InexactError round(Int64, 9.223372036854776e18)
@test round(Int64, 9.223372036854775e18) == 9223372036854774784
@test_throws InexactError round(Int64, -9.223372036854778e18)
@test round(Int64, -9.223372036854776e18) == typemin(Int64)
@test_throws InexactError round(UInt64, 1.8446744073709552e19)
@test round(UInt64, 1.844674407370955e19) == 0xfffffffffffff800
@test_throws InexactError round(Int32, 2.1474836f9)
@test round(Int32, 2.1474835f9) == 2147483520
@test_throws InexactError round(Int32, -2.147484f9)
@test round(Int32, -2.1474836f9) == typemin(Int32)
@test_throws InexactError round(UInt32, 4.2949673f9)
@test round(UInt32, 4.294967f9) == 0xffffff00
for Ti in [Int,UInt]
for Tf in [Float16,Float32,Float64]
@test round(Ti,Tf(-0.0)) == 0
@test round(Ti,Tf(-0.0),RoundNearestTiesAway) == 0
@test round(Ti,Tf(-0.0),RoundNearestTiesUp) == 0
@test round(Ti, Tf(0.5)) == 0
@test round(Ti, Tf(0.5), RoundNearestTiesAway) == 1
@test round(Ti, Tf(0.5), RoundNearestTiesUp) == 1
@test round(Ti, prevfloat(Tf(0.5))) == 0
@test round(Ti, prevfloat(Tf(0.5)), RoundNearestTiesAway) == 0
@test round(Ti, prevfloat(Tf(0.5)), RoundNearestTiesUp) == 0
@test round(Ti, nextfloat(Tf(0.5))) == 1
@test round(Ti, nextfloat(Tf(0.5)), RoundNearestTiesAway) == 1
@test round(Ti, nextfloat(Tf(0.5)), RoundNearestTiesUp) == 1
@test round(Ti, Tf(-0.5)) == 0
@test round(Ti, Tf(-0.5), RoundNearestTiesUp) == 0
@test round(Ti, nextfloat(Tf(-0.5))) == 0
@test round(Ti, nextfloat(Tf(-0.5)), RoundNearestTiesAway) == 0
@test round(Ti, nextfloat(Tf(-0.5)), RoundNearestTiesUp) == 0
if Ti <: Signed
@test round(Ti, Tf(-0.5), RoundNearestTiesAway) == -1
@test round(Ti, prevfloat(Tf(-0.5))) == -1
@test round(Ti, prevfloat(Tf(-0.5)), RoundNearestTiesAway) == -1
@test round(Ti, prevfloat(Tf(-0.5)), RoundNearestTiesUp) == -1
else
@test_throws InexactError round(Ti, Tf(-0.5), RoundNearestTiesAway)
@test_throws InexactError round(Ti, prevfloat(Tf(-0.5)))
@test_throws InexactError round(Ti, prevfloat(Tf(-0.5)), RoundNearestTiesAway)
@test_throws InexactError round(Ti, prevfloat(Tf(-0.5)), RoundNearestTiesUp)
end
end
end
# numbers that can't be rounded by trunc(x+0.5)
@test round(Int64, 2.0^52 + 1) == 4503599627370497
@test round(Int32, 2.0f0^23 + 1) == 8388609
end
# custom rounding and significant-digit ops
@testset "rounding to digits relative to the decimal point" begin
@test round(pi) ≈ 3.
@test round(pi, base=10) ≈ 3.
@test round(pi, digits=0) ≈ 3.
@test round(pi, digits=1) ≈ 3.1
@test round(pi, digits=3, base=2) ≈ 3.125
@test round(pi, sigdigits=1) ≈ 3.
@test round(pi, sigdigits=3) ≈ 3.14
@test round(pi, sigdigits=4, base=2) ≈ 3.25
@test round(big(pi)) ≈ big"3."
@test round(big(pi), digits=0) ≈ big"3."
@test round(big(pi), digits=1) ≈ big"3.1"
@test round(big(pi), digits=3, base=2) ≈ big"3.125"
@test round(big(pi), sigdigits=1) ≈ big"3."
@test round(big(pi), sigdigits=3) ≈ big"3.14"
@test round(big(pi), sigdigits=4, base=2) ≈ big"3.25"
@test round(10*pi, digits=-1) ≈ 30.
@test round(.1, digits=0) == 0.
@test round(-.1, digits=0) == -0.
@test isnan(round(NaN, digits=2))
@test isinf(round(Inf, digits=2))
@test isinf(round(-Inf, digits=2))
end
@testset "round vs trunc vs floor vs ceil" begin
@test round(123.456, digits=1) ≈ 123.5
@test round(-123.456, digits=1) ≈ -123.5
@test trunc(123.456, digits=1) ≈ 123.4
@test trunc(-123.456, digits=1) ≈ -123.4
@test ceil(123.456, digits=1) ≈ 123.5
@test ceil(-123.456, digits=1) ≈ -123.4
@test floor(123.456, digits=1) ≈ 123.4
@test floor(-123.456, digits=1) ≈ -123.5
end
@testset "rounding with too much (or too few) precision" begin
for x in (12345.6789, 0, -12345.6789)
y = float(x)
@test y == trunc(x, digits=1000)
@test y == round(x, digits=1000)
@test y == floor(x, digits=1000)
@test y == ceil(x, digits=1000)
end
let x = 12345.6789
@test 0.0 == trunc(x, digits=-1000)
@test 0.0 == round(x, digits=-1000)
@test 0.0 == floor(x, digits=-1000)
@test Inf == ceil(x, digits=-1000)
end
let x = -12345.6789
@test -0.0 == trunc(x, digits=-1000)
@test -0.0 == round(x, digits=-1000)
@test -Inf == floor(x, digits=-1000)
@test -0.0 == ceil(x, digits=-1000)
end
let x = 0.0
@test 0.0 == trunc(x, digits=-1000)
@test 0.0 == round(x, digits=-1000)
@test 0.0 == floor(x, digits=-1000)
@test 0.0 == ceil(x, digits=-1000)
end
end
@testset "rounding in other bases" begin
@test round(pi, digits = 2, base = 2) ≈ 3.25
@test round(pi, digits = 3, base = 2) ≈ 3.125
@test round(pi, digits = 3, base = 5) ≈ 3.144
end
@testset "vectorized trunc/round/floor/ceil with digits/base argument" begin
a = rand(2, 2, 2)
for f in (round, trunc, floor, ceil)
@test f.(a[:, 1, 1], digits=2) == map(x->f(x, digits=2), a[:, 1, 1])
@test f.(a[:, :, 1], digits=2) == map(x->f(x, digits=2), a[:, :, 1])
@test f.(a, digits=9, base = 2) == map(x->f(x, digits=9, base = 2), a)
@test f.(a[:, 1, 1], digits=9, base = 2) == map(x->f(x, digits=9, base = 2), a[:, 1, 1])
@test f.(a[:, :, 1], digits=9, base = 2) == map(x->f(x, digits=9, base = 2), a[:, :, 1])
@test f.(a, digits=9, base = 2) == map(x->f(x, digits=9, base = 2), a)
end
end
| Julia | 5 | TimoLarson/julia | test/rounding.jl | [
"Zlib"
] |
%!PS-Adobe-3.0
%%Creator: graphviz version 2.38.0 (20140413.2041)
%%Title: G
%%Pages: (atend)
%%BoundingBox: (atend)
%%EndComments
save
%%BeginProlog
/DotDict 200 dict def
DotDict begin
/setupLatin1 {
mark
/EncodingVector 256 array def
EncodingVector 0
ISOLatin1Encoding 0 255 getinterval putinterval
EncodingVector 45 /hyphen put
% Set up ISO Latin 1 character encoding
/starnetISO {
dup dup findfont dup length dict begin
{ 1 index /FID ne { def }{ pop pop } ifelse
} forall
/Encoding EncodingVector def
currentdict end definefont
} def
/Times-Roman starnetISO def
/Times-Italic starnetISO def
/Times-Bold starnetISO def
/Times-BoldItalic starnetISO def
/Helvetica starnetISO def
/Helvetica-Oblique starnetISO def
/Helvetica-Bold starnetISO def
/Helvetica-BoldOblique starnetISO def
/Courier starnetISO def
/Courier-Oblique starnetISO def
/Courier-Bold starnetISO def
/Courier-BoldOblique starnetISO def
cleartomark
} bind def
%%BeginResource: procset graphviz 0 0
/coord-font-family /Times-Roman def
/default-font-family /Times-Roman def
/coordfont coord-font-family findfont 8 scalefont def
/InvScaleFactor 1.0 def
/set_scale {
dup 1 exch div /InvScaleFactor exch def
scale
} bind def
% styles
/solid { [] 0 setdash } bind def
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
/bold { 2 setlinewidth } bind def
/filled { } bind def
/unfilled { } bind def
/rounded { } bind def
/diagonals { } bind def
/tapered { } bind def
% hooks for setting color
/nodecolor { sethsbcolor } bind def
/edgecolor { sethsbcolor } bind def
/graphcolor { sethsbcolor } bind def
/nopcolor {pop pop pop} bind def
/beginpage { % i j npages
/npages exch def
/j exch def
/i exch def
/str 10 string def
npages 1 gt {
gsave
coordfont setfont
0 0 moveto
(\() show i str cvs show (,) show j str cvs show (\)) show
grestore
} if
} bind def
/set_font {
findfont exch
scalefont setfont
} def
% draw text fitted to its expected width
/alignedtext { % width text
/text exch def
/width exch def
gsave
width 0 gt {
[] 0 setdash
text stringwidth pop width exch sub text length div 0 text ashow
} if
grestore
} def
/boxprim { % xcorner ycorner xsize ysize
4 2 roll
moveto
2 copy
exch 0 rlineto
0 exch rlineto
pop neg 0 rlineto
closepath
} bind def
/ellipse_path {
/ry exch def
/rx exch def
/y exch def
/x exch def
matrix currentmatrix
newpath
x y translate
rx ry scale
0 0 1 0 360 arc
setmatrix
} bind def
/endpage { showpage } bind def
/showpage { } def
/layercolorseq
[ % layer color sequence - darkest to lightest
[0 0 0]
[.2 .8 .8]
[.4 .8 .8]
[.6 .8 .8]
[.8 .8 .8]
]
def
/layerlen layercolorseq length def
/setlayer {/maxlayer exch def /curlayer exch def
layercolorseq curlayer 1 sub layerlen mod get
aload pop sethsbcolor
/nodecolor {nopcolor} def
/edgecolor {nopcolor} def
/graphcolor {nopcolor} def
} bind def
/onlayer { curlayer ne {invis} if } def
/onlayers {
/myupper exch def
/mylower exch def
curlayer mylower lt
curlayer myupper gt
or
{invis} if
} def
/curlayer 0 def
%%EndResource
%%EndProlog
%%BeginSetup
14 default-font-family set_font
1 setmiterlimit
% /arrowlength 10 def
% /arrowwidth 5 def
% make sure pdfmark is harmless for PS-interpreters other than Distiller
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
% make '<<' and '>>' safe on PS Level 1 devices
/languagelevel where {pop languagelevel}{1} ifelse
2 lt {
userdict (<<) cvn ([) cvn load put
userdict (>>) cvn ([) cvn load put
} if
%%EndSetup
setupLatin1
%%Page: 1 1
%%PageBoundingBox: 36 36 609 687
%%PageOrientation: Portrait
0 0 1 beginpage
gsave
36 36 573 651 boxprim clip newpath
1 1 set_scale 0 rotate 40 40 translate
0 0 0 graphcolor
24 /Times-Roman set_font
264.24 10.8 moveto 37 (Dot) alignedtext
% 0
gsave
1 setlinewidth
0 0 0 nodecolor
43.26 626.48 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
39.76 622.78 moveto 7 (0) alignedtext
grestore
% 7
gsave
1 setlinewidth
0 0 0 nodecolor
16.26 557.95 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
12.76 554.25 moveto 7 (7) alignedtext
grestore
% 0->7
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 37.4 611.04 moveto
34.04 602.76 29.74 592.16 25.89 582.68 curveto
stroke
0 0 0 edgecolor
newpath 29.11 581.31 moveto
22.11 573.36 lineto
22.63 583.94 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 29.11 581.31 moveto
22.11 573.36 lineto
22.63 583.94 lineto
closepath stroke
grestore
% 14
gsave
1 setlinewidth
0 0 0 nodecolor
71.26 557.95 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
64.26 554.25 moveto 14 (14) alignedtext
grestore
% 0->14
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 49.34 611.04 moveto
52.78 602.87 57.17 592.45 61.11 583.07 curveto
stroke
0 0 0 edgecolor
newpath 64.35 584.39 moveto
65.01 573.82 lineto
57.9 581.68 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 64.35 584.39 moveto
65.01 573.82 lineto
57.9 581.68 lineto
closepath stroke
grestore
% 21
gsave
1 setlinewidth
0 0 0 nodecolor
44.26 489.42 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
37.26 485.72 moveto 14 (21) alignedtext
grestore
% 7->21
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 22.34 542.52 moveto
25.78 534.35 30.17 523.92 34.11 514.54 curveto
stroke
0 0 0 edgecolor
newpath 37.35 515.87 moveto
38.01 505.29 lineto
30.9 513.15 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 37.35 515.87 moveto
38.01 505.29 lineto
30.9 513.15 lineto
closepath stroke
grestore
% 27
gsave
1 setlinewidth
0 0 0 nodecolor
112.26 283.84 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
105.26 280.14 moveto 14 (27) alignedtext
grestore
% 7->27
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 21.7 542.43 moveto
37.53 497.22 83.72 365.34 103.31 309.4 curveto
stroke
0 0 0 edgecolor
newpath 106.65 310.47 moveto
106.65 299.88 lineto
100.04 308.16 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 106.65 310.47 moveto
106.65 299.88 lineto
100.04 308.16 lineto
closepath stroke
grestore
% 2
gsave
1 setlinewidth
0 0 0 nodecolor
243.26 283.84 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
239.76 280.14 moveto 7 (2) alignedtext
grestore
% 28
gsave
1 setlinewidth
0 0 0 nodecolor
248.26 215.32 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
241.26 211.62 moveto 14 (28) alignedtext
grestore
% 2->28
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 244.42 267.41 moveto
245 259.77 245.71 250.35 246.36 241.69 curveto
stroke
0 0 0 edgecolor
newpath 249.85 241.9 moveto
247.11 231.66 lineto
242.87 241.37 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 249.85 241.9 moveto
247.11 231.66 lineto
242.87 241.37 lineto
closepath stroke
grestore
% 3
gsave
1 setlinewidth
0 0 0 nodecolor
489.26 420.9 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
485.76 417.2 moveto 7 (3) alignedtext
grestore
% 26
gsave
1 setlinewidth
0 0 0 nodecolor
346.26 352.37 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
339.26 348.67 moveto 14 (26) alignedtext
grestore
% 3->26
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 474.76 413.15 moveto
450.93 402.06 403.12 379.82 373.01 365.81 curveto
stroke
0 0 0 edgecolor
newpath 374.45 362.62 moveto
363.91 361.58 lineto
371.5 368.97 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 374.45 362.62 moveto
363.91 361.58 lineto
371.5 368.97 lineto
closepath stroke
grestore
% 24
gsave
1 setlinewidth
0 0 0 nodecolor
298.26 283.84 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
291.26 280.14 moveto 14 (24) alignedtext
grestore
% 26->24
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 336.55 337.91 moveto
330.13 329.01 321.56 317.14 314.16 306.88 curveto
stroke
0 0 0 edgecolor
newpath 316.98 304.81 moveto
308.29 298.74 lineto
311.31 308.9 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 316.98 304.81 moveto
308.29 298.74 lineto
311.31 308.9 lineto
closepath stroke
grestore
% 5
gsave
1 setlinewidth
0 0 0 nodecolor
445.26 557.95 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
441.76 554.25 moveto 7 (5) alignedtext
grestore
% 15
gsave
1 setlinewidth
0 0 0 nodecolor
445.26 489.42 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
438.26 485.72 moveto 14 (15) alignedtext
grestore
% 5->15
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 445.26 541.52 moveto
445.26 533.88 445.26 524.46 445.26 515.79 curveto
stroke
0 0 0 edgecolor
newpath 448.76 515.77 moveto
445.26 505.77 lineto
441.76 515.77 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 448.76 515.77 moveto
445.26 505.77 lineto
441.76 515.77 lineto
closepath stroke
grestore
% 16
gsave
1 setlinewidth
0 0 0 nodecolor
297.26 489.42 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
290.26 485.72 moveto 14 (16) alignedtext
grestore
% 5->16
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 430.8 550.45 moveto
406.26 539.42 356.05 516.85 324.68 502.75 curveto
stroke
0 0 0 edgecolor
newpath 325.76 499.4 moveto
315.21 498.49 lineto
322.89 505.78 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 325.76 499.4 moveto
315.21 498.49 lineto
322.89 505.78 lineto
closepath stroke
grestore
% 22
gsave
1 setlinewidth
0 0 0 nodecolor
544.26 420.9 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
537.26 417.2 moveto 14 (22) alignedtext
grestore
% 5->22
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 454.94 544.56 moveto
471.87 521.12 507.05 472.42 527.85 443.62 curveto
stroke
0 0 0 edgecolor
newpath 530.79 445.53 moveto
533.81 435.37 lineto
525.12 441.43 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 530.79 445.53 moveto
533.81 435.37 lineto
525.12 441.43 lineto
closepath stroke
grestore
% 15->22
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 460.73 478.03 moveto
476.72 467.29 501.87 450.38 520.41 437.93 curveto
stroke
0 0 0 edgecolor
newpath 522.56 440.7 moveto
528.9 432.22 lineto
518.65 434.89 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 522.56 440.7 moveto
528.9 432.22 lineto
518.65 434.89 lineto
closepath stroke
grestore
% 8
gsave
1 setlinewidth
0 0 0 nodecolor
246.26 352.37 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
242.76 348.67 moveto 7 (8) alignedtext
grestore
% 15->8
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 429.31 478.44 moveto
393.9 454.05 308.66 395.34 268.24 367.5 curveto
stroke
0 0 0 edgecolor
newpath 270.1 364.54 moveto
259.88 361.75 lineto
266.13 370.3 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 270.1 364.54 moveto
259.88 361.75 lineto
266.13 370.3 lineto
closepath stroke
grestore
% 9
gsave
1 setlinewidth
0 0 0 nodecolor
401.26 420.9 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
397.76 417.2 moveto 7 (9) alignedtext
grestore
% 15->9
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 436.15 474.64 moveto
430.15 465.57 422.18 453.53 415.38 443.24 curveto
stroke
0 0 0 edgecolor
newpath 418.21 441.17 moveto
409.77 434.76 lineto
412.37 445.03 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 418.21 441.17 moveto
409.77 434.76 lineto
412.37 445.03 lineto
closepath stroke
grestore
% 16->27
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 285.13 475.94 moveto
253.63 440.94 169.13 347.04 131.18 304.86 curveto
stroke
0 0 0 edgecolor
newpath 133.74 302.47 moveto
124.45 297.38 lineto
128.53 307.16 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 133.74 302.47 moveto
124.45 297.38 lineto
128.53 307.16 lineto
closepath stroke
grestore
% 12
gsave
1 setlinewidth
0 0 0 nodecolor
346.26 420.9 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
339.26 417.2 moveto 14 (12) alignedtext
grestore
% 16->12
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 307.18 474.96 moveto
313.82 465.94 322.71 453.88 330.33 443.53 curveto
stroke
0 0 0 edgecolor
newpath 333.25 445.47 moveto
336.36 435.34 lineto
327.61 441.32 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 333.25 445.47 moveto
336.36 435.34 lineto
327.61 441.32 lineto
closepath stroke
grestore
% 4
gsave
1 setlinewidth
0 0 0 nodecolor
382.26 215.32 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
378.76 211.62 moveto 7 (4) alignedtext
grestore
% 16->4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 302.2 473.5 moveto
316.35 427.88 357.12 296.41 374.39 240.72 curveto
stroke
0 0 0 edgecolor
newpath 377.8 241.53 moveto
377.42 230.94 lineto
371.11 239.46 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 377.8 241.53 moveto
377.42 230.94 lineto
371.11 239.46 lineto
closepath stroke
grestore
% 20
gsave
1 setlinewidth
0 0 0 nodecolor
223.26 146.79 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
216.26 143.09 moveto 14 (20) alignedtext
grestore
% 16->20
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 293.79 473.36 moveto
282.02 418.85 243.53 240.64 228.94 173.08 curveto
stroke
0 0 0 edgecolor
newpath 232.34 172.26 moveto
226.81 163.22 lineto
225.5 173.73 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 232.34 172.26 moveto
226.81 163.22 lineto
225.5 173.73 lineto
closepath stroke
grestore
% 19
gsave
1 setlinewidth
0 0 0 nodecolor
223.26 78.26 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
216.26 74.56 moveto 14 (19) alignedtext
grestore
% 22->19
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 531.68 407.47 moveto
482.44 354.9 302.57 162.92 242.76 99.07 curveto
stroke
0 0 0 edgecolor
newpath 245.15 96.51 moveto
235.76 91.6 lineto
240.04 101.29 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 245.15 96.51 moveto
235.76 91.6 lineto
240.04 101.29 lineto
closepath stroke
grestore
% 25
gsave
1 setlinewidth
0 0 0 nodecolor
480.26 352.37 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
473.26 348.67 moveto 14 (25) alignedtext
grestore
% 22->25
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 532.23 407.38 moveto
522.93 397.72 509.89 384.17 499.2 373.05 curveto
stroke
0 0 0 edgecolor
newpath 501.7 370.61 moveto
492.25 365.83 lineto
496.66 375.46 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 501.7 370.61 moveto
492.25 365.83 lineto
496.66 375.46 lineto
closepath stroke
grestore
% 21->27
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 49.49 473.63 moveto
61.18 438.28 89.55 352.5 103.8 309.42 curveto
stroke
0 0 0 edgecolor
newpath 107.21 310.28 moveto
107.02 299.69 lineto
100.56 308.08 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 107.21 310.28 moveto
107.02 299.69 lineto
100.56 308.08 lineto
closepath stroke
grestore
% 11
gsave
1 setlinewidth
0 0 0 nodecolor
112.26 420.9 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
105.26 417.2 moveto 14 (11) alignedtext
grestore
% 21->11
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 56.74 476.22 moveto
66.58 466.59 80.51 452.96 91.96 441.76 curveto
stroke
0 0 0 edgecolor
newpath 94.71 443.97 moveto
99.41 434.47 lineto
89.81 438.97 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 94.71 443.97 moveto
99.41 434.47 lineto
89.81 438.97 lineto
closepath stroke
grestore
% 8->2
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 245.57 335.94 moveto
245.22 328.3 244.8 318.88 244.41 310.21 curveto
stroke
0 0 0 edgecolor
newpath 247.9 310.02 moveto
243.96 300.19 lineto
240.91 310.34 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 247.9 310.02 moveto
243.96 300.19 lineto
240.91 310.34 lineto
closepath stroke
grestore
% 8->27
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 231.92 344.25 moveto
209.82 333.28 167.05 312.05 139.09 298.16 curveto
stroke
0 0 0 edgecolor
newpath 140.39 294.9 moveto
129.88 293.59 lineto
137.28 301.17 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 140.39 294.9 moveto
129.88 293.59 lineto
137.28 301.17 lineto
closepath stroke
grestore
% 8->24
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 255.8 339.17 moveto
262.93 330.05 272.86 317.35 281.32 306.52 curveto
stroke
0 0 0 edgecolor
newpath 284.31 308.38 moveto
287.71 298.34 lineto
278.8 304.07 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 284.31 308.38 moveto
287.71 298.34 lineto
278.8 304.07 lineto
closepath stroke
grestore
% 24->28
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 288.15 269.38 moveto
281.37 260.36 272.3 248.29 264.52 237.94 curveto
stroke
0 0 0 edgecolor
newpath 267.17 235.65 moveto
258.37 229.76 lineto
261.58 239.86 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 267.17 235.65 moveto
258.37 229.76 lineto
261.58 239.86 lineto
closepath stroke
grestore
% 23
gsave
1 setlinewidth
0 0 0 nodecolor
308.26 215.32 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
301.26 211.62 moveto 14 (23) alignedtext
grestore
% 24->23
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 300.58 267.41 moveto
301.73 259.77 303.15 250.35 304.45 241.69 curveto
stroke
0 0 0 edgecolor
newpath 307.93 242.07 moveto
305.96 231.66 lineto
301.01 241.03 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 307.93 242.07 moveto
305.96 231.66 lineto
301.01 241.03 lineto
closepath stroke
grestore
% 11->8
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 129.51 411.34 moveto
153.3 399.52 196.29 378.18 222.93 364.95 curveto
stroke
0 0 0 edgecolor
newpath 224.55 368.06 moveto
231.95 360.48 lineto
221.43 361.79 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 224.55 368.06 moveto
231.95 360.48 lineto
221.43 361.79 lineto
closepath stroke
grestore
% 12->26
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 346.26 404.47 moveto
346.26 396.83 346.26 387.4 346.26 378.74 curveto
stroke
0 0 0 edgecolor
newpath 349.76 378.72 moveto
346.26 368.72 lineto
342.76 378.72 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 349.76 378.72 moveto
346.26 368.72 lineto
342.76 378.72 lineto
closepath stroke
grestore
% 13
gsave
1 setlinewidth
0 0 0 nodecolor
406.26 352.37 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
399.26 348.67 moveto 14 (13) alignedtext
grestore
% 18
gsave
1 setlinewidth
0 0 0 nodecolor
401.26 283.84 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
394.26 280.14 moveto 14 (18) alignedtext
grestore
% 13->18
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 405.1 335.94 moveto
404.53 328.3 403.82 318.88 403.17 310.21 curveto
stroke
0 0 0 edgecolor
newpath 406.66 309.9 moveto
402.42 300.19 lineto
399.68 310.42 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 406.66 309.9 moveto
402.42 300.19 lineto
399.68 310.42 lineto
closepath stroke
grestore
% 18->4
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 396.95 267.75 moveto
394.72 259.92 391.93 250.16 389.39 241.25 curveto
stroke
0 0 0 edgecolor
newpath 392.67 240.01 moveto
386.56 231.35 lineto
385.94 241.93 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 392.67 240.01 moveto
386.56 231.35 lineto
385.94 241.93 lineto
closepath stroke
grestore
% 18->23
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 386.32 272.16 moveto
371.54 261.58 348.71 245.25 331.55 232.98 curveto
stroke
0 0 0 edgecolor
newpath 333.34 229.95 moveto
323.17 226.98 lineto
329.27 235.64 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 333.34 229.95 moveto
323.17 226.98 lineto
329.27 235.64 lineto
closepath stroke
grestore
% 20->21
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 215.23 162.17 moveto
186.87 216.45 91.31 399.36 56.82 465.39 curveto
stroke
0 0 0 edgecolor
newpath 53.71 463.78 moveto
52.19 474.26 lineto
59.92 467.02 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 53.71 463.78 moveto
52.19 474.26 lineto
59.92 467.02 lineto
closepath stroke
grestore
% 20->19
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 217.54 131.03 moveto
216.56 123.1 216.28 113.12 216.71 104.05 curveto
stroke
0 0 0 edgecolor
newpath 220.21 104.24 moveto
217.55 93.99 lineto
213.23 103.66 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 220.21 104.24 moveto
217.55 93.99 lineto
213.23 103.66 lineto
closepath stroke
grestore
% 17
gsave
1 setlinewidth
0 0 0 nodecolor
248.26 420.9 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
241.26 417.2 moveto 14 (17) alignedtext
grestore
% 17->8
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 247.8 404.47 moveto
247.57 396.83 247.29 387.4 247.03 378.74 curveto
stroke
0 0 0 edgecolor
newpath 250.52 378.61 moveto
246.72 368.72 lineto
243.53 378.82 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 250.52 378.61 moveto
246.72 368.72 lineto
243.53 378.82 lineto
closepath stroke
grestore
% 23->20
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 293.84 203.03 moveto
280.58 192.65 260.7 177.09 245.42 165.13 curveto
stroke
0 0 0 edgecolor
newpath 247.5 162.32 moveto
237.47 158.91 lineto
243.19 167.83 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 247.5 162.32 moveto
237.47 158.91 lineto
243.19 167.83 lineto
closepath stroke
grestore
% 10
gsave
1 setlinewidth
0 0 0 nodecolor
308.26 146.79 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
301.26 143.09 moveto 14 (10) alignedtext
grestore
% 23->10
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 308.26 198.89 moveto
308.26 191.25 308.26 181.82 308.26 173.16 curveto
stroke
0 0 0 edgecolor
newpath 311.76 173.14 moveto
308.26 163.14 lineto
304.76 173.14 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 311.76 173.14 moveto
308.26 163.14 lineto
304.76 173.14 lineto
closepath stroke
grestore
% 19->20
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 228.98 93.99 moveto
229.97 101.9 230.25 111.88 229.82 120.96 curveto
stroke
0 0 0 edgecolor
newpath 226.32 120.77 moveto
228.98 131.03 lineto
233.3 121.35 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 226.32 120.77 moveto
228.98 131.03 lineto
233.3 121.35 lineto
closepath stroke
grestore
% 25->18
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 466.5 339.78 moveto
454.46 329.64 436.75 314.73 422.82 303 curveto
stroke
0 0 0 edgecolor
newpath 425.04 300.29 moveto
415.13 296.52 lineto
420.53 305.64 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 425.04 300.29 moveto
415.13 296.52 lineto
420.53 305.64 lineto
closepath stroke
grestore
% 6
gsave
1 setlinewidth
0 0 0 nodecolor
480.26 283.84 16.03 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
476.76 280.14 moveto 7 (6) alignedtext
grestore
% 25->6
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 480.26 335.94 moveto
480.26 328.3 480.26 318.88 480.26 310.21 curveto
stroke
0 0 0 edgecolor
newpath 483.76 310.19 moveto
480.26 300.19 lineto
476.76 310.19 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 483.76 310.19 moveto
480.26 300.19 lineto
476.76 310.19 lineto
closepath stroke
grestore
% 29
gsave
1 setlinewidth
0 0 0 nodecolor
112.26 489.42 21.43 16.03 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
105.26 485.72 moveto 14 (29) alignedtext
grestore
% 29->11
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 112.26 473 moveto
112.26 465.35 112.26 455.93 112.26 447.27 curveto
stroke
0 0 0 edgecolor
newpath 115.76 447.24 moveto
112.26 437.24 lineto
108.76 447.24 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 115.76 447.24 moveto
112.26 437.24 lineto
108.76 447.24 lineto
closepath stroke
grestore
endpage
showpage
grestore
%%PageTrailer
%%EndPage: 1
%%Trailer
%%Pages: 1
%%BoundingBox: 36 36 609 687
end
restore
%%EOF
| PostScript | 4 | ksemer/snap | test/graphviz/base_ngraph_Dot.ps | [
"BSD-3-Clause"
] |
# ---
# jupyter:
# kernelspec:
# display_name: R
# language: R
# name: ir
# ---
# %% [markdown]
# This notebook was created with IRKernel 0.8.12, and is not completely valid, as the code cell below contains an unexpected 'source' entry. This did cause https://github.com/mwouts/jupytext/issues/234. Note that the problem is solved when one upgrades to IRKernel 1.0.0.
# %%
library("ggplot2")
ggplot(mtcars, aes(mpg)) + stat_ecdf()
| R | 4 | st--/jupytext | tests/notebooks/mirror/ipynb_to_percent/R notebook with invalid cell keys.low.r | [
"MIT"
] |
"""
# Math package
Given the name `Math` for this package, you'd expect it have a broad and grand
scope. Surprise! Not currently. However, we do have the most useful of all
programming language math constructs: fibonacci!
People like to make fun of fibonacci but let's face it, no fibonacci, no
benchmarks. We hear from some of our engineer friends that math is very
important to programming, we call upon that particular class of engineer friends
to help us fill out this package with more maths than you can shake a stick at.
Btw, in case you are wondering, yes we can shake a stick at a lot of maths.
"""
| Pony | 2 | rtpax/ponyc | packages/math/math.pony | [
"BSD-2-Clause"
] |
.bd-extension {
border-bottom: 2px solid $scheme-main-bis;
display: block;
padding: 1.5rem;
.subtitle {
color: $text-light;
}
&:hover {
background-color: $scheme-main-bis;
.title {
color: $link;
}
.subtitle {
color: $text-strong;
}
}
}
@include tablet {
.bd-extension {
padding: 3rem 0;
}
}
| SCSS | 3 | kalpitzeta/bulma | docs/_sass/pages/extensions.scss | [
"MIT"
] |
#ifndef HDR_MALLOC_H__
#define HDR_MALLOC_H__
void *zmalloc(size_t size);
void *zcalloc_num(size_t num, size_t size);
void *zrealloc(void *ptr, size_t size);
void zfree(void *ptr);
#define hdr_malloc zmalloc
#define hdr_calloc zcalloc_num
#define hdr_realloc zrealloc
#define hdr_free zfree
#endif
| C | 3 | cndoit18/redis | deps/hdr_histogram/hdr_redis_malloc.h | [
"BSD-3-Clause"
] |
#
# program needs:
#
#
use POSIX ;
use strict ;
use Datascope ;
use Getopt::Std ;
use archive ;
use utilfunct ;
our ( $pgm, $host );
our ( $opt_V, $opt_e, $opt_i, $opt_n, $opt_v );
{ # Main program
my ( $cat, $cmd, $db, $nar, $need_assoc_ext, $need_assoc_orig, $stime, $usage ) ;
$pgm = $0 ;
$pgm =~ s".*/"" ;
elog_init( $pgm, @ARGV );
$cmd = "\n$0 @ARGV" ;
if ( ! &getopts('einvV') || ( @ARGV != 2 ) ) {
$usage = "\n\n\nUsage: $0 [-v] [-n] [-e] [-i] " ;
$usage .= "arrival_db catalog_db \n\n" ;
elog_notify( $cmd ) ;
elog_die ( $usage ) ;
}
$db = $ARGV[0] ;
$cat = $ARGV[1] ;
$opt_v = defined($opt_V) ? $opt_V : $opt_v ;
chop ($host = `uname -n` ) ;
announce( 0, 0 ) ;
elog_notify( $cmd ) ;
$stime = strydtime( now() ) ;
elog_notify( "\nstarting execution on $host $stime\n\n" ) ;
elog_notify( "\nstarting $db\n\n" ) ;
$need_assoc_orig = &find_internal_assocs( $db ) unless $opt_e ;
$need_assoc_ext = &find_external_assocs( $db, $cat ) unless $opt_i ;
elog_notify( sprintf ( "%d arrivals assoc with original $db %d arrivals assoc with $cat \n\n", $need_assoc_orig, $need_assoc_ext ) ) ;
elog_notify ( sprintf ( "Success $pgm $host %d databases processed", $#ARGV + 1 ) );
exit(0) ;
}
sub find_internal_assocs { # $need_assoc_orig = &find_internal_assocs( $db ) ;
my ( $db ) = @_ ;
my ( $arid, $arr_time, $cmd, $dbas, $dbor, $delta, $depth, $evid, $lat, $lon, $nar, $nass, $nassoc, $need_assoc_orig, $orid, $origin, $otime, $phase, $pid, $pttime, $slat, $slon, $sta, $sttime, $timeres ) ;
my ( @assoc, @db, @dbar, @dbarnj, @dbas, @dbor, @dborscr, @dbrow, @dbscr, @dbsi, @dbtmp, @dbtmpas, @dbtmpor, @origins ) ;
my ( %orids ) ;
elog_notify ( sprintf( "starting find_internal_assocs $db" ) ) ;
$need_assoc_orig = 0 ;
@db = dbopen ( $db, "r+" ) ;
@dbor = dblookup( @db, 0, "origin", 0, 0 ) ;
@dbas = dblookup( @db, 0, "assoc", 0, 0 ) ;
@dbar = dblookup( @db, 0, "arrival", 0, 0 ) ;
@dbsi = dblookup( @db, 0, "site", 0, 0 ) ;
@dbor = dbsort ( @dbor, "time" ) ;
@dborscr = dblookup( @db, 0, "origin", 0, "dbSCRATCH" ) ;
@dbarnj = dbnojoin( @dbar, @dbas ) ;
$nar = dbquery ( @dbarnj , "dbRECORD_COUNT" ) ;
if ( $nar == 0 ) {
elog_notify ( sprintf( "no unassociated arrivals in $db" ) ) ;
return ( $need_assoc_orig ) ;
} else {
elog_notify ( sprintf( "$nar unassociated arrivals in $db" ) ) ;
}
for ( $dbarnj[3] = 0 ; $dbarnj[3] < $nar ; $dbarnj[3]++ ) {
( $sta, $arr_time, $phase, $arid ) = dbgetv( @dbarnj, qw ( sta time iphase arid) ) ;
dbputv( @dborscr, "time", $arr_time ) ;
$dbsi[3] = dbfind ( @dbsi, "sta =~ /$sta/", -1 ) ;
( $slat, $slon ) = dbgetv ( @dbsi, qw ( lat lon ) ) ;
@origins = () ;
elog_debug ( sprintf ( "%s %2s arrival time %s %8.4f %9.4f", $sta, $phase, strydtime( $arr_time ), $slat, $slon ) ) if $opt_V ;
if ( $phase =~ /^P.*/ ) {
@origins = dbmatches( @dborscr, @dbor, "pinternal", "time#time::time+900" ) ;
elog_debug ( " origins @origins " ) if $opt_V;
foreach $origin ( @origins ) {
$dbor[3] = $origin ;
( $lat, $lon, $depth, $otime, $orid ) = dbgetv ( @dbor, qw ( lat lon depth time orid ) ) ;
$delta = dbex_eval ( @dbor, "distance( $lat, $lon, $slat, $slon )" ) ;
$pttime = dbex_eval ( @dbor, "ptime( $delta, $depth )" ) ;
$timeres = $arr_time - $otime - $pttime ;
elog_debug ( sprintf ( " origin time %s %8.4f %9.4f %6.2f", strydtime( $otime ), $delta, $pttime, $timeres ) ) if $opt_V;
if ( abs( $timeres ) < 3.0 ) {
elog_debug ( sprintf ( "arid %8d orid %8d timeres %6.2f", $arid, $orid, $timeres ) ) if $opt_V;
$need_assoc_orig++ ;
@dbrow = split(' ', dbgetv( @dbarnj, "arrival" ) ) ;
$orids{$orid}{$arid} = $dbrow[3] ;
}
}
}
if ( $phase =~ /^S.*/ ) {
@origins = dbmatches( @dborscr, @dbor, "sinternal", "time#time-1800::time" ) ;
foreach $origin ( @origins ) {
$dbor[3] = $origin ;
( $lat, $lon, $depth, $otime, $orid ) = dbgetv ( @dbor, qw ( lat lon depth time orid ) ) ;
$delta = dbex_eval ( @dbor, "distance( $lat, $lon, $slat, $slon )" ) ;
$sttime = dbex_eval ( @dbor, "stime( $delta, $depth )" ) ;
$timeres = $arr_time - $otime - $sttime ;
elog_debug ( sprintf ( " origin time %s %8.4f %9.4f %6.2f", strydtime( $otime ), $delta, $pttime, $timeres ) ) if $opt_V;
if ( abs( $timeres ) < 10.0 ) {
elog_debug ( sprintf ( "arid %8d orid %8d timeres %6.2f", $arid, $orid, $timeres ) ) if $opt_V;
$need_assoc_orig++ ;
@dbrow = split(' ', dbgetv( @dbarnj, "arrival" ) ) ;
$orids{$orid}{$arid} = $dbrow[3] ;
}
}
}
}
dbclose ( @db ) ;
$pid = open( DBLOC_ASSOC, "| dbloc_assoc $db tmp_assoc $db " ) ;
foreach $orid ( sort { $a <=> $b } keys %orids ) {
$evid = $orid ;
$cmd = "" ;
foreach $arid ( sort { $a <=> $b } keys %{$orids{$orid}} ) {
$cmd .= "$orids{$orid}{$arid} " ;
}
$cmd = "$evid 3. 10. \@best,PS,first " . $cmd ;
elog_debug ( $cmd ) if $opt_V;
print DBLOC_ASSOC "$cmd \n" ;
}
close ( DBLOC_ASSOC ) ;
@db = dbopen ( $db, "r+" ) ;
@dbor = dblookup( @db, 0, "origin", 0, 0 ) ;
@dbas = dblookup( @db, 0, "assoc", 0, 0 ) ;
@dbscr = dblookup( @db, 0, "assoc", 0, "dbSCRATCH" ) ;
@dbtmp = dbopen ( "tmp_assoc", "r+" ) ;
@dbtmpor = dblookup( @dbtmp, 0, "origin", 0, 0 ) ;
@dbtmpas = dblookup( @dbtmp, 0, "assoc", 0, 0 ) ;
$nass = dbquery ( @dbtmpas, "dbRECORD_COUNT" ) ;
elog_debug ( "$nass associations to process" ) ;
unless ( $opt_n ) {
for ( $dbtmpas[3] = 0 ; $dbtmpas[3] < $nass ; $dbtmpas[3]++ ) {
dbput ( @dbscr, dbget( @dbtmpas ) ) ;
$orid = dbgetv( @dbtmpas, qw ( orid ) ) ;
$dbtmpor[3] = dbfind( @dbtmpor, "orid == $orid", -1 ) ;
$orid = dbgetv( @dbtmpor, qw ( evid ) ) ;
dbputv( @dbscr, "orid", $orid ) ;
dbadd ( @dbas ) ;
}
foreach $orid ( sort { $a <=> $b } keys %orids ) {
$dbor[3] = dbfind ( @dbor, "orid == $orid", -1 ) ;
$nassoc = dbgetv ( @dbor, qw ( nass ) ) ;
@assoc = dbmatches ( @dbor, @dbas, "assoc", "orid" ) ;
elog_debug ( "orid $orid nass $nassoc assoc $#assoc " ) if $opt_V ;
dbputv( @dbor, "nass", $#assoc + 1 ) ;
}
}
dbdestroy ( @dbtmp ) unless $opt_V ;
dbclose ( @db ) ;
return ( $need_assoc_orig ) ;
}
sub find_external_assocs { # $need_assoc_ext = &find_external_assocs( $db, $cat ) ;
my ( $db, $cat ) = @_ ;
my ( $arid, $arr_time, $auth, $cmd, $delta, $depth, $evid, $lat, $lon, $maxtime, $mintime, $nar, $need_assoc_ext, $nopt, $norig, $orid, $origin, $otime, $phase, $pid, $prefor, $pttime, $slat, $slon, $sta, $sttime, $timeres ) ;
my ( @db, @dbar, @dbarnj, @dbas, @dbcat, @dbcatnm, @dbcatscr, @dbev, @dbor, @dbrow, @dbsi, @origins ) ;
my ( %orids ) ;
elog_notify ( sprintf( "starting find_external_assocs $db $cat" ) ) ;
$need_assoc_ext = 0 ;
@db = dbopen ( $db, "r+" ) ;
@dbas = dblookup( @db, 0, "assoc", 0, 0 ) ;
@dbar = dblookup( @db, 0, "arrival", 0, 0 ) ;
@dbsi = dblookup( @db, 0, "site", 0, 0 ) ;
@dbarnj = dbnojoin( @dbar, @dbas ) ;
$nar = dbquery ( @dbarnj , "dbRECORD_COUNT" ) ;
if ( $nar == 0 ) {
elog_notify ( sprintf( "no unassociated arrivals in $db" ) ) ;
return ( $need_assoc_ext ) ;
} else {
elog_notify ( sprintf( "$nar unassociated arrivals in $db" ) ) ;
}
$mintime = dbex_eval( @dbarnj, "min(time)" ) - 3600. ;
$maxtime = dbex_eval( @dbarnj, "max(time)" ) ;
elog_notify ( sprintf ( " start %s ", strydtime( $mintime ) ) ) ;
elog_notify ( sprintf ( " end %s ", strydtime( $maxtime ) ) ) ;
$cmd = "last_origin_lddate -t $mintime -e $maxtime $cat tmp_cat_$$" ;
if ( $opt_n ) {
$nopt = 1 ;
$opt_n = 0 ;
}
if ( ! &run_cmd( $cmd ) ) {
elog_die ( "$cmd failed" ) ;
}
if ( $nopt ) {
$opt_n = 1 ;
}
@dbcat = dbopen ( "tmp_cat_$$", "r+" ) ;
@dbcat = dblookup( @dbcat, 0, "origin", 0, 0 ) ;
@dbcatnm = dblookup( @dbcat, 0, "netmag", 0, 0 ) ;
@dbcatscr = dblookup( @dbcat, 0, "origin", 0, "dbSCRATCH" ) ;
for ( $dbarnj[3] = 0 ; $dbarnj[3] < $nar ; $dbarnj[3]++ ) {
( $sta, $arr_time, $phase, $arid ) = dbgetv( @dbarnj, qw ( sta time iphase arid) ) ;
$dbsi[3] = dbfind ( @dbsi, "sta =~ /$sta/", -1 ) ;
( $slat, $slon ) = dbgetv ( @dbsi, qw ( lat lon ) ) ;
@origins = () ;
elog_debug ( sprintf ( "%s %2s arrival time %s %8.4f %9.4f", $sta, $phase, strydtime( $arr_time ), $slat, $slon ) ) if $opt_V;
dbputv( @dbcatscr, "time", $arr_time ) ;
if ( $phase =~ /^P.*/ ) {
@origins = dbmatches( @dbcatscr, @dbcat, "pexternal", "time#time::time+900" ) ;
elog_debug ( " origins @origins " ) if $opt_V;
foreach $origin ( @origins ) {
$dbcat[3] = $origin ;
( $lat, $lon, $depth, $otime, $orid ) = dbgetv ( @dbcat, qw ( lat lon depth time orid ) ) ;
$delta = dbex_eval ( @dbcat, "distance( $lat, $lon, $slat, $slon )" ) ;
$pttime = dbex_eval ( @dbcat, "ptime( $delta, $depth )" ) ;
$timeres = $arr_time - $otime - $pttime ;
elog_debug ( sprintf ( " origin time %s %8.4f %9.4f %6.2f", strydtime( $otime ), $delta, $pttime, $timeres ) ) if $opt_V;
if ( abs( $timeres ) < 3.0 ) {
elog_debug ( sprintf ( "arid %8d orid %8d timeres %6.2f", $arid, $orid, $timeres ) ) if $opt_V;
$need_assoc_ext++ ;
@dbrow = split(' ', dbgetv( @dbarnj, "arrival" ) ) ;
$orids{$orid}{$arid} = $dbrow[3] ;
last ;
}
}
}
if ( $phase =~ /^S.*/ ) {
@origins = dbmatches( @dbcatscr, @dbcat, "sexternal", "time#time-1800::time" ) ;
foreach $origin ( @origins ) {
$dbcat[3] = $origin ;
( $lat, $lon, $depth, $otime, $orid ) = dbgetv ( @dbcat, qw ( lat lon depth time orid ) ) ;
$delta = dbex_eval ( @dbcat, "distance( $lat, $lon, $slat, $slon )" ) ;
$sttime = dbex_eval ( @dbcat, "stime( $delta, $depth )" ) ;
$timeres = $arr_time - $otime - $sttime ;
elog_debug ( sprintf ( " origin time %s %8.4f %9.4f %6.2f", strydtime( $otime ), $delta, $pttime, $timeres ) ) if $opt_V;
if ( abs( $timeres ) < 10.0 ) {
elog_notify ( sprintf ( "arid %8d orid %8d timeres %6.2f", $arid, $orid, $timeres ) ) ;
$need_assoc_ext++ ;
@dbrow = split(' ', dbgetv( @dbarnj, "arrival" ) ) ;
$orids{$orid}{$arid} = $dbrow[3] ;
last ;
}
}
}
}
unless ( $opt_n ) {
$pid = open( DBLOC_ASSOC, "| dbloc_assoc $db $db tmp_cat_$$" ) ;
foreach $orid ( sort { $a <=> $b } keys %orids ) {
$evid = dbnextid( @db, "evid" ) ;
$cmd = "" ;
foreach $arid ( sort { $a <=> $b } keys %{$orids{$orid}} ) {
$cmd .= "$orids{$orid}{$arid} " ;
}
$cmd = "$evid 3. 10. \@best,PS,first " . $cmd ;
elog_debug ( $cmd ) if $opt_V;
print DBLOC_ASSOC "$cmd \n" ;
}
close ( DBLOC_ASSOC ) ;
@dbor = dblookup( @db, 0, "origin", 0, 0 ) ;
@dbev = dblookup( @db, 0, "event", 0, 0 ) ;
@dbor = dbnojoin( @dbor, @dbev ) ;
$norig = dbquery ( @dbor, "dbRECORD_COUNT" ) ;
for ( $dbor[3] = 0 ; $dbor[3] < $norig ; $dbor[3]++ ) {
( $evid, $prefor, $auth ) = dbgetv ( @dbor, qw ( evid orid auth ) ) ;
dbaddv ( @dbev , "evid", $evid, "prefor", $prefor, "auth", $auth ) ;
}
}
dbclose ( @db ) ;
dbdestroy ( @dbcat ) unless $opt_V ;
unlink
return ( $need_assoc_ext ) ;
}
| XProc | 4 | jreyes1108/antelope_contrib | bin/usarray/dbassociate/dbassociate.xpl | [
"BSD-2-Clause",
"MIT"
] |
#*****************************************************************************
# *
# Make file for VMS *
# Author : J.Jansen ([email protected]) *
# Date : 10 November 1999 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
.else
.ifdef __WXGTK__
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
.else
CXX_DEFINE =
.endif
.endif
.suffixes : .cpp
.cpp.obj :
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
all :
.ifdef __WXMOTIF__
$(MMS)$(MMSQUALIFIERS) accesstest.exe
.else
.ifdef __WXGTK__
$(MMS)$(MMSQUALIFIERS) accesstest_gtk.exe
.endif
.endif
.ifdef __WXMOTIF__
accesstest.exe : accesstest.obj
cxxlink accesstest,[--.lib]vms/opt
.else
.ifdef __WXGTK__
accesstest_gtk.exe : accesstest.obj
cxxlink/exec=accesstest_gtk.exe accesstest,[--.lib]vms_gtk/opt
.endif
.endif
accesstest.obj : accesstest.cpp
| Module Management System | 4 | madanagopaltcomcast/pxCore | examples/pxScene2d/external/WinSparkle/3rdparty/wxWidgets/samples/access/descrip.mms | [
"Apache-2.0"
] |
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 13:38:09 10/11/2013
-- Design Name:
-- Module Name: blinker - Behavioral
-- Project Name:
-- Target Devices:
-- Tool versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.NUMERIC_STD.ALL;
entity blinker is
Port ( clk : in STD_LOGIC;
i : in STD_LOGIC;
o : out STD_LOGIC);
end blinker;
architecture Behavioral of blinker is
signal counter : unsigned( 23 downto 0) := (others => '0');
begin
process(clk)
begin
if rising_edge(clk) then
counter <= counter+1;
o <= i and std_logic(counter(counter'high));
end if;
end process;
end Behavioral;
| VHDL | 4 | AmigaPorts/amiga2000-gfxcard | attic/PapPro-sdram_verilog_v0.1/blinker.vhd | [
"MIT",
"IJG",
"Unlicense"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon( /*#__PURE__*/_jsx("path", {
d: "M12 7.77 18.39 18H5.61L12 7.77m-.85-2.41-8.2 13.11c-.41.67.07 1.53.85 1.53h16.4c.79 0 1.26-.86.85-1.53l-8.2-13.11c-.39-.63-1.31-.63-1.7 0z"
}), 'ChangeHistoryRounded'); | JavaScript | 4 | good-gym/material-ui | packages/material-ui-icons/lib/esm/ChangeHistoryRounded.js | [
"MIT"
] |
alias gemb="gem build *.gemspec"
alias gemp="gem push *.gem"
# gemy GEM 0.0.0 = gem yank GEM -v 0.0.0
function gemy {
gem yank $1 -v $2
} | Shell | 4 | chensanle/ohmyzsh | plugins/gem/gem.plugin.zsh | [
"MIT"
] |
From 0ffdd8eda8df364391c8ac6e1ce92c73ba9254d4 Mon Sep 17 00:00:00 2001
From: bjorn3 <[email protected]>
Date: Fri, 3 Dec 2021 12:16:30 +0100
Subject: [PATCH] Disable long running tests
---
library/core/tests/slice.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/library/core/tests/slice.rs b/library/core/tests/slice.rs
index 2c8f00a..44847ee 100644
--- a/library/core/tests/slice.rs
+++ b/library/core/tests/slice.rs
@@ -2332,7 +2332,8 @@ macro_rules! empty_max_mut {
};
}
+/*
#[cfg(not(miri))] // Comparing usize::MAX many elements takes forever in Miri (and in rustc without optimizations)
take_tests! {
slice: &[(); usize::MAX], method: take,
(take_in_bounds_max_range_to, (..usize::MAX), Some(EMPTY_MAX), &[(); 0]),
@@ -2345,3 +2347,4 @@ take_tests! {
(take_mut_oob_max_range_to_inclusive, (..=usize::MAX), None, empty_max_mut!()),
(take_mut_in_bounds_max_range_from, (usize::MAX..), Some(&mut [] as _), empty_max_mut!()),
}
+*/
--
2.26.2.7.g19db9cfb68
| Diff | 3 | david-perez/rust | compiler/rustc_codegen_gcc/patches/0028-core-Disable-long-running-tests.patch | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
(kicad_pcb (version 20171130) (host pcbnew 5.1.5+dfsg1-2build2)
(general
(thickness 1.6)
(drawings 53)
(tracks 651)
(zones 0)
(modules 55)
(nets 66)
)
(page A4)
(layers
(0 F.Cu jumper)
(1 In1.Cu power hide)
(2 In2.Cu power)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.15)
(user_trace_width 0.15)
(user_trace_width 0.2)
(user_trace_width 0.3)
(user_trace_width 0.5)
(user_trace_width 1)
(trace_clearance 0.15)
(zone_clearance 0.15)
(zone_45_only yes)
(trace_min 0.13)
(via_size 0.45)
(via_drill 0.2)
(via_min_size 0.45)
(via_min_drill 0.2)
(user_via 0.6 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 0 0)
(mod_text_width 0)
(pad_size 3.4 4)
(pad_drill 0)
(pad_to_mask_clearance 0.05)
(solder_mask_min_width 0.099)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_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 false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerb/"))
)
(net 0 "")
(net 1 +3V3)
(net 2 GND)
(net 3 +1V1)
(net 4 VBUS)
(net 5 /XOUT)
(net 6 /XIN)
(net 7 /DVI_D2+)
(net 8 /DVI_D1+)
(net 9 /DVI_D0+)
(net 10 /DVI_CK+)
(net 11 /DVI_D2-)
(net 12 /DVI_D1-)
(net 13 /DVI_D0-)
(net 14 /DVI_CK-)
(net 15 /USB_D-)
(net 16 "Net-(J1-Pad4)")
(net 17 /USB_D+)
(net 18 /SWCLK)
(net 19 /SWDIO)
(net 20 /PMOD0_0)
(net 21 /PMOD0_4)
(net 22 /PMOD0_1)
(net 23 /PMOD0_5)
(net 24 /PMOD0_2)
(net 25 /PMOD0_6)
(net 26 /PMOD0_3)
(net 27 /PMOD0_7)
(net 28 /PMOD1_7)
(net 29 /PMOD1_3)
(net 30 /PMOD1_6)
(net 31 /PMOD1_2)
(net 32 /PMOD1_5)
(net 33 /PMOD1_1)
(net 34 /PMOD1_4)
(net 35 /PMOD1_0)
(net 36 "Net-(J5-Pad13)")
(net 37 "Net-(J5-Pad14)")
(net 38 "Net-(J5-Pad19)")
(net 39 /RUN_~RST~)
(net 40 "Net-(R3-Pad2)")
(net 41 /FLASH_SD3)
(net 42 /FLASH_SCK)
(net 43 /FLASH_SD0)
(net 44 /FLASH_SD2)
(net 45 /FLASH_SD1)
(net 46 /USB_DX-)
(net 47 /USB_DX+)
(net 48 /FLASH_~CS~)
(net 49 /UART_RX)
(net 50 /UART_TX)
(net 51 /USER_LED_BUTTON)
(net 52 "Net-(D1-Pad2)")
(net 53 "Net-(D2-Pad2)")
(net 54 "Net-(R20-Pad2)")
(net 55 /uC_DVI_SCL)
(net 56 /uC_DVI_SDA)
(net 57 /uC_DVI_CEC)
(net 58 /uC_DVI_D2+)
(net 59 /uC_DVI_D1+)
(net 60 /uC_DVI_D0+)
(net 61 /uC_DVI_CK+)
(net 62 /uC_DVI_D2-)
(net 63 /uC_DVI_D1-)
(net 64 /uC_DVI_D0-)
(net 65 /uC_DVI_CK-)
(net_class Default "This is the default net class."
(clearance 0.15)
(trace_width 0.15)
(via_dia 0.45)
(via_drill 0.2)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.15)
(diff_pair_gap 0.15)
(add_net +1V1)
(add_net +3V3)
(add_net /FLASH_SCK)
(add_net /FLASH_SD0)
(add_net /FLASH_SD1)
(add_net /FLASH_SD2)
(add_net /FLASH_SD3)
(add_net /FLASH_~CS~)
(add_net /PMOD0_0)
(add_net /PMOD0_1)
(add_net /PMOD0_2)
(add_net /PMOD0_3)
(add_net /PMOD0_4)
(add_net /PMOD0_5)
(add_net /PMOD0_6)
(add_net /PMOD0_7)
(add_net /PMOD1_0)
(add_net /PMOD1_1)
(add_net /PMOD1_2)
(add_net /PMOD1_3)
(add_net /PMOD1_4)
(add_net /PMOD1_5)
(add_net /PMOD1_6)
(add_net /PMOD1_7)
(add_net /RUN_~RST~)
(add_net /SWCLK)
(add_net /SWDIO)
(add_net /UART_RX)
(add_net /UART_TX)
(add_net /USB_DX+)
(add_net /USB_DX-)
(add_net /USER_LED_BUTTON)
(add_net /XIN)
(add_net /XOUT)
(add_net /uC_DVI_CEC)
(add_net /uC_DVI_CK+)
(add_net /uC_DVI_CK-)
(add_net /uC_DVI_D0+)
(add_net /uC_DVI_D0-)
(add_net /uC_DVI_D1+)
(add_net /uC_DVI_D1-)
(add_net /uC_DVI_D2+)
(add_net /uC_DVI_D2-)
(add_net /uC_DVI_SCL)
(add_net /uC_DVI_SDA)
(add_net GND)
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(J5-Pad13)")
(add_net "Net-(J5-Pad14)")
(add_net "Net-(J5-Pad19)")
(add_net "Net-(R20-Pad2)")
(add_net "Net-(R3-Pad2)")
(add_net VBUS)
)
(net_class Tight ""
(clearance 0.13)
(trace_width 0.13)
(via_dia 0.45)
(via_drill 0.2)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.15)
(diff_pair_gap 0.15)
(add_net /DVI_CK+)
(add_net /DVI_CK-)
(add_net /DVI_D0+)
(add_net /DVI_D0-)
(add_net /DVI_D1+)
(add_net /DVI_D1-)
(add_net /DVI_D2+)
(add_net /DVI_D2-)
)
(net_class USB ""
(clearance 0.13)
(trace_width 0.15)
(via_dia 0.45)
(via_drill 0.2)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.36)
(diff_pair_gap 0.13)
(add_net /USB_D+)
(add_net /USB_D-)
)
(module picodvi:PinHeader_2x06_P2.54mm_Horizontal (layer F.Cu) (tedit 5F95C5E9) (tstamp 5FBDEB48)
(at 242.55476 108.0516 270)
(descr "Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x06 2.54mm double row")
(path /5F01769D)
(fp_text reference J4 (at 4.66 -2.18) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 02x06 (at 5.655 14.97 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 5.31 6.35) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 13.1 -1.8) (end -1.25 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.1 14.5) (end 13.1 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 14.5) (end 13.1 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.8) (end -1.25 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 13.08) (end 1.497071 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 12.32) (end 1.497071 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 13.08) (end 3.98 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 12.32) (end 3.98 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 13.08) (end 6.64 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 12.32) (end 12.64 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 12.32) (end 12.64 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 11.43) (end 6.64 11.43) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 10.54) (end 1.497071 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 9.78) (end 1.497071 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 10.54) (end 3.98 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 9.78) (end 3.98 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 10.54) (end 6.64 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 9.78) (end 12.64 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 9.78) (end 12.64 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 8.89) (end 6.64 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 8) (end 1.497071 8) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 7.24) (end 1.497071 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 8) (end 3.98 8) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 7.24) (end 3.98 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 8) (end 6.64 8) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 7.24) (end 12.64 8) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 7.24) (end 12.64 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 6.35) (end 6.64 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 5.46) (end 1.497071 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 4.7) (end 1.497071 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 5.46) (end 3.98 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 4.7) (end 3.98 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 5.46) (end 6.64 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 4.7) (end 12.64 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 4.7) (end 12.64 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 3.81) (end 6.64 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 2.92) (end 1.497071 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 2.16) (end 1.497071 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 2.92) (end 3.98 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 2.16) (end 3.98 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 2.92) (end 6.64 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 2.16) (end 12.64 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 2.16) (end 12.64 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 1.27) (end 6.64 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.38) (end 1.497071 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 -0.38) (end 1.497071 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 0.38) (end 3.98 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 -0.38) (end 3.98 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0.28) (end 12.64 0.28) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0.16) (end 12.64 0.16) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0.04) (end 12.64 0.04) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.08) (end 12.64 -0.08) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.2) (end 12.64 -0.2) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.32) (end 12.64 -0.32) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 0.38) (end 6.64 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 -0.38) (end 12.64 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.38) (end 12.64 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -1.33) (end 3.98 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 14.03) (end 6.64 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 14.03) (end 6.64 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 -1.33) (end 3.98 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 6.58 13.02) (end 12.58 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 12.38) (end 12.58 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 12.38) (end 12.58 12.38) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 13.02) (end 4.04 13.02) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 12.38) (end 4.04 12.38) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 10.48) (end 12.58 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 9.84) (end 12.58 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 9.84) (end 12.58 9.84) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 10.48) (end 4.04 10.48) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 9.84) (end 4.04 9.84) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 7.94) (end 12.58 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 7.3) (end 12.58 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 7.3) (end 12.58 7.3) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.94) (end 4.04 7.94) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.3) (end 4.04 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 5.4) (end 12.58 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 4.76) (end 12.58 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 4.76) (end 12.58 4.76) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 5.4) (end 4.04 5.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 4.76) (end 4.04 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 2.86) (end 12.58 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 2.22) (end 12.58 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 2.22) (end 12.58 2.22) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.86) (end 4.04 2.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.22) (end 4.04 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 0.32) (end 12.58 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 -0.32) (end 12.58 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 -0.32) (end 12.58 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 0.32) (end 4.04 0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 -0.32) (end 4.04 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 -0.635) (end 4.675 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 13.97) (end 4.04 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 13.97) (end 4.04 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 -1.27) (end 6.58 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 4.675 -1.27) (end 6.58 -1.27) (layer F.Fab) (width 0.1))
(pad 12 thru_hole oval (at 2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 11 thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 10 thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 9 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 8 thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 /PMOD0_7))
(pad 7 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 /PMOD0_3))
(pad 6 thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 /PMOD0_6))
(pad 5 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 /PMOD0_2))
(pad 4 thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 /PMOD0_5))
(pad 3 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 /PMOD0_1))
(pad 2 thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 /PMOD0_4))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 /PMOD0_0))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Horizontal.wrl
(offset (xyz 0 -12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module picodvi:SW_SPST_PTS815 (layer F.Cu) (tedit 5F95C5E2) (tstamp 5FA1B965)
(at 216 88 270)
(descr "C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf")
(tags "SPST Button Switch")
(path /5F0DD816)
(attr smd)
(fp_text reference SW2 (at 0 -2.6 270) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value SW_Push (at 0 2.6 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_arc (start 0.4 0) (end 0.4 -1.1) (angle 180) (layer F.Fab) (width 0.1))
(fp_line (start 2.1 1.6) (end 2.1 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 2.1 -1.6) (end -2.1 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.1 -1.6) (end -2.1 1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.1 1.6) (end 2.1 1.6) (layer F.Fab) (width 0.1))
(fp_arc (start -0.4 0) (end -0.4 1.1) (angle 180) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -1.1) (end 0.4 -1.1) (layer F.Fab) (width 0.1))
(fp_line (start 0.4 1.1) (end -0.4 1.1) (layer F.Fab) (width 0.1))
(fp_line (start 2.2 -1.7) (end -2.2 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -1.7) (end -2.2 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -0.57) (end -2.2 0.57) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 1.58) (end -2.2 1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 1.7) (end 2.2 1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 1.7) (end 2.2 1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 0.57) (end 2.2 -0.57) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 -1.58) (end 2.2 -1.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.6 0.6) (thickness 0.09)))
)
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 2.075 1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask)
(net 40 "Net-(R3-Pad2)"))
(pad ~ smd rect (at -2.075 1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask))
(pad 1 smd rect (at 2.075 -1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad "" smd rect (at -2.075 -1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask))
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_PTS810.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module picodvi:SW_SPST_PTS815 (layer F.Cu) (tedit 5F95C5D1) (tstamp 5FA1B949)
(at 211.5 88 270)
(descr "C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf")
(tags "SPST Button Switch")
(path /5F11DFDA)
(attr smd)
(fp_text reference SW1 (at 0 -2.6 270) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value SW_Push (at 0 2.6 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_arc (start 0.4 0) (end 0.4 -1.1) (angle 180) (layer F.Fab) (width 0.1))
(fp_line (start 2.1 1.6) (end 2.1 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 2.1 -1.6) (end -2.1 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.1 -1.6) (end -2.1 1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.1 1.6) (end 2.1 1.6) (layer F.Fab) (width 0.1))
(fp_arc (start -0.4 0) (end -0.4 1.1) (angle 180) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -1.1) (end 0.4 -1.1) (layer F.Fab) (width 0.1))
(fp_line (start 0.4 1.1) (end -0.4 1.1) (layer F.Fab) (width 0.1))
(fp_line (start 2.2 -1.7) (end -2.2 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -1.7) (end -2.2 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -0.57) (end -2.2 0.57) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 1.58) (end -2.2 1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 1.7) (end 2.2 1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 1.7) (end 2.2 1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 0.57) (end 2.2 -0.57) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 -1.58) (end 2.2 -1.7) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.6 0.6) (thickness 0.09)))
)
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 2.075 1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask)
(net 39 /RUN_~RST~))
(pad ~ smd rect (at -2.075 1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask))
(pad 1 smd rect (at 2.075 -1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad "" smd rect (at -2.075 -1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask))
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_PTS810.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module picodvi:SW_SPST_PTS815 (layer F.Cu) (tedit 5F95C5C5) (tstamp 5FA2AD67)
(at 207 88 270)
(descr "C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf")
(tags "SPST Button Switch")
(path /5F2CC5B5)
(attr smd)
(fp_text reference SW3 (at 0 -2.6 270) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value SW_Push (at 0 2.6 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.6 0.6) (thickness 0.09)))
)
(fp_line (start 2.2 -1.58) (end 2.2 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 0.57) (end 2.2 -0.57) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 1.7) (end 2.2 1.58) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 1.7) (end 2.2 1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 1.58) (end -2.2 1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -0.57) (end -2.2 0.57) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -1.7) (end -2.2 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 2.2 -1.7) (end -2.2 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.4 1.1) (end -0.4 1.1) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -1.1) (end 0.4 -1.1) (layer F.Fab) (width 0.1))
(fp_arc (start -0.4 0) (end -0.4 1.1) (angle 180) (layer F.Fab) (width 0.1))
(fp_line (start -2.1 1.6) (end 2.1 1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.1 -1.6) (end -2.1 1.6) (layer F.Fab) (width 0.1))
(fp_line (start 2.1 -1.6) (end -2.1 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 2.1 1.6) (end 2.1 -1.6) (layer F.Fab) (width 0.1))
(fp_arc (start 0.4 0) (end 0.4 -1.1) (angle 180) (layer F.Fab) (width 0.1))
(pad "" smd rect (at -2.075 -1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask))
(pad 1 smd rect (at 2.075 -1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad ~ smd rect (at -2.075 1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask))
(pad 2 smd rect (at 2.075 1.075 270) (size 1.05 0.65) (layers F.Cu F.Paste F.Mask)
(net 54 "Net-(R20-Pad2)"))
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_PTS810.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module picodvi:PinHeader_1x05_P2.54mm_Vertical (layer F.Cu) (tedit 5F95C5EE) (tstamp 5FBBAE0A)
(at 233.745 86.5 90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(path /5F1796A1)
(fp_text reference J2 (at 0 -2.33 90) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at 0 12.49 90) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 -1.5) (end -1.5 11.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 11.75) (end 1.5 11.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.5 11.75) (end 1.5 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.5 -1.5) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 5.08 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 /UART_RX))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 /UART_TX))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 /SWDIO))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 /SWCLK))
(pad 5 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_SMD:LED_0805_2012Metric (layer F.Cu) (tedit 5F95C5AC) (tstamp 5F3DEE54)
(at 202 103.75)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags diode)
(path /5F5E7A29)
(attr smd)
(fp_text reference D2 (at 2.1 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value LED (at 0 1.65) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.685 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 1 smd roundrect (at -0.9375 0) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 2 smd roundrect (at 0.9375 0) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 53 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module picodvi:HDMI-SS-53000 (layer F.Cu) (tedit 5F95C62A) (tstamp 5FCCBE4A)
(at 242.5 98.5 270)
(path /5EF2410D)
(attr smd)
(fp_text reference J5 (at -9.75 -2.5) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value NOT_HDMI_A (at 0 -2.45 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -7.9 -7.4) (end -7.9 -6.2) (layer F.SilkS) (width 0.15))
(fp_line (start 7.9 -7.4) (end 7.9 -6.2) (layer F.SilkS) (width 0.15))
(fp_line (start -7.9 -7.4) (end 7.9 -7.4) (layer F.SilkS) (width 0.15))
(fp_line (start -7.9 -7.4) (end 7.9 -7.4) (layer F.CrtYd) (width 0.15))
(fp_line (start 7.9 -7.4) (end 7.9 1) (layer F.CrtYd) (width 0.15))
(fp_line (start 7.9 1) (end -7.9 1) (layer F.CrtYd) (width 0.15))
(fp_line (start -7.9 1) (end -7.9 -7.4) (layer F.CrtYd) (width 0.15))
(pad SH thru_hole circle (at -7.85 -4.9 270) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 2 GND))
(pad SH thru_hole circle (at 7.85 -4.9 270) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 2 GND))
(pad SH thru_hole circle (at -7.25 0 270) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 2 GND))
(pad SH thru_hole circle (at 7.25 0 270) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 2 GND))
(pad 19 smd rect (at 4.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 38 "Net-(J5-Pad19)"))
(pad 18 smd rect (at 3.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 4 VBUS))
(pad 17 smd rect (at 3.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 16 smd rect (at 2.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 56 /uC_DVI_SDA))
(pad 15 smd rect (at 2.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 55 /uC_DVI_SCL))
(pad 14 smd rect (at 1.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 37 "Net-(J5-Pad14)"))
(pad 13 smd rect (at 1.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 36 "Net-(J5-Pad13)"))
(pad 12 smd rect (at 0.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 14 /DVI_CK-))
(pad 11 smd rect (at 0.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 10 smd rect (at -0.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 10 /DVI_CK+))
(pad 9 smd rect (at -0.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 13 /DVI_D0-))
(pad 8 smd rect (at -1.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 7 smd rect (at -1.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 9 /DVI_D0+))
(pad 6 smd rect (at -2.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 12 /DVI_D1-))
(pad 5 smd rect (at -2.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 4 smd rect (at -3.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 8 /DVI_D1+))
(pad 3 smd rect (at -3.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 11 /DVI_D2-))
(pad 2 smd rect (at -4.25 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 1 smd rect (at -4.75 0.9 270) (size 0.3 1.9) (layers F.Cu F.Paste F.Mask)
(net 7 /DVI_D2+))
)
(module picodvi:MH_M2 (layer F.Cu) (tedit 5F2B2A1F) (tstamp 5F3A0A1B)
(at 202.5 87.5)
(fp_text reference REF** (at 0 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value MH_M2 (at 0 0) (layer F.Fab) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2 0) (layer F.CrtYd) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 2.4 2.4) (drill 2.4) (layers *.Cu *.Mask)
(solder_mask_margin 0.75) (clearance 0.8))
)
(module picodvi:MH_M2 (layer F.Cu) (tedit 5F2B2A2E) (tstamp 5FA1BC33)
(at 202.5 112.5)
(fp_text reference REF** (at 0 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value MH_M2 (at 0 0) (layer F.Fab) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2 0) (layer F.CrtYd) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 2.4 2.4) (drill 2.4) (layers *.Cu *.Mask)
(solder_mask_margin 0.75) (clearance 0.8))
)
(module picodvi:MH_M2 (layer F.Cu) (tedit 5F2B2A06) (tstamp 5FA1BBFF)
(at 247.5 112.5)
(fp_text reference REF** (at 0 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value MH_M2 (at 0 0) (layer F.Fab) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2 0) (layer F.CrtYd) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 2.4 2.4) (drill 2.4) (layers *.Cu *.Mask)
(solder_mask_margin 0.75) (clearance 0.8))
)
(module picodvi:MH_M2 (layer F.Cu) (tedit 5F2B2A12) (tstamp 5F3A0A3E)
(at 247.5 87.5)
(fp_text reference REF** (at 0 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value MH_M2 (at 0 0) (layer F.Fab) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2 0) (layer F.CrtYd) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 2.4 2.4) (drill 2.4) (layers *.Cu *.Mask)
(solder_mask_margin 0.75) (clearance 0.8))
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5E5) (tstamp 5FB52ABA)
(at 229.1 96.25 45)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EF85EA7)
(attr smd)
(fp_text reference C1 (at 0 1.17 45) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 1u (at 0 -1.17 45) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 45) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5BA) (tstamp 5F16E6E1)
(at 230.7 97.85 45)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EFB2270)
(attr smd)
(fp_text reference C2 (at -2 0 135) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 45) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 45) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5BE) (tstamp 5F3E58EF)
(at 229.9 97.05 45)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EF8F783)
(attr smd)
(fp_text reference C3 (at -2 0 135) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 1u (at 0 -1.17 45) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 45) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +1V1))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5F6) (tstamp 5F16EF4E)
(at 233.4 96.75 225)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EFB75A2)
(attr smd)
(fp_text reference C4 (at -2.35 0 225) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 225) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 225) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5C2) (tstamp 5F16EDBC)
(at 231.5 98.65 45)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EF9936C)
(attr smd)
(fp_text reference C5 (at -2 0.25 135) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 45) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 45) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0 45) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +1V1))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5FA) (tstamp 5F16ED3B)
(at 232.6 95.95 225)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EFBC8B4)
(attr smd)
(fp_text reference C6 (at -0.25 1.25 225) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 225) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 225) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer F.Cu) (tedit 5F95C5B0) (tstamp 5FB85014)
(at 207.52 96.7 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F21A4DD)
(attr smd)
(fp_text reference C7 (at 2.5 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 1u (at 0 1.17 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 VBUS))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5C9) (tstamp 5F16E852)
(at 231.8 95.15 225)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EF9E20D)
(attr smd)
(fp_text reference C8 (at -2 0.015 315) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 225) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 225) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +1V1))
(pad 2 smd roundrect (at 0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5CD) (tstamp 5F2E82C4)
(at 231 94.35 225)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5EFC1D89)
(attr smd)
(fp_text reference C9 (at -2 0 135) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 225) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 225) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 225) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer F.Cu) (tedit 5F95C5A0) (tstamp 5F16F086)
(at 232.1 89.885 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F2EB612)
(attr smd)
(fp_text reference C10 (at 0 -1.75 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 10p (at 0 1.17 90) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 /XOUT))
(pad 2 smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer F.Cu) (tedit 5F95C5A5) (tstamp 5FB84B09)
(at 213.44 96.7 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F24BA17)
(attr smd)
(fp_text reference C11 (at 2.5 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 1u (at 0 1.17 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer F.Cu) (tedit 5F95C5B5) (tstamp 5FA54F05)
(at 237.3 89.835 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F2EB690)
(attr smd)
(fp_text reference C12 (at 0 -1.75) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 10p (at 0 1.17 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 6 /XIN))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer F.Cu) (tedit 5F95C627) (tstamp 5F3FB757)
(at 222.35 102.7 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F3CBFD7)
(attr smd)
(fp_text reference C13 (at 0 1.15 90) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 100n (at 0 1.17 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5DA) (tstamp 5FA47F6B)
(at 231 105.75)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F085797)
(attr smd)
(fp_text reference C22 (at 0 1.17) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 1u (at 0 -1.17) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5F95C5D6) (tstamp 5F16E68D)
(at 208.25 105.75)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F07D783)
(attr smd)
(fp_text reference C23 (at -1.75 0 -90) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 1u (at 0 -1.17) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_SMD:LED_0805_2012Metric (layer F.Cu) (tedit 5F95C5DE) (tstamp 5F383414)
(at 202 91.25)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags diode)
(path /5F036FA1)
(attr smd)
(fp_text reference D1 (at 2.1 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value LED (at 0 1.65) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.685 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 1 smd roundrect (at -0.9375 0) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 2 smd roundrect (at 0.9375 0) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 52 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_USB:USB_Micro-B_Molex-105017-0001 (layer F.Cu) (tedit 5F95C606) (tstamp 5FCCBF05)
(at 202.75 97.5 270)
(descr http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf)
(tags "Micro-USB SMD Typ-B")
(path /5F160F7D)
(attr smd)
(fp_text reference J1 (at 0 -3.1125) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value USB_OTG (at 0.3 4.3375 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user "PCB Edge" (at 0 2.6875 270) (layer Dwgs.User)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_text user %R (at 0 0.8875 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -4.4 3.64) (end 4.4 3.64) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.4 -2.46) (end 4.4 3.64) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.4 -2.46) (end 4.4 -2.46) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.4 3.64) (end -4.4 -2.46) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.9 -1.7625) (end -3.45 -1.7625) (layer F.SilkS) (width 0.12))
(fp_line (start -3.9 0.0875) (end -3.9 -1.7625) (layer F.SilkS) (width 0.12))
(fp_line (start 3.9 2.6375) (end 3.9 2.3875) (layer F.SilkS) (width 0.12))
(fp_line (start 3.75 3.3875) (end 3.75 -1.6125) (layer F.Fab) (width 0.1))
(fp_line (start -3 2.689204) (end 3 2.689204) (layer F.Fab) (width 0.1))
(fp_line (start -3.75 3.389204) (end 3.75 3.389204) (layer F.Fab) (width 0.1))
(fp_line (start -3.75 -1.6125) (end 3.75 -1.6125) (layer F.Fab) (width 0.1))
(fp_line (start -3.75 3.3875) (end -3.75 -1.6125) (layer F.Fab) (width 0.1))
(fp_line (start -3.9 2.6375) (end -3.9 2.3875) (layer F.SilkS) (width 0.12))
(fp_line (start 3.9 0.0875) (end 3.9 -1.7625) (layer F.SilkS) (width 0.12))
(fp_line (start 3.9 -1.7625) (end 3.45 -1.7625) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -2.3125) (end -1.25 -2.3125) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -2.3125) (end -1.7 -1.8625) (layer F.SilkS) (width 0.12))
(fp_line (start -1.3 -1.7125) (end -1.5 -1.9125) (layer F.Fab) (width 0.1))
(fp_line (start -1.1 -1.9125) (end -1.3 -1.7125) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -2.1225) (end -1.1 -2.1225) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -2.1225) (end -1.5 -1.9125) (layer F.Fab) (width 0.1))
(fp_line (start -1.1 -2.1225) (end -1.1 -1.9125) (layer F.Fab) (width 0.1))
(pad 6 smd rect (at 1 1.2375 270) (size 1.5 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 6 thru_hole circle (at -2.5 -1.4625 270) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Mask)
(net 2 GND))
(pad 2 smd rect (at -0.65 -1.4625 270) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)
(net 15 /USB_D-))
(pad 1 smd rect (at -1.3 -1.4625 270) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)
(net 4 VBUS))
(pad 5 smd rect (at 1.3 -1.4625 270) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 4 smd rect (at 0.65 -1.4625 270) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)
(net 16 "Net-(J1-Pad4)"))
(pad 3 smd rect (at 0 -1.4625 270) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)
(net 17 /USB_D+))
(pad 6 thru_hole circle (at 2.5 -1.4625 270) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Mask)
(net 2 GND))
(pad 6 smd rect (at -1 1.2375 270) (size 1.5 1.9) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 6 thru_hole oval (at -3.5 1.2375 90) (size 1.2 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask)
(net 2 GND))
(pad 6 thru_hole oval (at 3.5 1.2375 270) (size 1.2 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask)
(net 2 GND))
(pad 6 smd rect (at 2.9 1.2375 270) (size 1.2 1.9) (layers F.Cu F.Mask)
(net 2 GND))
(pad 6 smd rect (at -2.9 1.2375 270) (size 1.2 1.9) (layers F.Cu F.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Connector_USB.3dshapes/USB_Micro-B_Molex-105017-0001.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Horizontal (layer F.Cu) (tedit 5F95C61A) (tstamp 5FBDE218)
(at 219.6846 108.0516 270)
(descr "Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x06 2.54mm double row")
(path /5EFDD539)
(fp_text reference J3 (at 4.572 -2.29) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 02x06 (at 5.655 14.97 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start 4.675 -1.27) (end 6.58 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 -1.27) (end 6.58 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 13.97) (end 4.04 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 13.97) (end 4.04 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 -0.635) (end 4.675 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 -0.32) (end 4.04 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 0.32) (end 4.04 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 -0.32) (end 12.58 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 -0.32) (end 12.58 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 0.32) (end 12.58 0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.22) (end 4.04 2.22) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.86) (end 4.04 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 2.22) (end 12.58 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 2.22) (end 12.58 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 2.86) (end 12.58 2.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 4.76) (end 4.04 4.76) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 5.4) (end 4.04 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 4.76) (end 12.58 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 4.76) (end 12.58 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 5.4) (end 12.58 5.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.3) (end 4.04 7.3) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.94) (end 4.04 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 7.3) (end 12.58 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 7.3) (end 12.58 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 7.94) (end 12.58 7.94) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 9.84) (end 4.04 9.84) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 10.48) (end 4.04 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 9.84) (end 12.58 9.84) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 9.84) (end 12.58 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 10.48) (end 12.58 10.48) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 12.38) (end 4.04 12.38) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 13.02) (end 4.04 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 12.38) (end 12.58 12.38) (layer F.Fab) (width 0.1))
(fp_line (start 12.58 12.38) (end 12.58 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 6.58 13.02) (end 12.58 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 3.98 -1.33) (end 3.98 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 14.03) (end 6.64 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 14.03) (end 6.64 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -1.33) (end 3.98 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.38) (end 12.64 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 -0.38) (end 12.64 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 0.38) (end 6.64 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.32) (end 12.64 -0.32) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.2) (end 12.64 -0.2) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 -0.08) (end 12.64 -0.08) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0.04) (end 12.64 0.04) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0.16) (end 12.64 0.16) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0.28) (end 12.64 0.28) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 -0.38) (end 3.98 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 0.38) (end 3.98 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 -0.38) (end 1.497071 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.38) (end 1.497071 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 1.27) (end 6.64 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 2.16) (end 12.64 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 2.16) (end 12.64 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 2.92) (end 6.64 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 2.16) (end 3.98 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 2.92) (end 3.98 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 2.16) (end 1.497071 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 2.92) (end 1.497071 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 3.81) (end 6.64 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 4.7) (end 12.64 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 4.7) (end 12.64 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 5.46) (end 6.64 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 4.7) (end 3.98 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 5.46) (end 3.98 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 4.7) (end 1.497071 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 5.46) (end 1.497071 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 6.35) (end 6.64 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 7.24) (end 12.64 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 7.24) (end 12.64 8) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 8) (end 6.64 8) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 7.24) (end 3.98 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 8) (end 3.98 8) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 7.24) (end 1.497071 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 8) (end 1.497071 8) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 8.89) (end 6.64 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 9.78) (end 12.64 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 9.78) (end 12.64 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 10.54) (end 6.64 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 9.78) (end 3.98 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 10.54) (end 3.98 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 9.78) (end 1.497071 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 10.54) (end 1.497071 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 3.98 11.43) (end 6.64 11.43) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 12.32) (end 12.64 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 12.32) (end 12.64 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 12.64 13.08) (end 6.64 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 12.32) (end 3.98 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 3.582929 13.08) (end 3.98 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 12.32) (end 1.497071 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 13.08) (end 1.497071 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 14.5) (end 13.1 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.1 14.5) (end 13.1 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.1 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.31 6.35) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 /PMOD1_0))
(pad 2 thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 /PMOD1_4))
(pad 3 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 /PMOD1_1))
(pad 4 thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 /PMOD1_5))
(pad 5 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 /PMOD1_2))
(pad 6 thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 /PMOD1_6))
(pad 7 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 /PMOD1_3))
(pad 8 thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 /PMOD1_7))
(pad 9 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 10 thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 11 thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 12 thru_hole oval (at 2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Horizontal.wrl
(offset (xyz 0 -12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer B.Cu) (tedit 5F95C5F2) (tstamp 5F16ECC3)
(at 212.42 90.09 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F12763B)
(attr smd)
(fp_text reference R1 (at 0 1.17 180) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 2k2 (at 0 -1.17 180) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 39 /RUN_~RST~))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C5FF) (tstamp 5F16E828)
(at 221.9 105.5)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F0B8FA6)
(attr smd)
(fp_text reference R2 (at -2.265 0) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value DNF (at 0 1.17) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 48 /FLASH_~CS~))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C60B) (tstamp 5FA3456D)
(at 221.9 104.5 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F0C205A)
(attr smd)
(fp_text reference R3 (at 2.25 0 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 40 "Net-(R3-Pad2)"))
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 48 /FLASH_~CS~))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C623) (tstamp 5F16E6B7)
(at 225.4 98.1)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F27F8D3)
(attr smd)
(fp_text reference R4 (at -2.25 -0.2 -90) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 27R (at 0 1.17) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 46 /USB_DX-))
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 15 /USB_D-))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C62E) (tstamp 5F16E639)
(at 225.4 99.1)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F27FA34)
(attr smd)
(fp_text reference R5 (at -2.25 0.2 90) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 27R (at 0 1.17) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 17 /USB_D+))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 47 /USB_DX+))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C60E) (tstamp 5FBC17C8)
(at 204.7 92.3 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F03718A)
(attr smd)
(fp_text reference R6 (at 2.1 0 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 52 "Net-(D1-Pad2)"))
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 51 /USER_LED_BUTTON))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer B.Cu) (tedit 5F95C632) (tstamp 5F3B83C7)
(at 236.8 102.5 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5EF2F1B2)
(attr smd)
(fp_text reference R7 (at -2.5 0) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 2k2 (at 0 -1.17 90) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 57 /uC_DVI_CEC))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer B.Cu) (tedit 5F95C636) (tstamp 5F16E5E5)
(at 238.8 102.5 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5EF2F17A)
(attr smd)
(fp_text reference R8 (at -2.5 0 180) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 2k2 (at 0 -1.17 90) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 4 VBUS))
(pad 2 smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 55 /uC_DVI_SCL))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer B.Cu) (tedit 5F95C63A) (tstamp 5F3B7147)
(at 239.8 102.5 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5EF2F0F1)
(attr smd)
(fp_text reference R9 (at -2.5 0 180) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 2k2 (at 0 -1.17 90) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 4 VBUS))
(pad 2 smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 56 /uC_DVI_SDA))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module picodvi:QFN-56_EP_7x7_Pitch0.4mm (layer F.Cu) (tedit 5F95C616) (tstamp 5FB46CF4)
(at 231.25 96.5 135)
(path /5EF23DC4)
(attr smd)
(fp_text reference U1 (at -1 4.9 135) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value RP2040 (at 0 5 135) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -2.5 -3.5) (end -3.5 -2.5) (layer F.Fab) (width 0.15))
(fp_line (start -3.5 -2.5) (end -3.5 3.5) (layer F.Fab) (width 0.15))
(fp_line (start -3.5 3.5) (end 3.5 3.5) (layer F.Fab) (width 0.15))
(fp_line (start 3.5 3.5) (end 3.5 -3.5) (layer F.Fab) (width 0.15))
(fp_line (start 3.5 -3.5) (end -2.5 -3.5) (layer F.Fab) (width 0.15))
(fp_line (start 3 -3.65) (end 3.65 -3.65) (layer F.SilkS) (width 0.15))
(fp_line (start 3.65 -3.65) (end 3.65 -3) (layer F.SilkS) (width 0.15))
(fp_line (start 3 3.65) (end 3.65 3.65) (layer F.SilkS) (width 0.15))
(fp_line (start 3.65 3.65) (end 3.65 3) (layer F.SilkS) (width 0.15))
(fp_line (start -3 3.65) (end -3.65 3.65) (layer F.SilkS) (width 0.15))
(fp_line (start -3.65 3.65) (end -3.65 3) (layer F.SilkS) (width 0.15))
(fp_line (start -3 -3.65) (end -4 -3.65) (layer F.SilkS) (width 0.15))
(fp_line (start -4.25 -4.25) (end 4.25 -4.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.25 -4.25) (end 4.25 4.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.25 4.25) (end -4.25 4.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.25 4.25) (end -4.25 -4.25) (layer F.CrtYd) (width 0.05))
(pad 1 smd oval (at -3.5 -2.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 2 smd oval (at -3.5 -2.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 20 /PMOD0_0))
(pad 3 smd oval (at -3.5 -1.8 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 22 /PMOD0_1))
(pad 4 smd oval (at -3.5 -1.4 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 24 /PMOD0_2))
(pad 5 smd oval (at -3.5 -1 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 26 /PMOD0_3))
(pad 6 smd oval (at -3.5 -0.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 21 /PMOD0_4))
(pad 7 smd oval (at -3.5 -0.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 23 /PMOD0_5))
(pad 8 smd oval (at -3.5 0.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 25 /PMOD0_6))
(pad 9 smd oval (at -3.5 0.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 27 /PMOD0_7))
(pad 10 smd oval (at -3.5 1 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 11 smd oval (at -3.5 1.4 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 65 /uC_DVI_CK-))
(pad 12 smd oval (at -3.5 1.8 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 61 /uC_DVI_CK+))
(pad 13 smd oval (at -3.5 2.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 64 /uC_DVI_D0-))
(pad 14 smd oval (at -3.5 2.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 60 /uC_DVI_D0+))
(pad 15 smd oval (at -2.6 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 63 /uC_DVI_D1-))
(pad 16 smd oval (at -2.2 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 59 /uC_DVI_D1+))
(pad 17 smd oval (at -1.8 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 62 /uC_DVI_D2-))
(pad 18 smd oval (at -1.4 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 58 /uC_DVI_D2+))
(pad 19 smd oval (at -1 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 20 smd oval (at -0.6 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 6 /XIN))
(pad 21 smd oval (at -0.2 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 5 /XOUT))
(pad 22 smd oval (at 0.2 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 23 smd oval (at 0.6 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 3 +1V1))
(pad 24 smd oval (at 1 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 18 /SWCLK))
(pad 25 smd oval (at 1.4 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 19 /SWDIO))
(pad 26 smd oval (at 1.8 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 39 /RUN_~RST~))
(pad 27 smd oval (at 2.2 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 50 /UART_TX))
(pad 28 smd oval (at 2.6 3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 49 /UART_RX))
(pad 29 smd oval (at 3.5 2.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 56 /uC_DVI_SDA))
(pad 30 smd oval (at 3.5 2.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 55 /uC_DVI_SCL))
(pad 31 smd oval (at 3.5 1.8 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 57 /uC_DVI_CEC))
(pad 32 smd oval (at 3.5 1.4 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 51 /USER_LED_BUTTON))
(pad 33 smd oval (at 3.5 1 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 34 smd oval (at 3.5 0.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 35 /PMOD1_0))
(pad 35 smd oval (at 3.5 0.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 33 /PMOD1_1))
(pad 36 smd oval (at 3.5 -0.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 31 /PMOD1_2))
(pad 37 smd oval (at 3.5 -0.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 29 /PMOD1_3))
(pad 38 smd oval (at 3.5 -1 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 34 /PMOD1_4))
(pad 39 smd oval (at 3.5 -1.4 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 32 /PMOD1_5))
(pad 40 smd oval (at 3.5 -1.8 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 30 /PMOD1_6))
(pad 41 smd oval (at 3.5 -2.2 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 28 /PMOD1_7))
(pad 42 smd oval (at 3.5 -2.6 225) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 43 smd oval (at 2.6 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 44 smd oval (at 2.2 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 45 smd oval (at 1.8 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 3 +1V1))
(pad 46 smd oval (at 1.4 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 46 /USB_DX-))
(pad 47 smd oval (at 1 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 47 /USB_DX+))
(pad 48 smd oval (at 0.6 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 49 smd oval (at 0.2 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 50 smd oval (at -0.2 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 3 +1V1))
(pad 51 smd oval (at -0.6 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 41 /FLASH_SD3))
(pad 52 smd oval (at -1 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 42 /FLASH_SCK))
(pad 53 smd oval (at -1.4 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 43 /FLASH_SD0))
(pad 54 smd oval (at -1.8 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 44 /FLASH_SD2))
(pad 55 smd oval (at -2.2 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 45 /FLASH_SD1))
(pad 56 smd oval (at -2.6 -3.5 135) (size 0.2 1) (layers F.Cu F.Paste F.Mask)
(net 48 /FLASH_~CS~))
(pad 0 smd rect (at -0.8 -0.8 135) (size 1.6 1.6) (layers F.Cu F.Paste F.Mask)
(net 2 GND) (solder_paste_margin -0.1))
(pad 0 smd rect (at -0.8 0.8 135) (size 1.6 1.6) (layers F.Cu F.Paste F.Mask)
(net 2 GND) (solder_paste_margin -0.1))
(pad 0 smd rect (at 0.8 -0.8 135) (size 1.6 1.6) (layers F.Cu F.Paste F.Mask)
(net 2 GND) (solder_paste_margin -0.1))
(pad 0 smd rect (at 0.8 0.8 135) (size 1.6 1.6) (layers F.Cu F.Paste F.Mask)
(net 2 GND) (solder_paste_margin -0.1))
(model /usr/share/kicad/modules/Package_DFN_QFN.pretty/QFN-56-1EP_7x7mm_P0.4mm_EP5.7x5.7mm.kicad_mod
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23-5_HandSoldering (layer F.Cu) (tedit 5F95C612) (tstamp 5F16F050)
(at 210.45 97.15)
(descr "5-pin SOT23 package")
(tags "SOT-23-5 hand-soldering")
(path /5F1F64C4)
(attr smd)
(fp_text reference U2 (at 0 2.5) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value NCP115ASN330 (at 0 2.9) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1))
(fp_line (start -2.38 -1.8) (end 2.38 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.38 -1.8) (end -2.38 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.38 1.8) (end 2.38 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.38 1.8) (end -2.38 1.8) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 -0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
(net 4 VBUS))
(pad 2 smd rect (at -1.35 0) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 3 smd rect (at -1.35 0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
(net 4 VBUS))
(pad 4 smd rect (at 1.35 0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask))
(pad 5 smd rect (at 1.35 -0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C61E) (tstamp 5F372A2B)
(at 204.5 103.75 270)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F5E7A30)
(attr smd)
(fp_text reference R11 (at 1.9 0 270) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.17 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 53 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm (layer F.Cu) (tedit 5F95C63D) (tstamp 5FA54FCF)
(at 234.69 89.82)
(descr "SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal")
(path /5F45A2E8)
(attr smd)
(fp_text reference Y1 (at 0 -2.45) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value "12 M" (at 0 2.45) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.7 0.7) (thickness 0.105)))
)
(fp_line (start -1.6 -1.25) (end -1.6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 1.25) (end 1.6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 1.25) (end 1.6 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -1.25) (end -1.6 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.25) (end -0.6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -2 -1.65) (end -2 1.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2 1.65) (end 2 1.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.1 -1.7) (end -2.1 1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.1 1.7) (end 2.1 1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.1 1.7) (end 2.1 -1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.1 -1.7) (end -2.1 -1.7) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.1 0.85) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)
(net 5 /XOUT))
(pad 2 smd rect (at 1.1 0.85) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 3 smd rect (at 1.1 -0.85) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)
(net 6 /XIN))
(pad 4 smd rect (at -1.1 -0.85) (size 1.4 1.2) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer F.Cu) (tedit 5F95C641) (tstamp 5F6EDDBD)
(at 227.2 112.014 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5F69E395)
(attr smd)
(fp_text reference C24 (at 1.778 -0.254) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 1u (at 0 1.17 270) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 VBUS))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 5F95C645) (tstamp 5F6EDC69)
(at 224.917 110.744)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5F64B0C8)
(fp_text reference J6 (at -2.167056 0.057774) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 0 4.87) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.27 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 VBUS))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C5A8) (tstamp 5FBC1CEC)
(at 204.7 91.35)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F2DE7E9)
(attr smd)
(fp_text reference R20 (at 0 -1.17) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.17) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 51 /USER_LED_BUTTON))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 54 "Net-(R20-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_SON:WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm (layer F.Cu) (tedit 5F96A00B) (tstamp 5F3F0E0F)
(at 225.65 103 90)
(descr "WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py")
(tags "WSON DFN_QFN")
(path /5F05DB86)
(attr smd)
(fp_text reference U3 (at -2.48 3.26 90) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value W25Q16JV (at 0 3.45 90) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.3 -2.75) (end -3.3 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.3 2.75) (end 3.3 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.3 2.75) (end 3.3 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.3 -2.75) (end -3.3 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -1.5) (end -2 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -3 2.5) (end -3 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 3 2.5) (end -3 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 3 -2.5) (end 3 2.5) (layer F.Fab) (width 0.1))
(fp_line (start -2 -2.5) (end 3 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -3 2.61) (end 3 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -2.61) (end 3 -2.61) (layer F.SilkS) (width 0.12))
(pad 8 smd roundrect (at 2.6625 -1.905 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(pad 7 smd roundrect (at 2.6625 -0.635 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 41 /FLASH_SD3))
(pad 6 smd roundrect (at 2.6625 0.635 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 42 /FLASH_SCK))
(pad 5 smd roundrect (at 2.6625 1.905 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 43 /FLASH_SD0))
(pad 4 smd roundrect (at -2.6625 1.905 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 3 smd roundrect (at -2.6625 0.635 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 44 /FLASH_SD2))
(pad 2 smd roundrect (at -2.6625 -0.635 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 45 /FLASH_SD1))
(pad 1 smd roundrect (at -2.6625 -1.905 90) (size 0.775 0.5) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 48 /FLASH_~CS~))
(pad "" smd roundrect (at 0.85 1 90) (size 1.37 1.61) (layers F.Paste) (roundrect_rratio 0.182482))
(pad "" smd roundrect (at 0.85 -1 90) (size 1.37 1.61) (layers F.Paste) (roundrect_rratio 0.182482))
(pad "" smd roundrect (at -0.85 1 90) (size 1.37 1.61) (layers F.Paste) (roundrect_rratio 0.182482))
(pad "" smd roundrect (at -0.85 -1 90) (size 1.37 1.61) (layers F.Paste) (roundrect_rratio 0.182482))
(pad 9 smd roundrect (at 0 0 90) (size 3.4 4) (layers F.Cu F.Mask) (roundrect_rratio 0.07400000000000001)
(net 2 GND) (zone_connect 1) (thermal_width 0.5) (thermal_gap 0.2))
(model ${KISYS3DMOD}/Package_SON.3dshapes/WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C649) (tstamp 5FCA147C)
(at 238.25 93.175 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1310B8)
(attr smd)
(fp_text reference R12 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 7 /DVI_D2+))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 58 /uC_DVI_D2+))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C651) (tstamp 5FA1CAF4)
(at 238.25 95.075 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1983ED)
(attr smd)
(fp_text reference R13 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 8 /DVI_D1+))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 59 /uC_DVI_D1+))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C655) (tstamp 5FCA0345)
(at 238.25 96.975 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1A9577)
(attr smd)
(fp_text reference R14 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 9 /DVI_D0+))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 60 /uC_DVI_D0+))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C659) (tstamp 5FA1CACA)
(at 238.25 98.875 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1BA711)
(attr smd)
(fp_text reference R15 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 10 /DVI_CK+))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 61 /uC_DVI_CK+))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C65D) (tstamp 5FA1C90B)
(at 238.25 94.125 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1313D8)
(attr smd)
(fp_text reference R16 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 62 /uC_DVI_D2-))
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 11 /DVI_D2-))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C661) (tstamp 5FA1CA4C)
(at 238.25 96.025 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1983F4)
(attr smd)
(fp_text reference R17 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 63 /uC_DVI_D1-))
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 12 /DVI_D1-))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C666) (tstamp 5FA1CB1E)
(at 238.25 97.925 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1A957E)
(attr smd)
(fp_text reference R18 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 64 /uC_DVI_D0-))
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 13 /DVI_D0-))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer F.Cu) (tedit 5F95C66A) (tstamp 5FCA0D24)
(at 238.25 99.825 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5F1BA718)
(attr smd)
(fp_text reference R19 (at 0 -1.17 180) (layer F.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text value 270 (at 0 1.17 180) (layer F.Fab)
(effects (font (size 0 0) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 65 /uC_DVI_CK-))
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 14 /DVI_CK-))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer B.Cu) (tedit 5F95C66E) (tstamp 5FB92015)
(at 237.8 102.5 270)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5EF2BAA5)
(attr smd)
(fp_text reference R10 (at -0.138 3.866 270) (layer B.SilkS) hide
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_text value 270 (at 0 -1.17 270) (layer B.Fab)
(effects (font (size 0 0) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 36 "Net-(J5-Pad13)"))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 57 /uC_DVI_CEC))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text "Debug header" (at 240.65 88.4) (layer F.SilkS) (tstamp 5F3D9C66)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_line (start 219.9 85.45) (end 232.4 85.45) (layer F.SilkS) (width 0.12) (tstamp 5FD10083))
(gr_line (start 219.9 87.7) (end 219.9 85.45) (layer F.SilkS) (width 0.12) (tstamp 5FD0B1BE))
(gr_text RXD (at 221.2 86.6) (layer F.SilkS) (tstamp 5FD07079)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_line (start 222.4 85.45) (end 222.4 87.7) (layer F.SilkS) (width 0.12) (tstamp 5FD07078))
(gr_line (start 232.4 87.7) (end 219.9 87.7) (layer F.SilkS) (width 0.12) (tstamp 5FD07077))
(gr_line (start 224.9 85.45) (end 224.9 87.7) (layer F.SilkS) (width 0.12) (tstamp 5FD06E31))
(gr_text TXD (at 223.7 86.6) (layer F.SilkS) (tstamp 5FD06E2F)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_line (start 227.4 85.45) (end 227.4 87.7) (layer F.SilkS) (width 0.12) (tstamp 5FD06BEA))
(gr_text SWD (at 226.15 86.6) (layer F.SilkS) (tstamp 5FD06BE9)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_line (start 229.9 85.45) (end 229.9 87.7) (layer F.SilkS) (width 0.12) (tstamp 5FD069A3))
(gr_text SWC (at 228.65 86.6) (layer F.SilkS) (tstamp 5FD069A2)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_line (start 232.4 85.45) (end 232.4 87.7) (layer F.SilkS) (width 0.12) (tstamp 5FD0675B))
(gr_text GND (at 231.15 86.6) (layer F.SilkS) (tstamp 5FD06759)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text PMOD0 (at 238 113.75) (layer B.SilkS) (tstamp 5FCCE048)
(effects (font (size 0.7 0.7) (thickness 0.12)) (justify left mirror))
)
(gr_text PMOD1 (at 214.75 113.75) (layer B.SilkS) (tstamp 5FCCDB4C)
(effects (font (size 0.7 0.7) (thickness 0.12)) (justify left mirror))
)
(gr_text "PMOD0: GPIO0->7\nPMOD1: GPIO22->29 (includes ADC)\nUser LED/Button: GPIO21 (drive high\nfor LED, pullup to check button)\nUART: GPIO16/17 TX/RX (UART0)\nDVI: GPIO8->15, CK D0 D1 D2, - +\nDDC: GPIO18/19 SDA/SCL\nCEC: GPIO20" (at 225.5 96.5) (layer B.SilkS)
(effects (font (size 0.7 0.7) (thickness 0.12)) (justify left mirror))
)
(gr_text USR (at 201.803 92.837) (layer F.SilkS) (tstamp 5F3FBBFA)
(effects (font (size 0.7 0.7) (thickness 0.1)))
)
(gr_text PWR (at 201.803 105.41) (layer F.SilkS) (tstamp 5F3891AC)
(effects (font (size 0.7 0.7) (thickness 0.1)))
)
(gr_text BOOTSEL (at 215.95 91.65) (layer F.SilkS) (tstamp 5F3888C5)
(effects (font (size 0.7 0.7) (thickness 0.1)))
)
(gr_text RESET (at 211.4 91.65) (layer F.SilkS) (tstamp 5F388689)
(effects (font (size 0.7 0.7) (thickness 0.1)))
)
(gr_text USR (at 207.35 91.7) (layer F.SilkS) (tstamp 5F388249)
(effects (font (size 0.7 0.7) (thickness 0.1)))
)
(gr_text "+5V\n\n\nGND" (at 222.377 112.141) (layer F.SilkS) (tstamp 5FCB50FB)
(effects (font (size 0.7 0.7) (thickness 0.15)))
)
(gr_text "Rev C" (at 224.917 108) (layer B.SilkS) (tstamp 5F4B9E6A)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
)
(gr_text JLCJLCJLCJLC (at 245.745 98.298 90) (layer F.SilkS)
(effects (font (size 1.1 1.1) (thickness 0.15)))
)
(gr_text github.com/wren6991 (at 219.837 96.647) (layer F.SilkS)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text PicoDVI (at 220.218 95.25) (layer F.SilkS)
(effects (font (size 1.2 1.2) (thickness 0.25)))
)
(gr_text "PMOD0\nGPIO0->7" (at 235.95 105.35) (layer F.SilkS) (tstamp 5F3DEBFB)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text "PMOD1\nGPIO22->29\n" (at 213.233 102.25) (layer F.SilkS) (tstamp 5F4BA4A7)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_line (start 220.834 102.883) (end 218.294 102.883) (layer F.SilkS) (width 0.2))
(gr_line (start 220.834 105.423) (end 220.834 102.883) (layer F.SilkS) (width 0.2))
(gr_line (start 205.594 102.883) (end 208.134 102.883) (layer F.SilkS) (width 0.2))
(gr_line (start 205.594 105.423) (end 205.594 102.883) (layer F.SilkS) (width 0.2))
(gr_text 3V3 (at 206.864 106.058) (layer F.SilkS) (tstamp 5F3DD322)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 3V3 (at 206.864 104.258) (layer F.SilkS) (tstamp 5F3DD11A)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text GND (at 209.404 106.058) (layer F.SilkS) (tstamp 5F3DCF11)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text GND (at 209.404 104.258) (layer F.SilkS) (tstamp 5F3DCD0A)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text "6\n" (at 214.484 106.058) (layer F.SilkS) (tstamp 5F3DCAFC)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 7 (at 211.944 106.058) (layer F.SilkS) (tstamp 5F3DBEDA)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 5 (at 217.024 106.058) (layer F.SilkS) (tstamp 5F3DBCD3)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 3 (at 211.944 104.258) (layer F.SilkS) (tstamp 5F3DBACA)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 2 (at 214.484 104.258) (layer F.SilkS) (tstamp 5F3DB8C1)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 1 (at 217.024 104.258) (layer F.SilkS) (tstamp 5F3DB6BA)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 4 (at 219.564 106.058) (layer F.SilkS) (tstamp 5F3DAA97)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text 0 (at 219.564 104.258) (layer F.SilkS) (tstamp 5F3DA68A)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_arc (start 247 112) (end 247 115) (angle -90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 247 88) (end 250 88) (angle -90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 203 88) (end 203 85) (angle -90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 203 112) (end 200 112) (angle -90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 247 115) (end 203 115) (layer Edge.Cuts) (width 0.15))
(gr_line (start 250 88) (end 250 112) (layer Edge.Cuts) (width 0.15))
(gr_line (start 203 85) (end 247 85) (layer Edge.Cuts) (width 0.15))
(gr_line (start 200 112) (end 200 88) (layer Edge.Cuts) (width 0.15))
(via (at 233.45 95.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 232.942947 95.607053) (end 233.45 95.1) (width 0.5) (layer B.Cu) (net 1))
(segment (start 233.225001 94.875001) (end 233.45 95.1) (width 0.2) (layer F.Cu) (net 1))
(segment (start 233.225001 94.242156) (end 233.225001 94.875001) (width 0.2) (layer F.Cu) (net 1))
(segment (start 233.583452 93.883705) (end 233.225001 94.242156) (width 0.2) (layer F.Cu) (net 1))
(segment (start 232.942947 95.607053) (end 233.742947 96.407053) (width 0.5) (layer B.Cu) (net 1))
(via (at 233.95 97.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 233.742947 96.407053) (end 233.95 96.614106) (width 0.5) (layer B.Cu) (net 1))
(segment (start 233.95 96.614106) (end 233.95 97.1) (width 0.5) (layer B.Cu) (net 1))
(via (at 228.05 96.6) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 228.757053 96.592947) (end 228.057053 96.592947) (width 0.5) (layer B.Cu) (net 1))
(segment (start 228.057053 96.592947) (end 228.05 96.6) (width 0.5) (layer B.Cu) (net 1))
(via (at 226.6 96.55) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1) (tstamp 5FB5C6B8) (status 40000))
(via (at 231.25 101.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1) (tstamp 5FB5F992) (status 40000))
(via (at 230.9 93.6) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 231.342947 94.007053) (end 231.307053 94.007053) (width 0.5) (layer B.Cu) (net 1))
(segment (start 231.307053 94.007053) (end 230.9 93.6) (width 0.5) (layer B.Cu) (net 1))
(via (at 231.25 100.2) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1) (tstamp 5FB6EA26) (status 40000))
(segment (start 230.357053 98.192947) (end 229.442947 98.192947) (width 0.5) (layer B.Cu) (net 1))
(via (at 229.4 98.15) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 229.442947 98.192947) (end 229.4 98.15) (width 0.5) (layer B.Cu) (net 1))
(via (at 213.85 95.7) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1) (tstamp 5FB79D2F) (status 40000))
(via (at 213.05 95.7) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1) (tstamp 5FB8827A) (status 40000))
(segment (start 236.8 102.985) (end 236.8 103.6) (width 0.15) (layer B.Cu) (net 1))
(via (at 236.8 103.6) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 229.87 106.395) (end 229.87 108.077) (width 0.5) (layer B.Cu) (net 1))
(segment (start 230.515 105.75) (end 229.87 106.395) (width 0.5) (layer B.Cu) (net 1))
(segment (start 207.01 106.505) (end 207.01 108.077) (width 0.5) (layer B.Cu) (net 1))
(segment (start 207.765 105.75) (end 207.01 106.505) (width 0.5) (layer B.Cu) (net 1))
(via (at 205.27 103.28) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 204.5 103.265) (end 205.255 103.265) (width 0.15) (layer F.Cu) (net 1))
(segment (start 205.255 103.265) (end 205.27 103.28) (width 0.15) (layer F.Cu) (net 1))
(via (at 222.34 100.74) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 223.745 100.3375) (end 222.7425 100.3375) (width 0.5) (layer F.Cu) (net 1))
(segment (start 222.7425 100.3375) (end 222.34 100.74) (width 0.5) (layer F.Cu) (net 1))
(segment (start 222.34 100.74) (end 222.34 101.32) (width 0.5) (layer F.Cu) (net 1))
(via (at 222.33 101.33) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 222.34 101.32) (end 222.33 101.33) (width 0.5) (layer F.Cu) (net 1))
(segment (start 222.35 101.35) (end 222.33 101.33) (width 0.5) (layer F.Cu) (net 1))
(segment (start 222.35 102.215) (end 222.35 101.35) (width 0.5) (layer F.Cu) (net 1))
(via (at 213.65 90.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 212.905 90.09) (end 213.64 90.09) (width 0.15) (layer B.Cu) (net 1))
(segment (start 213.64 90.09) (end 213.65 90.1) (width 0.15) (layer B.Cu) (net 1))
(via (at 221.41 106.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 1))
(segment (start 221.415 106.245) (end 221.41 106.25) (width 0.15) (layer F.Cu) (net 1))
(segment (start 221.415 105.5) (end 221.415 106.245) (width 0.15) (layer F.Cu) (net 1))
(via (at 231.5 96.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB588C7) (status 40000))
(via (at 242.85 94.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FA5E280) (status 40000))
(via (at 242.85 95.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FA5E700) (status 40000))
(via (at 242.85 97.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FA5EB80) (status 40000))
(via (at 242.85 98.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FA5F000) (status 40000))
(via (at 240.5 101.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB961EC) (status 40000))
(via (at 243 101.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FA5F480) (status 40000))
(via (at 230.25 95.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB588CC) (status 40000))
(via (at 231 96.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB4F3B1) (status 40000))
(via (at 232.25 97.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB4F5F1) (status 40000))
(via (at 206.75 97.2) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB78AF7) (status 40000))
(via (at 207.5 97.95) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB78D37) (status 40000))
(via (at 213.05 97.9) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB7AF4A) (status 40000))
(via (at 213.85 97.9) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB7B18A) (status 40000))
(segment (start 209.135 97.185) (end 209.1 97.15) (width 0.5) (layer F.Cu) (net 2))
(via (at 235.25 99.35) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB10F6) (status 40000))
(via (at 232 101.8) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB157F) (status 40000))
(via (at 230.67 101.78) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB17BF) (status 40000))
(via (at 238.7 107.52) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB19FF) (status 40000))
(via (at 223.14 103.19) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB4D28) (status 40000))
(via (at 221.49 102.78) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB4F68) (status 40000))
(segment (start 225.46 103.19) (end 225.65 103) (width 0.5) (layer F.Cu) (net 2))
(segment (start 223.14 103.19) (end 225.46 103.19) (width 0.5) (layer F.Cu) (net 2))
(segment (start 225.65 103) (end 225.65 103.7575) (width 0.5) (layer F.Cu) (net 2))
(segment (start 225.65 103.7575) (end 227.555 105.6625) (width 0.5) (layer F.Cu) (net 2))
(via (at 238.26 92.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB6AE3) (status 40000))
(via (at 237.3 91.12) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB6BF2) (status 40000))
(via (at 238.13 90.31) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB6BF4) (status 40000))
(via (at 232.1 88.64) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB6BF8) (status 40000))
(via (at 233.93 92.81) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB7A62) (status 40000))
(via (at 228.76 91.32) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB8035) (status 40000))
(via (at 227.44 92.57) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB8275) (status 40000))
(via (at 217.87 92.85) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB84B5) (status 40000))
(via (at 237.3 100.55) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB9B78) (status 40000))
(via (at 249.5 88.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1C4) (status 40000))
(via (at 246.5 85.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1C7) (status 40000))
(via (at 203.5 85.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1C9) (status 40000))
(via (at 200.5 88.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1CB) (status 40000))
(via (at 200.5 111.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1CD) (status 40000))
(via (at 203.5 114.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1CF) (status 40000))
(via (at 246.5 114.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1D1) (status 40000))
(via (at 249.5 111.5) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBBA1D3) (status 40000))
(via (at 225.9 95.85) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBC0423) (status 40000))
(via (at 226.05 97.3) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBC0663) (status 40000))
(via (at 210.45 97.15) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBC734D) (status 40000))
(via (at 210.45 98.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBC734F) (status 40000))
(via (at 224.15 97.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBCDD7B) (status 40000))
(via (at 224.35 99.8) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBCDFBB) (status 40000))
(via (at 220.9 99.45) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBCE1FB) (status 40000))
(via (at 226.95 105.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC96FC5) (status 40000))
(via (at 236.15 111.15) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC99F5C) (status 40000))
(via (at 238.55 111.35) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9A19C) (status 40000))
(via (at 240.6 111.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9A3DC) (status 40000))
(via (at 222.2 97.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9B3A4) (status 40000))
(via (at 218.1 97.2) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9B5E4) (status 40000))
(via (at 216.75 98.4) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9B824) (status 40000))
(via (at 235.45 106.8) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9C70F) (status 40000))
(via (at 241.05 107.3) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FC9C94F) (status 40000))
(via (at 240.375 94.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCA6926) (status 40000))
(via (at 240.375 95.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCA701F) (status 40000))
(via (at 240.375 97.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCA725F) (status 40000))
(via (at 240.375 98.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCA74A2) (status 40000))
(via (at 239.725 99.6) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCAA51F) (status 40000))
(via (at 238.2 100.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCAA75F) (status 40000))
(via (at 239.74 93.47) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCAABE0) (status 40000))
(via (at 235.22 93.87) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCABBA5) (status 40000))
(via (at 236.91 92.91) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCAC568) (status 40000))
(via (at 235.5 91.72) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCACD2B) (status 40000))
(segment (start 234.431981 94.732233) (end 235.1 94.064214) (width 0.15) (layer F.Cu) (net 2))
(segment (start 235.1 93.99) (end 235.22 93.87) (width 0.15) (layer F.Cu) (net 2))
(segment (start 235.1 94.064214) (end 235.1 93.99) (width 0.15) (layer F.Cu) (net 2))
(via (at 220.21 109.34) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCECDFA) (status 40000))
(via (at 217.88 109.11) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCED4CE) (status 40000))
(via (at 215.3 109.15) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCED70E) (status 40000))
(via (at 215.99 105.55) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCED94E) (status 40000))
(via (at 212.77 109.14) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCEE092) (status 40000))
(via (at 220.59 106.16) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCFADCF) (status 40000))
(via (at 225.64 105.07) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCFB010) (status 40000))
(via (at 225.64 100.92) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCFB250) (status 40000))
(via (at 222.08 106.29) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FCFD078) (status 40000))
(segment (start 233.16 89.4) (end 233.59 88.97) (width 0.3) (layer F.Cu) (net 2))
(segment (start 232.1 89.4) (end 233.16 89.4) (width 0.3) (layer F.Cu) (net 2))
(segment (start 236.14 90.32) (end 235.79 90.67) (width 0.3) (layer F.Cu) (net 2))
(segment (start 237.3 90.32) (end 236.14 90.32) (width 0.3) (layer F.Cu) (net 2))
(segment (start 233.26 88.64) (end 233.59 88.97) (width 0.3) (layer F.Cu) (net 2))
(segment (start 232.1 88.64) (end 233.26 88.64) (width 0.3) (layer F.Cu) (net 2))
(via (at 231.38 89.4) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FBB6BF6) (status 40000))
(via (at 223.14 101.2) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB5567B) (status 40000))
(via (at 223.14 104.8) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2) (tstamp 5FB5567D) (status 40000))
(via (at 232.760748 94.13596) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 3))
(segment (start 233.30061 93.600862) (end 233.295846 93.600862) (width 0.2) (layer F.Cu) (net 3))
(segment (start 233.295846 93.600862) (end 232.760748 94.13596) (width 0.2) (layer F.Cu) (net 3))
(segment (start 232.142947 94.753761) (end 232.760748 94.13596) (width 0.5) (layer B.Cu) (net 3))
(segment (start 232.142947 94.807053) (end 232.142947 94.753761) (width 0.5) (layer B.Cu) (net 3))
(via (at 228.45 97.35) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 3))
(via (at 230.3 99.2) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 3) (tstamp 5FB658A7))
(via (at 229.899992 98.849992) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 3))
(via (at 232.25 93.75) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 3) (tstamp 5FB6A758))
(segment (start 232.374788 93.75) (end 232.760748 94.13596) (width 0.5) (layer B.Cu) (net 3))
(segment (start 232.25 93.75) (end 232.374788 93.75) (width 0.5) (layer B.Cu) (net 3))
(segment (start 229.085021 97.392947) (end 228.85 97.627968) (width 0.5) (layer B.Cu) (net 3))
(segment (start 229.557053 97.392947) (end 229.085021 97.392947) (width 0.5) (layer B.Cu) (net 3))
(segment (start 228.45 97.35) (end 228.8 97.7) (width 0.5) (layer B.Cu) (net 3))
(segment (start 228.85 97.627968) (end 228.85 97.7) (width 0.5) (layer B.Cu) (net 3))
(segment (start 228.8 97.7) (end 228.85 97.7) (width 0.5) (layer B.Cu) (net 3))
(via (at 228.85 97.7) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 3))
(segment (start 230.2 99.15) (end 229.899992 98.849992) (width 0.5) (layer B.Cu) (net 3))
(segment (start 231.157053 98.992947) (end 231 99.15) (width 0.5) (layer B.Cu) (net 3))
(segment (start 231 99.15) (end 230.2 99.15) (width 0.5) (layer B.Cu) (net 3))
(via (at 209.1 95.35) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 4))
(segment (start 209.1 96.2) (end 209.1 95.35) (width 0.15) (layer F.Cu) (net 4))
(segment (start 209.1 98.1) (end 209.1 98.800008) (width 0.15) (layer F.Cu) (net 4))
(via (at 209.1 98.800008) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 4))
(segment (start 209.1 95.35) (end 209.1 98.800008) (width 1) (layer In2.Cu) (net 4))
(segment (start 238.8 102.985) (end 239.8 102.985) (width 0.15) (layer B.Cu) (net 4))
(segment (start 240.135 102.65) (end 240.27497 102.65) (width 0.15) (layer B.Cu) (net 4))
(segment (start 240.593168 102.65) (end 240.27497 102.65) (width 1) (layer In2.Cu) (net 4))
(segment (start 239.8 102.985) (end 240.135 102.65) (width 0.15) (layer B.Cu) (net 4))
(segment (start 242.049998 114.25) (end 244.85 111.449998) (width 1) (layer In2.Cu) (net 4))
(segment (start 243.1 102.65) (end 240.593168 102.65) (width 1) (layer In2.Cu) (net 4))
(segment (start 244.85 111.449998) (end 244.85 104.4) (width 1) (layer In2.Cu) (net 4))
(segment (start 244.85 104.4) (end 243.1 102.65) (width 1) (layer In2.Cu) (net 4))
(via (at 240.27497 102.65) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 4))
(segment (start 240.27497 102.331802) (end 240.27497 102.65) (width 0.3) (layer F.Cu) (net 4))
(segment (start 240.752001 102.275001) (end 240.331771 102.275001) (width 0.3) (layer F.Cu) (net 4))
(segment (start 240.331771 102.275001) (end 240.27497 102.331802) (width 0.3) (layer F.Cu) (net 4))
(segment (start 241.6 102.25) (end 240.777002 102.25) (width 0.3) (layer F.Cu) (net 4))
(segment (start 240.777002 102.25) (end 240.752001 102.275001) (width 0.3) (layer F.Cu) (net 4))
(segment (start 207.944994 98.800008) (end 209.1 98.800008) (width 1) (layer In2.Cu) (net 4))
(segment (start 201.041 105.704002) (end 207.944994 98.800008) (width 1) (layer In2.Cu) (net 4))
(segment (start 201.041 107.188) (end 201.041 105.704002) (width 1) (layer In2.Cu) (net 4))
(segment (start 224.917 110.744) (end 221.411 114.25) (width 1) (layer In2.Cu) (net 4))
(segment (start 208.103 114.25) (end 201.041 107.188) (width 1) (layer In2.Cu) (net 4))
(segment (start 221.411 114.25) (end 208.103 114.25) (width 1) (layer In2.Cu) (net 4))
(segment (start 224.917 110.744) (end 224.944 110.744) (width 1) (layer In2.Cu) (net 4))
(segment (start 228.45 114.25) (end 242.049998 114.25) (width 1) (layer In2.Cu) (net 4))
(segment (start 224.944 110.744) (end 228.45 114.25) (width 1) (layer In2.Cu) (net 4))
(segment (start 226.415 110.744) (end 227.2 111.529) (width 0.5) (layer F.Cu) (net 4))
(segment (start 224.917 110.744) (end 226.415 110.744) (width 0.5) (layer F.Cu) (net 4))
(segment (start 233.29 90.37) (end 233.59 90.67) (width 0.15) (layer F.Cu) (net 5))
(segment (start 232.1 90.37) (end 233.29 90.37) (width 0.15) (layer F.Cu) (net 5))
(segment (start 234.41 93.622843) (end 233.866295 94.166548) (width 0.15) (layer F.Cu) (net 5))
(segment (start 234.41 92.54) (end 234.41 93.622843) (width 0.15) (layer F.Cu) (net 5))
(segment (start 233.59 90.67) (end 233.59 91.72) (width 0.15) (layer F.Cu) (net 5))
(segment (start 233.59 91.72) (end 234.41 92.54) (width 0.15) (layer F.Cu) (net 5))
(segment (start 236.92 88.97) (end 237.3 89.35) (width 0.15) (layer F.Cu) (net 6))
(segment (start 235.79 88.97) (end 236.92 88.97) (width 0.15) (layer F.Cu) (net 6))
(segment (start 234.710011 89.949989) (end 235.69 88.97) (width 0.15) (layer F.Cu) (net 6))
(segment (start 235.69 88.97) (end 235.79 88.97) (width 0.15) (layer F.Cu) (net 6))
(segment (start 234.710011 93.888517) (end 234.710011 89.949989) (width 0.15) (layer F.Cu) (net 6))
(segment (start 234.149138 94.44939) (end 234.710011 93.888517) (width 0.15) (layer F.Cu) (net 6))
(segment (start 240.174999 93.75) (end 241.6 93.75) (width 0.15) (layer F.Cu) (net 7))
(segment (start 239.824999 94.1) (end 240.174999 93.75) (width 0.15) (layer F.Cu) (net 7))
(segment (start 239.66 94.1) (end 239.824999 94.1) (width 0.15) (layer F.Cu) (net 7))
(segment (start 238.735 93.175) (end 239.66 94.1) (width 0.15) (layer F.Cu) (net 7))
(segment (start 240.225 95.25) (end 241.6 95.25) (width 0.15) (layer F.Cu) (net 8))
(segment (start 239.662134 95.6) (end 239.875 95.6) (width 0.15) (layer F.Cu) (net 8))
(segment (start 239.462134 95.4) (end 239.662134 95.6) (width 0.15) (layer F.Cu) (net 8))
(segment (start 239.875 95.6) (end 240.225 95.25) (width 0.15) (layer F.Cu) (net 8))
(segment (start 238.735 95.075) (end 239.06 95.4) (width 0.15) (layer F.Cu) (net 8))
(segment (start 239.06 95.4) (end 239.462134 95.4) (width 0.15) (layer F.Cu) (net 8))
(segment (start 239.825 97.15) (end 240.225 96.75) (width 0.15) (layer F.Cu) (net 9))
(segment (start 239.06 97.3) (end 239.35 97.3) (width 0.15) (layer F.Cu) (net 9))
(segment (start 239.35 97.3) (end 239.5 97.15) (width 0.15) (layer F.Cu) (net 9))
(segment (start 240.8 96.75) (end 241.6 96.75) (width 0.15) (layer F.Cu) (net 9))
(segment (start 238.735 96.975) (end 239.06 97.3) (width 0.15) (layer F.Cu) (net 9))
(segment (start 239.5 97.15) (end 239.825 97.15) (width 0.15) (layer F.Cu) (net 9))
(segment (start 240.225 96.75) (end 240.8 96.75) (width 0.15) (layer F.Cu) (net 9))
(segment (start 240.174999 98.25) (end 241.6 98.25) (width 0.15) (layer F.Cu) (net 10))
(segment (start 239.824999 98.6) (end 240.174999 98.25) (width 0.15) (layer F.Cu) (net 10))
(segment (start 239.535735 98.6) (end 239.824999 98.6) (width 0.15) (layer F.Cu) (net 10))
(segment (start 239.260735 98.875) (end 239.535735 98.6) (width 0.15) (layer F.Cu) (net 10))
(segment (start 238.735 98.875) (end 239.260735 98.875) (width 0.15) (layer F.Cu) (net 10))
(segment (start 238.735 94.125) (end 239.260735 94.125) (width 0.15) (layer F.Cu) (net 11))
(segment (start 239.824999 94.4) (end 240.174999 94.75) (width 0.15) (layer F.Cu) (net 11))
(segment (start 239.260735 94.125) (end 239.535735 94.4) (width 0.15) (layer F.Cu) (net 11))
(segment (start 239.535735 94.4) (end 239.824999 94.4) (width 0.15) (layer F.Cu) (net 11))
(segment (start 240.174999 94.75) (end 241.6 94.75) (width 0.15) (layer F.Cu) (net 11))
(segment (start 240.174999 96.25) (end 241.6 96.25) (width 0.15) (layer F.Cu) (net 12))
(segment (start 239.337866 95.7) (end 239.537866 95.9) (width 0.15) (layer F.Cu) (net 12))
(segment (start 239.824999 95.9) (end 240.174999 96.25) (width 0.15) (layer F.Cu) (net 12))
(segment (start 239.537866 95.9) (end 239.824999 95.9) (width 0.15) (layer F.Cu) (net 12))
(segment (start 238.735 96.025) (end 239.06 95.7) (width 0.15) (layer F.Cu) (net 12))
(segment (start 239.06 95.7) (end 239.337866 95.7) (width 0.15) (layer F.Cu) (net 12))
(segment (start 240.8 97.75) (end 241.6 97.75) (width 0.15) (layer F.Cu) (net 13))
(segment (start 239.06 97.6) (end 239.475 97.6) (width 0.15) (layer F.Cu) (net 13))
(segment (start 239.475 97.6) (end 239.625 97.45) (width 0.15) (layer F.Cu) (net 13))
(segment (start 239.925 97.45) (end 240.225 97.75) (width 0.15) (layer F.Cu) (net 13))
(segment (start 238.735 97.925) (end 239.06 97.6) (width 0.15) (layer F.Cu) (net 13))
(segment (start 239.625 97.45) (end 239.925 97.45) (width 0.15) (layer F.Cu) (net 13))
(segment (start 240.225 97.75) (end 240.8 97.75) (width 0.15) (layer F.Cu) (net 13))
(segment (start 239.824999 98.9) (end 240.174999 99.25) (width 0.15) (layer F.Cu) (net 14))
(segment (start 239.66 98.9) (end 239.824999 98.9) (width 0.15) (layer F.Cu) (net 14))
(segment (start 240.174999 99.25) (end 241.6 99.25) (width 0.15) (layer F.Cu) (net 14))
(segment (start 238.735 99.825) (end 239.66 98.9) (width 0.15) (layer F.Cu) (net 14))
(segment (start 205.694939 96.508578) (end 205.694939 96.444939) (width 0.36) (layer F.Cu) (net 15))
(segment (start 204.7675 96.93) (end 205.273517 96.93) (width 0.36) (layer F.Cu) (net 15))
(segment (start 205.273517 96.93) (end 205.694939 96.508578) (width 0.36) (layer F.Cu) (net 15))
(via (at 205.694939 96.444939) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 15))
(segment (start 204.6875 96.85) (end 204.7675 96.93) (width 0.36) (layer F.Cu) (net 15))
(segment (start 204.2125 96.85) (end 204.6875 96.85) (width 0.36) (layer F.Cu) (net 15))
(segment (start 205.694939 96.444939) (end 205.758578 96.444939) (width 0.36) (layer B.Cu) (net 15))
(segment (start 205.758578 96.444939) (end 207.948517 94.255) (width 0.36) (layer B.Cu) (net 15))
(segment (start 207.948517 94.255) (end 214.201484 94.255) (width 0.36) (layer B.Cu) (net 15))
(segment (start 214.201484 94.255) (end 218.301484 98.355) (width 0.36) (layer B.Cu) (net 15))
(segment (start 218.301484 98.355) (end 221.555 98.355) (width 0.36) (layer B.Cu) (net 15))
(segment (start 221.555 98.355) (end 221.6 98.31) (width 0.36) (layer B.Cu) (net 15))
(via (at 221.6 98.31) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 15))
(segment (start 224.905 98.095) (end 224.65 98.35) (width 0.36) (layer F.Cu) (net 15))
(segment (start 224.668516 98.35) (end 223.7 98.35) (width 0.36) (layer F.Cu) (net 15))
(segment (start 221.645 98.355) (end 221.6 98.31) (width 0.36) (layer F.Cu) (net 15))
(segment (start 223.641484 98.355) (end 221.645 98.355) (width 0.36) (layer F.Cu) (net 15))
(segment (start 206.041422 96.855061) (end 206.105061 96.855061) (width 0.36) (layer F.Cu) (net 17))
(segment (start 205.476483 97.42) (end 206.041422 96.855061) (width 0.36) (layer F.Cu) (net 17))
(segment (start 204.7675 97.42) (end 205.476483 97.42) (width 0.36) (layer F.Cu) (net 17))
(segment (start 204.6875 97.5) (end 204.7675 97.42) (width 0.36) (layer F.Cu) (net 17))
(segment (start 204.2125 97.5) (end 204.6875 97.5) (width 0.36) (layer F.Cu) (net 17))
(via (at 206.105061 96.855061) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 17))
(segment (start 206.105061 96.791422) (end 208.151483 94.745) (width 0.36) (layer B.Cu) (net 17))
(segment (start 206.105061 96.855061) (end 206.105061 96.791422) (width 0.36) (layer B.Cu) (net 17))
(segment (start 208.151483 94.745) (end 213.998516 94.745) (width 0.36) (layer B.Cu) (net 17))
(segment (start 213.998516 94.745) (end 218.098516 98.845) (width 0.36) (layer B.Cu) (net 17))
(segment (start 221.555 98.845) (end 221.6 98.89) (width 0.36) (layer B.Cu) (net 17))
(segment (start 218.098516 98.845) (end 221.555 98.845) (width 0.36) (layer B.Cu) (net 17))
(via (at 221.6 98.89) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 17))
(segment (start 224.65 98.85) (end 223.478516 98.85) (width 0.36) (layer F.Cu) (net 17))
(segment (start 224.9 99.1) (end 224.645 98.845) (width 0.36) (layer F.Cu) (net 17))
(segment (start 221.645 98.845) (end 221.6 98.89) (width 0.36) (layer F.Cu) (net 17))
(segment (start 223.438516 98.845) (end 221.645 98.845) (width 0.36) (layer F.Cu) (net 17))
(segment (start 231.644267 87.880011) (end 239.984989 87.880011) (width 0.15) (layer F.Cu) (net 18))
(segment (start 230.800011 88.724267) (end 231.644267 87.880011) (width 0.15) (layer F.Cu) (net 18))
(segment (start 239.984989 87.880011) (end 241.365 86.5) (width 0.15) (layer F.Cu) (net 18))
(segment (start 233.450011 92.885775) (end 233.450011 92.175732) (width 0.15) (layer F.Cu) (net 18))
(segment (start 233.450011 92.175732) (end 232.524268 91.249989) (width 0.15) (layer F.Cu) (net 18))
(segment (start 233.017767 93.318019) (end 233.450011 92.885775) (width 0.15) (layer F.Cu) (net 18))
(segment (start 232.524268 91.249989) (end 231.824989 91.249989) (width 0.15) (layer F.Cu) (net 18))
(segment (start 231.824989 91.249989) (end 230.800011 90.225011) (width 0.15) (layer F.Cu) (net 18))
(segment (start 230.800011 90.225011) (end 230.800011 88.724267) (width 0.15) (layer F.Cu) (net 18))
(segment (start 231.52 87.58) (end 237.745 87.58) (width 0.15) (layer F.Cu) (net 19))
(segment (start 230.5 88.6) (end 231.52 87.58) (width 0.15) (layer F.Cu) (net 19))
(segment (start 233.15 92.620101) (end 233.15 92.3) (width 0.15) (layer F.Cu) (net 19))
(segment (start 233.15 92.3) (end 232.4 91.55) (width 0.15) (layer F.Cu) (net 19))
(segment (start 237.745 87.58) (end 238.825 86.5) (width 0.15) (layer F.Cu) (net 19))
(segment (start 232.734924 93.035177) (end 233.15 92.620101) (width 0.15) (layer F.Cu) (net 19))
(segment (start 232.4 91.55) (end 231.675 91.55) (width 0.15) (layer F.Cu) (net 19))
(segment (start 231.675 91.55) (end 230.5 90.375) (width 0.15) (layer F.Cu) (net 19))
(segment (start 230.5 90.375) (end 230.5 88.6) (width 0.15) (layer F.Cu) (net 19))
(via (at 232.449924 103.25) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 20))
(segment (start 232.169239 100.530509) (end 232.593502 100.954772) (width 0.15) (layer F.Cu) (net 20))
(segment (start 232.593502 100.954772) (end 232.593502 103.106422) (width 0.15) (layer F.Cu) (net 20))
(segment (start 232.593502 103.106422) (end 232.449924 103.25) (width 0.15) (layer F.Cu) (net 20))
(segment (start 232.768122 103.25) (end 232.449924 103.25) (width 0.15) (layer B.Cu) (net 20))
(segment (start 236.9 106.6) (end 233.55 103.25) (width 0.15) (layer B.Cu) (net 20))
(segment (start 233.55 103.25) (end 232.768122 103.25) (width 0.15) (layer B.Cu) (net 20))
(segment (start 242.57 108.077) (end 241.093 106.6) (width 0.15) (layer B.Cu) (net 20))
(segment (start 241.093 106.6) (end 236.9 106.6) (width 0.15) (layer B.Cu) (net 20))
(segment (start 240.894977 112.292023) (end 241.720001 111.466999) (width 0.15) (layer F.Cu) (net 21))
(segment (start 241.720001 111.466999) (end 242.57 110.617) (width 0.15) (layer F.Cu) (net 21))
(segment (start 233.799967 99.898495) (end 233.799967 104.631113) (width 0.15) (layer F.Cu) (net 21))
(segment (start 233.30061 99.399138) (end 233.799967 99.898495) (width 0.15) (layer F.Cu) (net 21))
(segment (start 233.799967 104.631113) (end 230.95 107.48108) (width 0.15) (layer F.Cu) (net 21))
(segment (start 230.95 111.41) (end 231.832023 112.292023) (width 0.15) (layer F.Cu) (net 21))
(segment (start 230.95 107.48108) (end 230.95 111.41) (width 0.15) (layer F.Cu) (net 21))
(segment (start 231.832023 112.292023) (end 240.894977 112.292023) (width 0.15) (layer F.Cu) (net 21))
(segment (start 232.899934 103.470272) (end 232.747577 103.622629) (width 0.15) (layer F.Cu) (net 22))
(segment (start 232.899934 100.695518) (end 232.899934 103.470272) (width 0.15) (layer F.Cu) (net 22))
(segment (start 232.747577 103.622629) (end 232.747577 103.940827) (width 0.15) (layer F.Cu) (net 22))
(segment (start 232.452082 100.247666) (end 232.899934 100.695518) (width 0.15) (layer F.Cu) (net 22))
(via (at 232.747577 103.940827) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 22))
(segment (start 236.775732 106.900011) (end 233.816549 103.940827) (width 0.15) (layer B.Cu) (net 22))
(segment (start 233.816549 103.940827) (end 233.065775 103.940827) (width 0.15) (layer B.Cu) (net 22))
(segment (start 238.853011 106.900011) (end 236.775732 106.900011) (width 0.15) (layer B.Cu) (net 22))
(segment (start 240.03 108.077) (end 238.853011 106.900011) (width 0.15) (layer B.Cu) (net 22))
(segment (start 233.065775 103.940827) (end 232.747577 103.940827) (width 0.15) (layer B.Cu) (net 22))
(segment (start 239.180001 111.466999) (end 240.03 110.617) (width 0.15) (layer F.Cu) (net 23))
(segment (start 238.654988 111.992012) (end 239.180001 111.466999) (width 0.15) (layer F.Cu) (net 23))
(segment (start 231.25 111.048002) (end 232.19401 111.992012) (width 0.15) (layer F.Cu) (net 23))
(segment (start 234.099978 104.75538) (end 231.25 107.605358) (width 0.15) (layer F.Cu) (net 23))
(segment (start 232.19401 111.992012) (end 238.654988 111.992012) (width 0.15) (layer F.Cu) (net 23))
(segment (start 231.25 107.605358) (end 231.25 111.048002) (width 0.15) (layer F.Cu) (net 23))
(segment (start 234.099978 99.632821) (end 234.099978 104.75538) (width 0.15) (layer F.Cu) (net 23))
(segment (start 233.583452 99.116295) (end 234.099978 99.632821) (width 0.15) (layer F.Cu) (net 23))
(segment (start 233.061117 104.309272) (end 232.836118 104.534271) (width 0.15) (layer F.Cu) (net 24))
(segment (start 233.154316 104.534271) (end 232.836118 104.534271) (width 0.15) (layer B.Cu) (net 24))
(segment (start 233.947271 104.534271) (end 233.154316 104.534271) (width 0.15) (layer B.Cu) (net 24))
(segment (start 232.734924 99.964823) (end 233.199945 100.429844) (width 0.15) (layer F.Cu) (net 24))
(segment (start 233.199945 104.170444) (end 233.061117 104.309272) (width 0.15) (layer F.Cu) (net 24))
(via (at 232.836118 104.534271) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 24))
(segment (start 233.199945 100.429844) (end 233.199945 104.170444) (width 0.15) (layer F.Cu) (net 24))
(segment (start 237.49 108.077) (end 233.947271 104.534271) (width 0.15) (layer B.Cu) (net 24))
(segment (start 234.399989 99.367146) (end 234.399989 106.57109) (width 0.15) (layer F.Cu) (net 25))
(segment (start 234.399989 106.57109) (end 233.499989 107.47109) (width 0.15) (layer F.Cu) (net 25))
(segment (start 236.414999 111.692001) (end 236.640001 111.466999) (width 0.15) (layer F.Cu) (net 25))
(segment (start 234.433999 111.692001) (end 236.414999 111.692001) (width 0.15) (layer F.Cu) (net 25))
(segment (start 236.640001 111.466999) (end 237.49 110.617) (width 0.15) (layer F.Cu) (net 25))
(segment (start 233.866295 98.833452) (end 234.399989 99.367146) (width 0.15) (layer F.Cu) (net 25))
(segment (start 233.499989 107.47109) (end 233.499989 110.757991) (width 0.15) (layer F.Cu) (net 25))
(segment (start 233.499989 110.757991) (end 234.433999 111.692001) (width 0.15) (layer F.Cu) (net 25))
(via (at 232.636352 105.113951) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 26))
(segment (start 233.499956 104.506846) (end 232.89285 105.113951) (width 0.15) (layer F.Cu) (net 26))
(segment (start 233.017767 99.681981) (end 233.499956 100.16417) (width 0.15) (layer F.Cu) (net 26))
(segment (start 233.499956 100.16417) (end 233.499956 104.506846) (width 0.15) (layer F.Cu) (net 26))
(segment (start 232.89285 105.113951) (end 232.636352 105.113951) (width 0.15) (layer F.Cu) (net 26))
(segment (start 233.563951 105.113951) (end 232.636352 105.113951) (width 0.15) (layer B.Cu) (net 26))
(segment (start 234.95 108.077) (end 234.95 106.5) (width 0.15) (layer B.Cu) (net 26))
(segment (start 234.95 106.5) (end 233.563951 105.113951) (width 0.15) (layer B.Cu) (net 26))
(segment (start 233.8 109.467) (end 234.100001 109.767001) (width 0.15) (layer F.Cu) (net 27))
(segment (start 234.7 99.101472) (end 234.7 106.735998) (width 0.15) (layer F.Cu) (net 27))
(segment (start 234.149138 98.55061) (end 234.7 99.101472) (width 0.15) (layer F.Cu) (net 27))
(segment (start 233.8 107.595358) (end 233.8 109.467) (width 0.15) (layer F.Cu) (net 27))
(segment (start 234.7 106.735998) (end 234.459399 106.976599) (width 0.15) (layer F.Cu) (net 27))
(segment (start 234.100001 109.767001) (end 234.95 110.617) (width 0.15) (layer F.Cu) (net 27))
(segment (start 234.459399 106.976599) (end 234.418759 106.976599) (width 0.15) (layer F.Cu) (net 27))
(segment (start 234.418759 106.976599) (end 233.8 107.595358) (width 0.15) (layer F.Cu) (net 27))
(segment (start 213.929999 106.970001) (end 213.3 107.6) (width 0.15) (layer F.Cu) (net 28))
(segment (start 213.3 107.6) (end 213.3 109.3562) (width 0.15) (layer F.Cu) (net 28))
(segment (start 218.55028 106.970001) (end 213.929999 106.970001) (width 0.15) (layer F.Cu) (net 28))
(segment (start 220.260077 105.260204) (end 218.55028 106.970001) (width 0.15) (layer F.Cu) (net 28))
(segment (start 220.260077 98.833919) (end 220.260077 105.260204) (width 0.15) (layer F.Cu) (net 28))
(segment (start 213.3 109.3562) (end 212.914599 109.741601) (width 0.15) (layer F.Cu) (net 28))
(segment (start 223.893996 95.2) (end 220.260077 98.833919) (width 0.15) (layer F.Cu) (net 28))
(segment (start 226.83873 95.2) (end 223.893996 95.2) (width 0.15) (layer F.Cu) (net 28))
(segment (start 212.914599 109.741601) (end 212.0646 110.5916) (width 0.15) (layer F.Cu) (net 28))
(segment (start 227.219491 95.580761) (end 226.83873 95.2) (width 0.15) (layer F.Cu) (net 28))
(segment (start 212.0646 107.3554) (end 212.0646 108.0516) (width 0.15) (layer F.Cu) (net 29))
(segment (start 213.370001 106.049999) (end 212.0646 107.3554) (width 0.15) (layer F.Cu) (net 29))
(segment (start 218.670023 104.984537) (end 217.604561 106.049999) (width 0.15) (layer F.Cu) (net 29))
(segment (start 227.892283 93.990811) (end 223.406069 93.990811) (width 0.15) (layer F.Cu) (net 29))
(segment (start 228.350862 94.44939) (end 227.892283 93.990811) (width 0.15) (layer F.Cu) (net 29))
(segment (start 223.406069 93.990811) (end 219.060033 98.336847) (width 0.15) (layer F.Cu) (net 29))
(segment (start 219.060033 98.336847) (end 219.060033 104.044606) (width 0.15) (layer F.Cu) (net 29))
(segment (start 219.060033 104.044606) (end 218.670023 104.434616) (width 0.15) (layer F.Cu) (net 29))
(segment (start 217.604561 106.049999) (end 213.370001 106.049999) (width 0.15) (layer F.Cu) (net 29))
(segment (start 218.670023 104.434616) (end 218.670023 104.984537) (width 0.15) (layer F.Cu) (net 29))
(segment (start 219.960066 105.135936) (end 218.576002 106.52) (width 0.15) (layer F.Cu) (net 30))
(via (at 216.46 106.52) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 30))
(segment (start 216.778198 106.52) (end 216.46 106.52) (width 0.15) (layer F.Cu) (net 30))
(segment (start 215.85 107.13) (end 216.235001 106.744999) (width 0.15) (layer B.Cu) (net 30))
(segment (start 223.769728 94.899989) (end 219.960066 98.709651) (width 0.15) (layer F.Cu) (net 30))
(segment (start 227.502334 95.297918) (end 227.104405 94.899989) (width 0.15) (layer F.Cu) (net 30))
(segment (start 219.960066 98.709651) (end 219.960066 105.135936) (width 0.15) (layer F.Cu) (net 30))
(segment (start 227.104405 94.899989) (end 223.769728 94.899989) (width 0.15) (layer F.Cu) (net 30))
(segment (start 215.85 109.3462) (end 215.85 107.13) (width 0.15) (layer B.Cu) (net 30))
(segment (start 218.576002 106.52) (end 216.778198 106.52) (width 0.15) (layer F.Cu) (net 30))
(segment (start 214.6046 110.5916) (end 215.85 109.3462) (width 0.15) (layer B.Cu) (net 30))
(segment (start 216.235001 106.744999) (end 216.46 106.52) (width 0.15) (layer B.Cu) (net 30))
(segment (start 214.63 108.077) (end 214.6046 108.0516) (width 0.15) (layer B.Cu) (net 31))
(via (at 216.64 105.599992) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 31))
(segment (start 216.958198 105.599992) (end 216.64 105.599992) (width 0.15) (layer F.Cu) (net 31))
(segment (start 217.630289 105.599992) (end 216.958198 105.599992) (width 0.15) (layer F.Cu) (net 31))
(segment (start 228.633705 94.166548) (end 228.157957 93.6908) (width 0.15) (layer F.Cu) (net 31))
(segment (start 228.157957 93.6908) (end 223.281801 93.6908) (width 0.15) (layer F.Cu) (net 31))
(segment (start 215.454599 106.785393) (end 216.415001 105.824991) (width 0.15) (layer B.Cu) (net 31))
(segment (start 223.281801 93.6908) (end 218.760022 98.212579) (width 0.15) (layer F.Cu) (net 31))
(segment (start 215.454599 107.201601) (end 215.454599 106.785393) (width 0.15) (layer B.Cu) (net 31))
(segment (start 214.6046 108.0516) (end 215.454599 107.201601) (width 0.15) (layer B.Cu) (net 31))
(segment (start 216.415001 105.824991) (end 216.64 105.599992) (width 0.15) (layer B.Cu) (net 31))
(segment (start 218.370012 104.860269) (end 217.630289 105.599992) (width 0.15) (layer F.Cu) (net 31))
(segment (start 218.370012 104.310348) (end 218.370012 104.860269) (width 0.15) (layer F.Cu) (net 31))
(segment (start 218.760022 103.920338) (end 218.370012 104.310348) (width 0.15) (layer F.Cu) (net 31))
(segment (start 218.760022 98.212579) (end 218.760022 103.920338) (width 0.15) (layer F.Cu) (net 31))
(segment (start 227.785177 95.015076) (end 227.370079 94.599978) (width 0.15) (layer F.Cu) (net 32))
(segment (start 223.64546 94.599978) (end 219.660055 98.585383) (width 0.15) (layer F.Cu) (net 32))
(segment (start 227.370079 94.599978) (end 223.64546 94.599978) (width 0.15) (layer F.Cu) (net 32))
(segment (start 218.39 109.3462) (end 218.39 106.378198) (width 0.15) (layer B.Cu) (net 32))
(segment (start 219.660055 98.585383) (end 219.660055 104.789945) (width 0.15) (layer F.Cu) (net 32))
(segment (start 218.614999 105.835001) (end 218.39 106.06) (width 0.15) (layer F.Cu) (net 32))
(segment (start 219.660055 104.789945) (end 218.614999 105.835001) (width 0.15) (layer F.Cu) (net 32))
(segment (start 218.39 106.378198) (end 218.39 106.06) (width 0.15) (layer B.Cu) (net 32))
(via (at 218.39 106.06) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 32))
(segment (start 217.1446 110.5916) (end 218.39 109.3462) (width 0.15) (layer B.Cu) (net 32))
(segment (start 217.17 108.077) (end 217.1446 108.0516) (width 0.15) (layer B.Cu) (net 33))
(segment (start 217.1446 105.235382) (end 217.23 105.149982) (width 0.15) (layer B.Cu) (net 33))
(segment (start 217.1446 108.0516) (end 217.1446 105.235382) (width 0.15) (layer B.Cu) (net 33))
(via (at 217.23 105.149982) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 33))
(segment (start 217.65602 105.149982) (end 217.23 105.149982) (width 0.15) (layer F.Cu) (net 33))
(segment (start 228.423632 93.390789) (end 223.157533 93.390789) (width 0.15) (layer F.Cu) (net 33))
(segment (start 228.916548 93.883705) (end 228.423632 93.390789) (width 0.15) (layer F.Cu) (net 33))
(segment (start 223.157533 93.390789) (end 218.460011 98.088311) (width 0.15) (layer F.Cu) (net 33))
(segment (start 218.460011 98.088311) (end 218.460011 103.79607) (width 0.15) (layer F.Cu) (net 33))
(segment (start 218.070001 104.736001) (end 217.65602 105.149982) (width 0.15) (layer F.Cu) (net 33))
(segment (start 218.460011 103.79607) (end 218.070001 104.18608) (width 0.15) (layer F.Cu) (net 33))
(segment (start 218.070001 104.18608) (end 218.070001 104.736001) (width 0.15) (layer F.Cu) (net 33))
(via (at 219.120033 104.65) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 34))
(segment (start 219.360044 98.461115) (end 219.360044 104.409989) (width 0.15) (layer F.Cu) (net 34))
(segment (start 219.360044 104.409989) (end 219.345032 104.425001) (width 0.15) (layer F.Cu) (net 34))
(segment (start 223.521192 94.299967) (end 219.360044 98.461115) (width 0.15) (layer F.Cu) (net 34))
(segment (start 219.345032 104.425001) (end 219.120033 104.65) (width 0.15) (layer F.Cu) (net 34))
(segment (start 228.068019 94.732233) (end 227.635753 94.299967) (width 0.15) (layer F.Cu) (net 34))
(segment (start 227.635753 94.299967) (end 223.521192 94.299967) (width 0.15) (layer F.Cu) (net 34))
(segment (start 219.120033 105.410033) (end 219.120033 104.65) (width 0.15) (layer B.Cu) (net 34))
(segment (start 220.759601 107.049601) (end 219.120033 105.410033) (width 0.15) (layer B.Cu) (net 34))
(segment (start 219.6846 110.5916) (end 220.759601 109.516599) (width 0.15) (layer B.Cu) (net 34))
(segment (start 220.759601 109.516599) (end 220.759601 107.049601) (width 0.15) (layer B.Cu) (net 34))
(segment (start 219.71 108.077) (end 219.6846 108.0516) (width 0.15) (layer B.Cu) (net 35))
(via (at 217.62 104.53) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 35))
(segment (start 217.62 104.211802) (end 217.62 104.53) (width 0.15) (layer F.Cu) (net 35))
(segment (start 228.689306 93.090778) (end 223.033265 93.090778) (width 0.15) (layer F.Cu) (net 35))
(segment (start 229.19939 93.600862) (end 228.689306 93.090778) (width 0.15) (layer F.Cu) (net 35))
(segment (start 223.033265 93.090778) (end 218.16 97.964043) (width 0.15) (layer F.Cu) (net 35))
(segment (start 218.16 97.964043) (end 218.16 103.671802) (width 0.15) (layer F.Cu) (net 35))
(segment (start 218.16 103.671802) (end 217.62 104.211802) (width 0.15) (layer F.Cu) (net 35))
(segment (start 219.6846 108.0516) (end 219.6846 106.5946) (width 0.15) (layer B.Cu) (net 35))
(segment (start 217.844999 104.754999) (end 217.62 104.53) (width 0.15) (layer B.Cu) (net 35))
(segment (start 219.6846 106.5946) (end 217.844999 104.754999) (width 0.15) (layer B.Cu) (net 35))
(segment (start 237.8 101.44) (end 237.81 101.43) (width 0.15) (layer B.Cu) (net 36))
(segment (start 237.8 102.015) (end 237.8 101.44) (width 0.15) (layer B.Cu) (net 36))
(via (at 237.81 101.43) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 36))
(segment (start 240.410197 99.75) (end 238.730197 101.43) (width 0.15) (layer F.Cu) (net 36))
(segment (start 241.6 99.75) (end 240.410197 99.75) (width 0.15) (layer F.Cu) (net 36))
(segment (start 238.128198 101.43) (end 237.81 101.43) (width 0.15) (layer F.Cu) (net 36))
(segment (start 238.730197 101.43) (end 238.128198 101.43) (width 0.15) (layer F.Cu) (net 36))
(via (at 211.2 90.1) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 39))
(segment (start 211.935 90.09) (end 211.21 90.09) (width 0.15) (layer B.Cu) (net 39))
(segment (start 211.21 90.09) (end 211.2 90.1) (width 0.15) (layer B.Cu) (net 39))
(segment (start 210.45 90.1) (end 210.425 90.075) (width 0.15) (layer F.Cu) (net 39))
(segment (start 211.2 90.1) (end 210.45 90.1) (width 0.15) (layer F.Cu) (net 39))
(segment (start 232.452082 92.752334) (end 231.954406 93.25001) (width 0.15) (layer F.Cu) (net 39))
(segment (start 231.954406 93.25001) (end 231.789782 93.25001) (width 0.15) (layer F.Cu) (net 39))
(segment (start 231.139772 92.6) (end 231.564783 93.025011) (width 0.15) (layer B.Cu) (net 39))
(segment (start 225.039995 89.48001) (end 228.159985 92.6) (width 0.15) (layer B.Cu) (net 39))
(segment (start 228.159985 92.6) (end 231.139772 92.6) (width 0.15) (layer B.Cu) (net 39))
(segment (start 211.935 90.09) (end 212.54499 89.48001) (width 0.15) (layer B.Cu) (net 39))
(via (at 231.789782 93.25001) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 39))
(segment (start 231.564783 93.025011) (end 231.789782 93.25001) (width 0.15) (layer B.Cu) (net 39))
(segment (start 212.54499 89.48001) (end 225.039995 89.48001) (width 0.15) (layer B.Cu) (net 39))
(via (at 221.33 103.61) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 40))
(segment (start 221.33 104.415) (end 221.415 104.5) (width 0.15) (layer F.Cu) (net 40))
(segment (start 221.33 103.61) (end 221.33 104.415) (width 0.15) (layer F.Cu) (net 40))
(via (at 214.9 90.949996) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 40))
(segment (start 214.925 90.924996) (end 214.9 90.949996) (width 0.15) (layer F.Cu) (net 40))
(segment (start 214.925 90.075) (end 214.925 90.924996) (width 0.15) (layer F.Cu) (net 40))
(segment (start 215.218198 90.949996) (end 214.9 90.949996) (width 0.15) (layer B.Cu) (net 40))
(segment (start 216.820266 90.949996) (end 215.218198 90.949996) (width 0.15) (layer B.Cu) (net 40))
(segment (start 223.6 97.72973) (end 216.820266 90.949996) (width 0.15) (layer B.Cu) (net 40))
(segment (start 223.6 101.34) (end 223.6 97.72973) (width 0.15) (layer B.Cu) (net 40))
(segment (start 221.396002 103.61) (end 223.590001 101.416001) (width 0.15) (layer B.Cu) (net 40))
(segment (start 223.590001 101.349999) (end 223.6 101.34) (width 0.15) (layer B.Cu) (net 40))
(segment (start 223.590001 101.416001) (end 223.590001 101.349999) (width 0.15) (layer B.Cu) (net 40))
(segment (start 221.33 103.61) (end 221.396002 103.61) (width 0.15) (layer B.Cu) (net 40))
(segment (start 225.628733 99.723767) (end 225.33571 100.01679) (width 0.15) (layer F.Cu) (net 41))
(segment (start 226.474455 99.723767) (end 225.628733 99.723767) (width 0.15) (layer F.Cu) (net 41))
(segment (start 226.773242 99.424979) (end 226.474455 99.723767) (width 0.15) (layer F.Cu) (net 41))
(segment (start 228.848528 99.75) (end 228.274269 99.75) (width 0.15) (layer F.Cu) (net 41))
(segment (start 227.949248 99.424979) (end 226.773242 99.424979) (width 0.15) (layer F.Cu) (net 41))
(segment (start 229.19939 99.399138) (end 228.848528 99.75) (width 0.15) (layer F.Cu) (net 41))
(segment (start 225.33571 100.01679) (end 225.015 100.3375) (width 0.15) (layer F.Cu) (net 41))
(segment (start 228.274269 99.75) (end 227.949248 99.424979) (width 0.15) (layer F.Cu) (net 41))
(segment (start 226.897511 99.72499) (end 226.60571 100.01679) (width 0.15) (layer F.Cu) (net 42))
(segment (start 226.60571 100.01679) (end 226.285 100.3375) (width 0.15) (layer F.Cu) (net 42))
(segment (start 228.150001 100.050011) (end 227.82498 99.72499) (width 0.15) (layer F.Cu) (net 42))
(segment (start 227.82498 99.72499) (end 226.897511 99.72499) (width 0.15) (layer F.Cu) (net 42))
(segment (start 229.114203 100.050011) (end 228.150001 100.050011) (width 0.15) (layer F.Cu) (net 42))
(segment (start 229.482233 99.681981) (end 229.114203 100.050011) (width 0.15) (layer F.Cu) (net 42))
(segment (start 229.340813 100.389086) (end 229.765076 99.964823) (width 0.15) (layer F.Cu) (net 43))
(segment (start 227.905 100.3375) (end 227.956586 100.389086) (width 0.15) (layer F.Cu) (net 43))
(segment (start 227.956586 100.389086) (end 229.340813 100.389086) (width 0.15) (layer F.Cu) (net 43))
(segment (start 227.555 100.3375) (end 227.905 100.3375) (width 0.15) (layer F.Cu) (net 43))
(segment (start 226.60571 105.98321) (end 226.285 105.6625) (width 0.15) (layer F.Cu) (net 44))
(segment (start 226.89751 106.27501) (end 226.60571 105.98321) (width 0.15) (layer F.Cu) (net 44))
(segment (start 227.82498 106.27501) (end 226.89751 106.27501) (width 0.15) (layer F.Cu) (net 44))
(segment (start 228.03001 106.06998) (end 227.82498 106.27501) (width 0.15) (layer F.Cu) (net 44))
(segment (start 228.03001 102.265574) (end 228.03001 106.06998) (width 0.15) (layer F.Cu) (net 44))
(segment (start 230.047918 100.247666) (end 228.03001 102.265574) (width 0.15) (layer F.Cu) (net 44))
(segment (start 227.92428 106.599989) (end 228.399989 106.12428) (width 0.15) (layer F.Cu) (net 45))
(segment (start 225.015 105.6625) (end 225.952489 106.599989) (width 0.15) (layer F.Cu) (net 45))
(segment (start 229.906498 100.954772) (end 230.330761 100.530509) (width 0.15) (layer F.Cu) (net 45))
(segment (start 225.952489 106.599989) (end 227.92428 106.599989) (width 0.15) (layer F.Cu) (net 45))
(segment (start 228.399989 102.461281) (end 229.906498 100.954772) (width 0.15) (layer F.Cu) (net 45))
(segment (start 228.399989 106.12428) (end 228.399989 102.461281) (width 0.15) (layer F.Cu) (net 45))
(segment (start 226.231481 98.5) (end 225.885 98.153519) (width 0.15) (layer F.Cu) (net 46))
(segment (start 225.885 98.153519) (end 225.885 98.15) (width 0.15) (layer F.Cu) (net 46))
(segment (start 227.785177 97.984924) (end 227.270101 98.5) (width 0.15) (layer F.Cu) (net 46))
(segment (start 227.270101 98.5) (end 226.231481 98.5) (width 0.15) (layer F.Cu) (net 46))
(segment (start 225.885 99.1) (end 225.885 99.15) (width 0.15) (layer F.Cu) (net 47))
(segment (start 226.185 98.8) (end 225.885 99.1) (width 0.15) (layer F.Cu) (net 47))
(segment (start 228.068019 98.267767) (end 227.535786 98.8) (width 0.15) (layer F.Cu) (net 47))
(segment (start 227.535786 98.8) (end 226.185 98.8) (width 0.15) (layer F.Cu) (net 47))
(segment (start 230.613604 101.054772) (end 228.7 102.968376) (width 0.15) (layer F.Cu) (net 48))
(segment (start 230.613604 100.813351) (end 230.613604 101.054772) (width 0.15) (layer F.Cu) (net 48))
(segment (start 228.7 102.968376) (end 228.7 106.248548) (width 0.15) (layer F.Cu) (net 48))
(segment (start 228.7 106.248548) (end 228.048548 106.899999) (width 0.15) (layer F.Cu) (net 48))
(segment (start 224.982499 106.899999) (end 223.745 105.6625) (width 0.15) (layer F.Cu) (net 48))
(segment (start 228.048548 106.899999) (end 224.982499 106.899999) (width 0.15) (layer F.Cu) (net 48))
(segment (start 223.5825 105.5) (end 223.745 105.6625) (width 0.15) (layer F.Cu) (net 48))
(segment (start 222.385 105.5) (end 223.5825 105.5) (width 0.15) (layer F.Cu) (net 48))
(segment (start 222.385 104.5) (end 222.385 105.5) (width 0.15) (layer F.Cu) (net 48))
(segment (start 230.199989 90.499268) (end 230.199989 88.475732) (width 0.15) (layer F.Cu) (net 49))
(segment (start 232.745 86.5) (end 233.745 86.5) (width 0.15) (layer F.Cu) (net 49))
(segment (start 230.199989 88.475732) (end 232.175722 86.5) (width 0.15) (layer F.Cu) (net 49))
(segment (start 231.744976 92.045229) (end 231.744976 92.044255) (width 0.15) (layer F.Cu) (net 49))
(segment (start 231.744976 92.044255) (end 230.199989 90.499268) (width 0.15) (layer F.Cu) (net 49))
(segment (start 232.175722 86.5) (end 232.745 86.5) (width 0.15) (layer F.Cu) (net 49))
(segment (start 231.886396 92.186649) (end 231.744976 92.045229) (width 0.15) (layer F.Cu) (net 49))
(segment (start 232.675001 85.424999) (end 235.209999 85.424999) (width 0.15) (layer F.Cu) (net 50))
(segment (start 231.25 92.6) (end 231.25 91.973557) (width 0.15) (layer F.Cu) (net 50))
(segment (start 231.25 91.973557) (end 229.89998 90.623537) (width 0.15) (layer F.Cu) (net 50))
(segment (start 229.89998 88.20002) (end 232.675001 85.424999) (width 0.15) (layer F.Cu) (net 50))
(segment (start 231.83873 92.8) (end 231.45 92.8) (width 0.15) (layer F.Cu) (net 50))
(segment (start 229.89998 90.623537) (end 229.89998 88.20002) (width 0.15) (layer F.Cu) (net 50))
(segment (start 235.435001 85.650001) (end 236.285 86.5) (width 0.15) (layer F.Cu) (net 50))
(segment (start 235.209999 85.424999) (end 235.435001 85.650001) (width 0.15) (layer F.Cu) (net 50))
(segment (start 231.45 92.8) (end 231.25 92.6) (width 0.15) (layer F.Cu) (net 50))
(segment (start 232.169239 92.469491) (end 231.83873 92.8) (width 0.15) (layer F.Cu) (net 50))
(via (at 228.364132 92.138145) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 51))
(via (at 206.1 91.65) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 51))
(segment (start 208.72 89.03) (end 206.324999 91.425001) (width 0.15) (layer B.Cu) (net 51))
(segment (start 206.324999 91.425001) (end 206.1 91.65) (width 0.15) (layer B.Cu) (net 51))
(segment (start 225.255987 89.03) (end 208.72 89.03) (width 0.15) (layer B.Cu) (net 51))
(segment (start 228.364132 92.138145) (end 225.255987 89.03) (width 0.15) (layer B.Cu) (net 51))
(segment (start 206.1 91.65) (end 206.1 92) (width 0.15) (layer F.Cu) (net 51))
(segment (start 205.8 92.3) (end 205.185 92.3) (width 0.15) (layer F.Cu) (net 51))
(segment (start 206.1 92) (end 205.8 92.3) (width 0.15) (layer F.Cu) (net 51))
(segment (start 205.165 92.3) (end 204.215 91.35) (width 0.15) (layer F.Cu) (net 51))
(segment (start 205.185 92.3) (end 205.165 92.3) (width 0.15) (layer F.Cu) (net 51))
(segment (start 228.364132 92.456343) (end 228.364132 92.138145) (width 0.15) (layer F.Cu) (net 51))
(segment (start 228.557789 92.65) (end 228.364132 92.456343) (width 0.15) (layer F.Cu) (net 51))
(segment (start 229.765076 93.035177) (end 229.379899 92.65) (width 0.15) (layer F.Cu) (net 51))
(segment (start 229.379899 92.65) (end 228.557789 92.65) (width 0.15) (layer F.Cu) (net 51))
(segment (start 204.215 92.3) (end 203.1 92.3) (width 0.15) (layer F.Cu) (net 52))
(segment (start 202.9375 92.1375) (end 202.9375 91.25) (width 0.15) (layer F.Cu) (net 52))
(segment (start 203.1 92.3) (end 202.9375 92.1375) (width 0.15) (layer F.Cu) (net 52))
(segment (start 204.015 103.75) (end 204.5 104.235) (width 0.15) (layer F.Cu) (net 53))
(segment (start 202.9375 103.75) (end 204.015 103.75) (width 0.15) (layer F.Cu) (net 53))
(segment (start 205.45 90.075) (end 205.925 90.075) (width 0.15) (layer F.Cu) (net 54))
(segment (start 205.185 90.34) (end 205.45 90.075) (width 0.15) (layer F.Cu) (net 54))
(segment (start 205.185 91.35) (end 205.185 90.34) (width 0.15) (layer F.Cu) (net 54))
(segment (start 239.504375 101.310625) (end 239.515574 101.310625) (width 0.15) (layer B.Cu) (net 55))
(segment (start 238.8 102.015) (end 239.504375 101.310625) (width 0.15) (layer B.Cu) (net 55))
(via (at 239.515574 101.310625) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 55))
(segment (start 241.6 100.75) (end 240.006411 100.75) (width 0.15) (layer F.Cu) (net 55))
(segment (start 240.006411 100.75) (end 239.515574 101.240837) (width 0.15) (layer F.Cu) (net 55))
(segment (start 239.515574 101.240837) (end 239.515574 101.310625) (width 0.15) (layer F.Cu) (net 55))
(via (at 229.442458 91.773935) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 55))
(segment (start 229.635205 91.773935) (end 229.442458 91.773935) (width 0.15) (layer F.Cu) (net 55))
(segment (start 230.330761 92.469491) (end 229.635205 91.773935) (width 0.15) (layer F.Cu) (net 55))
(segment (start 237.149989 98.94504) (end 237.149989 94.564267) (width 0.15) (layer B.Cu) (net 55))
(segment (start 229.760656 91.773935) (end 229.442458 91.773935) (width 0.15) (layer B.Cu) (net 55))
(segment (start 237.149989 94.564267) (end 234.359657 91.773935) (width 0.15) (layer B.Cu) (net 55))
(segment (start 234.359657 91.773935) (end 229.760656 91.773935) (width 0.15) (layer B.Cu) (net 55))
(segment (start 239.515574 101.310625) (end 237.149989 98.94504) (width 0.15) (layer B.Cu) (net 55))
(via (at 240.122355 101.280994) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 56))
(segment (start 240.153349 101.25) (end 240.122355 101.280994) (width 0.15) (layer F.Cu) (net 56))
(segment (start 241.6 101.25) (end 240.153349 101.25) (width 0.15) (layer F.Cu) (net 56))
(segment (start 240.122355 101.367645) (end 240.122355 101.280994) (width 0.15) (layer B.Cu) (net 56))
(segment (start 239.86 101.63) (end 240.122355 101.367645) (width 0.15) (layer B.Cu) (net 56))
(segment (start 239.8 102.015) (end 239.86 101.955) (width 0.15) (layer B.Cu) (net 56))
(segment (start 239.86 101.955) (end 239.86 101.63) (width 0.15) (layer B.Cu) (net 56))
(via (at 229.836335 91.321304) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 56))
(segment (start 229.836335 91.40938) (end 229.836335 91.321304) (width 0.15) (layer F.Cu) (net 56))
(segment (start 230.613604 92.186649) (end 229.836335 91.40938) (width 0.15) (layer F.Cu) (net 56))
(segment (start 234.331304 91.321304) (end 230.154533 91.321304) (width 0.15) (layer B.Cu) (net 56))
(segment (start 237.45 98.608639) (end 237.45 94.44) (width 0.15) (layer B.Cu) (net 56))
(segment (start 237.45 94.44) (end 234.331304 91.321304) (width 0.15) (layer B.Cu) (net 56))
(segment (start 240.122355 101.280994) (end 237.45 98.608639) (width 0.15) (layer B.Cu) (net 56))
(segment (start 230.154533 91.321304) (end 229.836335 91.321304) (width 0.15) (layer B.Cu) (net 56))
(segment (start 236.83 102.015) (end 237.8 102.985) (width 0.15) (layer B.Cu) (net 57))
(segment (start 236.8 102.015) (end 236.83 102.015) (width 0.15) (layer B.Cu) (net 57))
(segment (start 230.047918 92.752334) (end 229.623655 92.328071) (width 0.15) (layer F.Cu) (net 57))
(via (at 228.96414 92.136186) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 57))
(segment (start 229.156025 92.328071) (end 228.96414 92.136186) (width 0.15) (layer F.Cu) (net 57))
(segment (start 229.623655 92.328071) (end 229.156025 92.328071) (width 0.15) (layer F.Cu) (net 57))
(segment (start 236.8 94.638556) (end 234.411444 92.25) (width 0.15) (layer B.Cu) (net 57))
(segment (start 229.077954 92.25) (end 228.96414 92.136186) (width 0.15) (layer B.Cu) (net 57))
(segment (start 236.8 102.015) (end 236.8 94.638556) (width 0.15) (layer B.Cu) (net 57))
(segment (start 234.411444 92.25) (end 229.077954 92.25) (width 0.15) (layer B.Cu) (net 57))
(segment (start 235.129899 94.6) (end 234.714823 95.015076) (width 0.15) (layer F.Cu) (net 58))
(segment (start 235.200609 94.6) (end 235.129899 94.6) (width 0.15) (layer F.Cu) (net 58))
(segment (start 236.300609 93.5) (end 235.200609 94.6) (width 0.15) (layer F.Cu) (net 58))
(segment (start 237.765 93.175) (end 237.44 93.5) (width 0.15) (layer F.Cu) (net 58))
(segment (start 237.44 93.5) (end 236.300609 93.5) (width 0.15) (layer F.Cu) (net 58))
(segment (start 236.15 95.4) (end 237.44 95.4) (width 0.15) (layer F.Cu) (net 59))
(segment (start 236 95.25) (end 236.15 95.4) (width 0.15) (layer F.Cu) (net 59))
(segment (start 237.44 95.4) (end 237.765 95.075) (width 0.15) (layer F.Cu) (net 59))
(segment (start 235.280509 95.580761) (end 235.61127 95.25) (width 0.15) (layer F.Cu) (net 59))
(segment (start 235.61127 95.25) (end 236 95.25) (width 0.15) (layer F.Cu) (net 59))
(segment (start 237.44 97.3) (end 237.765 96.975) (width 0.15) (layer F.Cu) (net 60))
(segment (start 235.75 97.3) (end 235.55 97.1) (width 0.15) (layer F.Cu) (net 60))
(segment (start 236 97.3) (end 235.75 97.3) (width 0.15) (layer F.Cu) (net 60))
(segment (start 236 97.3) (end 237.44 97.3) (width 0.15) (layer F.Cu) (net 60))
(segment (start 235.726955 97.3) (end 236 97.3) (width 0.15) (layer F.Cu) (net 60))
(segment (start 235.563351 97.136396) (end 235.726955 97.3) (width 0.15) (layer F.Cu) (net 60))
(segment (start 235.45 98.154416) (end 234.997666 97.702082) (width 0.15) (layer F.Cu) (net 61))
(segment (start 235.45 98.225125) (end 235.45 98.154416) (width 0.15) (layer F.Cu) (net 61))
(segment (start 237.44 99.2) (end 236.424875 99.2) (width 0.15) (layer F.Cu) (net 61))
(segment (start 236.424875 99.2) (end 235.45 98.225125) (width 0.15) (layer F.Cu) (net 61))
(segment (start 237.765 98.875) (end 237.44 99.2) (width 0.15) (layer F.Cu) (net 61))
(segment (start 235.395584 94.9) (end 234.997666 95.297918) (width 0.15) (layer F.Cu) (net 62))
(segment (start 235.395584 94.829291) (end 235.395584 94.9) (width 0.15) (layer F.Cu) (net 62))
(segment (start 236.424875 93.8) (end 235.395584 94.829291) (width 0.15) (layer F.Cu) (net 62))
(segment (start 237.765 94.125) (end 237.44 93.8) (width 0.15) (layer F.Cu) (net 62))
(segment (start 237.44 93.8) (end 236.424875 93.8) (width 0.15) (layer F.Cu) (net 62))
(segment (start 237.44 95.7) (end 237.765 96.025) (width 0.15) (layer F.Cu) (net 63))
(segment (start 235.563351 95.863604) (end 235.726955 95.7) (width 0.15) (layer F.Cu) (net 63))
(segment (start 235.726955 95.7) (end 237.44 95.7) (width 0.15) (layer F.Cu) (net 63))
(segment (start 237.44 97.6) (end 237.765 97.925) (width 0.15) (layer F.Cu) (net 64))
(segment (start 236.15 97.6) (end 237.44 97.6) (width 0.15) (layer F.Cu) (net 64))
(segment (start 235.280509 97.419239) (end 235.61127 97.75) (width 0.15) (layer F.Cu) (net 64))
(segment (start 236 97.75) (end 236.15 97.6) (width 0.15) (layer F.Cu) (net 64))
(segment (start 235.61127 97.75) (end 236 97.75) (width 0.15) (layer F.Cu) (net 64))
(segment (start 235.129899 98.4) (end 234.714823 97.984924) (width 0.15) (layer F.Cu) (net 65))
(segment (start 235.2 98.4) (end 235.129899 98.4) (width 0.15) (layer F.Cu) (net 65))
(segment (start 236.3 99.5) (end 235.2 98.4) (width 0.15) (layer F.Cu) (net 65))
(segment (start 237.765 99.825) (end 237.44 99.5) (width 0.15) (layer F.Cu) (net 65))
(segment (start 237.44 99.5) (end 236.3 99.5) (width 0.15) (layer F.Cu) (net 65))
(zone (net 2) (net_name GND) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2)
(fill yes (arc_segments 16) (thermal_gap 0.2) (thermal_bridge_width 0.25))
(polygon
(pts
(xy 199.75 84.5) (xy 250.25 84.5) (xy 250.25 115.25) (xy 199.75 115.25)
)
)
(filled_polygon
(pts
(xy 205.298549 85.4) (xy 205.298549 86.45) (xy 205.304341 86.50881) (xy 205.321496 86.56536) (xy 205.349353 86.617477)
(xy 205.386842 86.663158) (xy 205.432523 86.700647) (xy 205.48464 86.728504) (xy 205.54119 86.745659) (xy 205.6 86.751451)
(xy 206.25 86.751451) (xy 206.30881 86.745659) (xy 206.36536 86.728504) (xy 206.417477 86.700647) (xy 206.463158 86.663158)
(xy 206.500647 86.617477) (xy 206.528504 86.56536) (xy 206.545659 86.50881) (xy 206.551451 86.45) (xy 206.551451 85.4)
(xy 206.548989 85.375) (xy 207.451011 85.375) (xy 207.448549 85.4) (xy 207.448549 86.45) (xy 207.454341 86.50881)
(xy 207.471496 86.56536) (xy 207.499353 86.617477) (xy 207.536842 86.663158) (xy 207.582523 86.700647) (xy 207.63464 86.728504)
(xy 207.69119 86.745659) (xy 207.75 86.751451) (xy 208.4 86.751451) (xy 208.45881 86.745659) (xy 208.51536 86.728504)
(xy 208.567477 86.700647) (xy 208.613158 86.663158) (xy 208.650647 86.617477) (xy 208.678504 86.56536) (xy 208.695659 86.50881)
(xy 208.701451 86.45) (xy 208.701451 85.4) (xy 208.698989 85.375) (xy 209.801011 85.375) (xy 209.798549 85.4)
(xy 209.798549 86.45) (xy 209.804341 86.50881) (xy 209.821496 86.56536) (xy 209.849353 86.617477) (xy 209.886842 86.663158)
(xy 209.932523 86.700647) (xy 209.98464 86.728504) (xy 210.04119 86.745659) (xy 210.1 86.751451) (xy 210.75 86.751451)
(xy 210.80881 86.745659) (xy 210.86536 86.728504) (xy 210.917477 86.700647) (xy 210.963158 86.663158) (xy 211.000647 86.617477)
(xy 211.028504 86.56536) (xy 211.045659 86.50881) (xy 211.051451 86.45) (xy 211.051451 85.4) (xy 211.048989 85.375)
(xy 211.951011 85.375) (xy 211.948549 85.4) (xy 211.948549 86.45) (xy 211.954341 86.50881) (xy 211.971496 86.56536)
(xy 211.999353 86.617477) (xy 212.036842 86.663158) (xy 212.082523 86.700647) (xy 212.13464 86.728504) (xy 212.19119 86.745659)
(xy 212.25 86.751451) (xy 212.9 86.751451) (xy 212.95881 86.745659) (xy 213.01536 86.728504) (xy 213.067477 86.700647)
(xy 213.113158 86.663158) (xy 213.150647 86.617477) (xy 213.178504 86.56536) (xy 213.195659 86.50881) (xy 213.201451 86.45)
(xy 213.201451 85.4) (xy 213.198989 85.375) (xy 214.301011 85.375) (xy 214.298549 85.4) (xy 214.298549 86.45)
(xy 214.304341 86.50881) (xy 214.321496 86.56536) (xy 214.349353 86.617477) (xy 214.386842 86.663158) (xy 214.432523 86.700647)
(xy 214.48464 86.728504) (xy 214.54119 86.745659) (xy 214.6 86.751451) (xy 215.25 86.751451) (xy 215.30881 86.745659)
(xy 215.36536 86.728504) (xy 215.417477 86.700647) (xy 215.463158 86.663158) (xy 215.500647 86.617477) (xy 215.528504 86.56536)
(xy 215.545659 86.50881) (xy 215.551451 86.45) (xy 215.551451 85.4) (xy 215.548989 85.375) (xy 216.451011 85.375)
(xy 216.448549 85.4) (xy 216.448549 86.45) (xy 216.454341 86.50881) (xy 216.471496 86.56536) (xy 216.499353 86.617477)
(xy 216.536842 86.663158) (xy 216.582523 86.700647) (xy 216.63464 86.728504) (xy 216.69119 86.745659) (xy 216.75 86.751451)
(xy 217.4 86.751451) (xy 217.45881 86.745659) (xy 217.51536 86.728504) (xy 217.567477 86.700647) (xy 217.613158 86.663158)
(xy 217.650647 86.617477) (xy 217.678504 86.56536) (xy 217.695659 86.50881) (xy 217.701451 86.45) (xy 217.701451 85.4)
(xy 217.698989 85.375) (xy 232.194669 85.375) (xy 229.647842 87.921829) (xy 229.633533 87.933572) (xy 229.620401 87.949574)
(xy 229.586671 87.990674) (xy 229.559343 88.041801) (xy 229.55185 88.05582) (xy 229.532578 88.119352) (xy 229.530407 88.126508)
(xy 229.523166 88.20002) (xy 229.524981 88.218446) (xy 229.52498 90.605121) (xy 229.523166 90.623537) (xy 229.52498 90.641953)
(xy 229.52498 90.641955) (xy 229.530406 90.697049) (xy 229.551849 90.767736) (xy 229.586671 90.832883) (xy 229.601112 90.85048)
(xy 229.587654 90.856055) (xy 229.501667 90.91351) (xy 229.428541 90.986636) (xy 229.371086 91.072623) (xy 229.331511 91.168167)
(xy 229.312342 91.264532) (xy 229.289321 91.269111) (xy 229.193777 91.308686) (xy 229.10779 91.366141) (xy 229.034664 91.439267)
(xy 228.977209 91.525254) (xy 228.941615 91.611186) (xy 228.912432 91.611186) (xy 228.811003 91.631362) (xy 228.715459 91.670937)
(xy 228.66267 91.70621) (xy 228.612813 91.672896) (xy 228.517269 91.633321) (xy 228.41584 91.613145) (xy 228.312424 91.613145)
(xy 228.210995 91.633321) (xy 228.115451 91.672896) (xy 228.029464 91.730351) (xy 227.956338 91.803477) (xy 227.898883 91.889464)
(xy 227.859308 91.985008) (xy 227.839132 92.086437) (xy 227.839132 92.189853) (xy 227.859308 92.291282) (xy 227.898883 92.386826)
(xy 227.956338 92.472813) (xy 227.992502 92.508977) (xy 227.994558 92.529855) (xy 228.016001 92.600542) (xy 228.050823 92.665689)
(xy 228.091929 92.715778) (xy 223.05168 92.715778) (xy 223.033264 92.713964) (xy 223.014848 92.715778) (xy 223.014846 92.715778)
(xy 222.959752 92.721204) (xy 222.889065 92.742647) (xy 222.889063 92.742648) (xy 222.823917 92.777469) (xy 222.808702 92.789956)
(xy 222.766817 92.82433) (xy 222.755074 92.838639) (xy 217.907866 97.685848) (xy 217.893552 97.697595) (xy 217.846691 97.754697)
(xy 217.811869 97.819844) (xy 217.790426 97.890531) (xy 217.78588 97.93669) (xy 217.783186 97.964043) (xy 217.785 97.982459)
(xy 217.785001 103.51647) (xy 217.367866 103.933607) (xy 217.353552 103.945354) (xy 217.306691 104.002456) (xy 217.271869 104.067603)
(xy 217.250426 104.13829) (xy 217.24837 104.159168) (xy 217.212206 104.195332) (xy 217.154751 104.281319) (xy 217.115176 104.376863)
(xy 217.095 104.478292) (xy 217.095 104.581708) (xy 217.106451 104.639273) (xy 217.076863 104.645158) (xy 216.981319 104.684733)
(xy 216.895332 104.742188) (xy 216.822206 104.815314) (xy 216.764751 104.901301) (xy 216.725176 104.996845) (xy 216.708949 105.078422)
(xy 216.691708 105.074992) (xy 216.588292 105.074992) (xy 216.486863 105.095168) (xy 216.391319 105.134743) (xy 216.305332 105.192198)
(xy 216.232206 105.265324) (xy 216.174751 105.351311) (xy 216.135176 105.446855) (xy 216.115 105.548284) (xy 216.115 105.6517)
(xy 216.119635 105.674999) (xy 213.388417 105.674999) (xy 213.370001 105.673185) (xy 213.351585 105.674999) (xy 213.351582 105.674999)
(xy 213.296488 105.680425) (xy 213.225801 105.701868) (xy 213.160654 105.73669) (xy 213.103553 105.783551) (xy 213.091811 105.797859)
(xy 211.988071 106.9016) (xy 211.951335 106.9016) (xy 211.729157 106.945794) (xy 211.519871 107.032484) (xy 211.331518 107.158337)
(xy 211.171337 107.318518) (xy 211.045484 107.506871) (xy 210.958794 107.716157) (xy 210.9146 107.938335) (xy 210.9146 108.164865)
(xy 210.958794 108.387043) (xy 211.045484 108.596329) (xy 211.171337 108.784682) (xy 211.331518 108.944863) (xy 211.519871 109.070716)
(xy 211.729157 109.157406) (xy 211.951335 109.2016) (xy 212.177865 109.2016) (xy 212.400043 109.157406) (xy 212.609329 109.070716)
(xy 212.797682 108.944863) (xy 212.925001 108.817544) (xy 212.925001 109.200869) (xy 212.662463 109.463408) (xy 212.662458 109.463412)
(xy 212.569772 109.556099) (xy 212.400043 109.485794) (xy 212.177865 109.4416) (xy 211.951335 109.4416) (xy 211.729157 109.485794)
(xy 211.519871 109.572484) (xy 211.331518 109.698337) (xy 211.171337 109.858518) (xy 211.045484 110.046871) (xy 210.958794 110.256157)
(xy 210.9146 110.478335) (xy 210.9146 110.704865) (xy 210.958794 110.927043) (xy 211.045484 111.136329) (xy 211.171337 111.324682)
(xy 211.331518 111.484863) (xy 211.519871 111.610716) (xy 211.729157 111.697406) (xy 211.951335 111.7416) (xy 212.177865 111.7416)
(xy 212.400043 111.697406) (xy 212.609329 111.610716) (xy 212.797682 111.484863) (xy 212.957863 111.324682) (xy 213.083716 111.136329)
(xy 213.170406 110.927043) (xy 213.2146 110.704865) (xy 213.2146 110.478335) (xy 213.4546 110.478335) (xy 213.4546 110.704865)
(xy 213.498794 110.927043) (xy 213.585484 111.136329) (xy 213.711337 111.324682) (xy 213.871518 111.484863) (xy 214.059871 111.610716)
(xy 214.269157 111.697406) (xy 214.491335 111.7416) (xy 214.717865 111.7416) (xy 214.940043 111.697406) (xy 215.149329 111.610716)
(xy 215.337682 111.484863) (xy 215.497863 111.324682) (xy 215.623716 111.136329) (xy 215.710406 110.927043) (xy 215.7546 110.704865)
(xy 215.7546 110.478335) (xy 215.9946 110.478335) (xy 215.9946 110.704865) (xy 216.038794 110.927043) (xy 216.125484 111.136329)
(xy 216.251337 111.324682) (xy 216.411518 111.484863) (xy 216.599871 111.610716) (xy 216.809157 111.697406) (xy 217.031335 111.7416)
(xy 217.257865 111.7416) (xy 217.480043 111.697406) (xy 217.689329 111.610716) (xy 217.877682 111.484863) (xy 218.037863 111.324682)
(xy 218.163716 111.136329) (xy 218.250406 110.927043) (xy 218.2946 110.704865) (xy 218.2946 110.478335) (xy 218.5346 110.478335)
(xy 218.5346 110.704865) (xy 218.578794 110.927043) (xy 218.665484 111.136329) (xy 218.791337 111.324682) (xy 218.951518 111.484863)
(xy 219.139871 111.610716) (xy 219.349157 111.697406) (xy 219.571335 111.7416) (xy 219.797865 111.7416) (xy 220.020043 111.697406)
(xy 220.229329 111.610716) (xy 220.417682 111.484863) (xy 220.577863 111.324682) (xy 220.703716 111.136329) (xy 220.790406 110.927043)
(xy 220.8346 110.704865) (xy 220.8346 110.478335) (xy 220.790406 110.256157) (xy 220.703716 110.046871) (xy 220.601572 109.894)
(xy 223.765549 109.894) (xy 223.765549 111.594) (xy 223.771341 111.65281) (xy 223.788496 111.70936) (xy 223.816353 111.761477)
(xy 223.853842 111.807158) (xy 223.899523 111.844647) (xy 223.95164 111.872504) (xy 224.00819 111.889659) (xy 224.067 111.895451)
(xy 225.767 111.895451) (xy 225.82581 111.889659) (xy 225.88236 111.872504) (xy 225.934477 111.844647) (xy 225.980158 111.807158)
(xy 226.017647 111.761477) (xy 226.045504 111.70936) (xy 226.062659 111.65281) (xy 226.068451 111.594) (xy 226.068451 111.294)
(xy 226.187183 111.294) (xy 226.579518 111.686335) (xy 226.587175 111.764086) (xy 226.612723 111.848306) (xy 226.654211 111.925924)
(xy 226.691129 111.970908) (xy 226.666841 111.990841) (xy 226.629352 112.036522) (xy 226.601495 112.088639) (xy 226.58434 112.14519)
(xy 226.578548 112.204) (xy 226.58 112.399) (xy 226.655 112.474) (xy 227.175 112.474) (xy 227.175 112.454)
(xy 227.225 112.454) (xy 227.225 112.474) (xy 227.745 112.474) (xy 227.82 112.399) (xy 227.821452 112.204)
(xy 227.81566 112.14519) (xy 227.798505 112.088639) (xy 227.770648 112.036522) (xy 227.733159 111.990841) (xy 227.708871 111.970908)
(xy 227.745789 111.925924) (xy 227.787277 111.848306) (xy 227.812825 111.764086) (xy 227.821451 111.6765) (xy 227.821451 111.3815)
(xy 227.812825 111.293914) (xy 227.787277 111.209694) (xy 227.745789 111.132076) (xy 227.689956 111.064044) (xy 227.621924 111.008211)
(xy 227.544306 110.966723) (xy 227.460086 110.941175) (xy 227.382335 110.933518) (xy 226.823013 110.374196) (xy 226.80579 110.35321)
(xy 226.722042 110.284479) (xy 226.626494 110.233408) (xy 226.522819 110.201958) (xy 226.442018 110.194) (xy 226.442008 110.194)
(xy 226.415 110.19134) (xy 226.387992 110.194) (xy 226.068451 110.194) (xy 226.068451 109.894) (xy 226.062659 109.83519)
(xy 226.045504 109.77864) (xy 226.017647 109.726523) (xy 225.980158 109.680842) (xy 225.934477 109.643353) (xy 225.88236 109.615496)
(xy 225.82581 109.598341) (xy 225.767 109.592549) (xy 224.067 109.592549) (xy 224.00819 109.598341) (xy 223.95164 109.615496)
(xy 223.899523 109.643353) (xy 223.853842 109.680842) (xy 223.816353 109.726523) (xy 223.788496 109.77864) (xy 223.771341 109.83519)
(xy 223.765549 109.894) (xy 220.601572 109.894) (xy 220.577863 109.858518) (xy 220.417682 109.698337) (xy 220.229329 109.572484)
(xy 220.020043 109.485794) (xy 219.797865 109.4416) (xy 219.571335 109.4416) (xy 219.349157 109.485794) (xy 219.139871 109.572484)
(xy 218.951518 109.698337) (xy 218.791337 109.858518) (xy 218.665484 110.046871) (xy 218.578794 110.256157) (xy 218.5346 110.478335)
(xy 218.2946 110.478335) (xy 218.250406 110.256157) (xy 218.163716 110.046871) (xy 218.037863 109.858518) (xy 217.877682 109.698337)
(xy 217.689329 109.572484) (xy 217.480043 109.485794) (xy 217.257865 109.4416) (xy 217.031335 109.4416) (xy 216.809157 109.485794)
(xy 216.599871 109.572484) (xy 216.411518 109.698337) (xy 216.251337 109.858518) (xy 216.125484 110.046871) (xy 216.038794 110.256157)
(xy 215.9946 110.478335) (xy 215.7546 110.478335) (xy 215.710406 110.256157) (xy 215.623716 110.046871) (xy 215.497863 109.858518)
(xy 215.337682 109.698337) (xy 215.149329 109.572484) (xy 214.940043 109.485794) (xy 214.717865 109.4416) (xy 214.491335 109.4416)
(xy 214.269157 109.485794) (xy 214.059871 109.572484) (xy 213.871518 109.698337) (xy 213.711337 109.858518) (xy 213.585484 110.046871)
(xy 213.498794 110.256157) (xy 213.4546 110.478335) (xy 213.2146 110.478335) (xy 213.170406 110.256157) (xy 213.100101 110.086428)
(xy 213.192788 109.993742) (xy 213.192792 109.993737) (xy 213.552144 109.634387) (xy 213.566448 109.622648) (xy 213.578186 109.608345)
(xy 213.578189 109.608342) (xy 213.613309 109.565547) (xy 213.64813 109.500402) (xy 213.651646 109.488812) (xy 213.669574 109.429713)
(xy 213.675 109.374619) (xy 213.675 109.374617) (xy 213.676814 109.356201) (xy 213.675 109.337785) (xy 213.675 108.7303)
(xy 213.711337 108.784682) (xy 213.871518 108.944863) (xy 214.059871 109.070716) (xy 214.269157 109.157406) (xy 214.491335 109.2016)
(xy 214.717865 109.2016) (xy 214.940043 109.157406) (xy 215.149329 109.070716) (xy 215.337682 108.944863) (xy 215.497863 108.784682)
(xy 215.623716 108.596329) (xy 215.710406 108.387043) (xy 215.7546 108.164865) (xy 215.7546 107.938335) (xy 215.710406 107.716157)
(xy 215.623716 107.506871) (xy 215.515558 107.345001) (xy 216.233642 107.345001) (xy 216.125484 107.506871) (xy 216.038794 107.716157)
(xy 215.9946 107.938335) (xy 215.9946 108.164865) (xy 216.038794 108.387043) (xy 216.125484 108.596329) (xy 216.251337 108.784682)
(xy 216.411518 108.944863) (xy 216.599871 109.070716) (xy 216.809157 109.157406) (xy 217.031335 109.2016) (xy 217.257865 109.2016)
(xy 217.480043 109.157406) (xy 217.689329 109.070716) (xy 217.877682 108.944863) (xy 218.037863 108.784682) (xy 218.163716 108.596329)
(xy 218.250406 108.387043) (xy 218.2946 108.164865) (xy 218.2946 107.938335) (xy 218.250406 107.716157) (xy 218.163716 107.506871)
(xy 218.055558 107.345001) (xy 218.531864 107.345001) (xy 218.533149 107.345128) (xy 218.533149 108.9016) (xy 218.538941 108.96041)
(xy 218.556096 109.01696) (xy 218.583953 109.069077) (xy 218.621442 109.114758) (xy 218.667123 109.152247) (xy 218.71924 109.180104)
(xy 218.77579 109.197259) (xy 218.8346 109.203051) (xy 220.5346 109.203051) (xy 220.59341 109.197259) (xy 220.64996 109.180104)
(xy 220.702077 109.152247) (xy 220.747758 109.114758) (xy 220.785247 109.069077) (xy 220.813104 109.01696) (xy 220.830259 108.96041)
(xy 220.836051 108.9016) (xy 220.836051 107.2016) (xy 220.830259 107.14279) (xy 220.813104 107.08624) (xy 220.785247 107.034123)
(xy 220.747758 106.988442) (xy 220.702077 106.950953) (xy 220.64996 106.923096) (xy 220.59341 106.905941) (xy 220.5346 106.900149)
(xy 219.150461 106.900149) (xy 220.512216 105.538395) (xy 220.526525 105.526652) (xy 220.573386 105.469551) (xy 220.60178 105.41643)
(xy 220.608207 105.404406) (xy 220.608208 105.404404) (xy 220.629651 105.333717) (xy 220.635077 105.278623) (xy 220.635077 105.278621)
(xy 220.636891 105.260205) (xy 220.635077 105.241789) (xy 220.635077 98.989248) (xy 221.11451 98.509815) (xy 221.134751 98.558681)
(xy 221.16236 98.6) (xy 221.134751 98.641319) (xy 221.095176 98.736863) (xy 221.075 98.838292) (xy 221.075 98.941708)
(xy 221.095176 99.043137) (xy 221.134751 99.138681) (xy 221.192206 99.224668) (xy 221.265332 99.297794) (xy 221.351319 99.355249)
(xy 221.446863 99.394824) (xy 221.548292 99.415) (xy 221.651708 99.415) (xy 221.753137 99.394824) (xy 221.848681 99.355249)
(xy 221.893952 99.325) (xy 223.404177 99.325) (xy 223.454941 99.33) (xy 224.324212 99.33) (xy 224.327175 99.360086)
(xy 224.352723 99.444306) (xy 224.394211 99.521924) (xy 224.450044 99.589956) (xy 224.518076 99.645789) (xy 224.595694 99.687277)
(xy 224.671857 99.710381) (xy 224.653077 99.720419) (xy 224.588454 99.773454) (xy 224.535419 99.838077) (xy 224.496011 99.911804)
(xy 224.471743 99.991804) (xy 224.463549 100.075) (xy 224.463549 100.6) (xy 224.471743 100.683196) (xy 224.496011 100.763196)
(xy 224.535419 100.836923) (xy 224.588454 100.901546) (xy 224.653077 100.954581) (xy 224.726804 100.993989) (xy 224.744785 100.999444)
(xy 224.017177 100.998848) (xy 224.033196 100.993989) (xy 224.106923 100.954581) (xy 224.171546 100.901546) (xy 224.224581 100.836923)
(xy 224.263989 100.763196) (xy 224.288257 100.683196) (xy 224.296451 100.6) (xy 224.296451 100.349786) (xy 224.297661 100.3375)
(xy 224.296451 100.325214) (xy 224.296451 100.075) (xy 224.288257 99.991804) (xy 224.263989 99.911804) (xy 224.224581 99.838077)
(xy 224.171546 99.773454) (xy 224.106923 99.720419) (xy 224.033196 99.681011) (xy 223.953196 99.656743) (xy 223.87 99.648549)
(xy 223.62 99.648549) (xy 223.536804 99.656743) (xy 223.456804 99.681011) (xy 223.383077 99.720419) (xy 223.318454 99.773454)
(xy 223.306927 99.7875) (xy 222.769508 99.7875) (xy 222.7425 99.78484) (xy 222.715492 99.7875) (xy 222.715482 99.7875)
(xy 222.634681 99.795458) (xy 222.531006 99.826908) (xy 222.451185 99.869573) (xy 222.435458 99.877979) (xy 222.372695 99.929487)
(xy 222.37269 99.929492) (xy 222.35171 99.94671) (xy 222.334491 99.967691) (xy 221.970195 100.331988) (xy 221.94921 100.34921)
(xy 221.880479 100.432958) (xy 221.829408 100.528507) (xy 221.797958 100.632182) (xy 221.79 100.712983) (xy 221.79 100.712992)
(xy 221.78734 100.74) (xy 221.79 100.767008) (xy 221.79 101.215454) (xy 221.787959 101.222182) (xy 221.77734 101.33)
(xy 221.787959 101.437818) (xy 221.8 101.477512) (xy 221.8 101.825954) (xy 221.762723 101.895694) (xy 221.737175 101.979914)
(xy 221.728549 102.0675) (xy 221.728549 102.3625) (xy 221.737175 102.450086) (xy 221.762723 102.534306) (xy 221.804211 102.611924)
(xy 221.841129 102.656908) (xy 221.816841 102.676841) (xy 221.779352 102.722522) (xy 221.751495 102.774639) (xy 221.73434 102.83119)
(xy 221.728548 102.89) (xy 221.73 103.085) (xy 221.805 103.16) (xy 222.325 103.16) (xy 222.325 103.14)
(xy 222.375 103.14) (xy 222.375 103.16) (xy 222.895 103.16) (xy 222.97 103.085) (xy 222.971452 102.89)
(xy 222.96566 102.83119) (xy 222.948505 102.774639) (xy 222.920648 102.722522) (xy 222.883159 102.676841) (xy 222.858871 102.656908)
(xy 222.895789 102.611924) (xy 222.937277 102.534306) (xy 222.962825 102.450086) (xy 222.971451 102.3625) (xy 222.971451 102.0675)
(xy 222.962825 101.979914) (xy 222.937277 101.895694) (xy 222.9 101.825954) (xy 222.9 101.377007) (xy 222.90266 101.349999)
(xy 222.9 101.322991) (xy 222.9 101.322982) (xy 222.892042 101.242181) (xy 222.89 101.23545) (xy 222.89 100.967817)
(xy 222.970318 100.8875) (xy 223.306927 100.8875) (xy 223.318454 100.901546) (xy 223.383077 100.954581) (xy 223.456804 100.993989)
(xy 223.536804 101.018257) (xy 223.543227 101.01889) (xy 223.534639 101.021495) (xy 223.482522 101.049352) (xy 223.436841 101.086841)
(xy 223.399352 101.132522) (xy 223.371495 101.184639) (xy 223.35434 101.24119) (xy 223.348548 101.3) (xy 223.35 102.775)
(xy 223.425 102.85) (xy 225.5 102.85) (xy 225.5 101.075) (xy 225.425 101) (xy 225.283761 100.999884)
(xy 225.303196 100.993989) (xy 225.376923 100.954581) (xy 225.441546 100.901546) (xy 225.494581 100.836923) (xy 225.533989 100.763196)
(xy 225.558257 100.683196) (xy 225.566451 100.6) (xy 225.566451 100.316379) (xy 225.613898 100.268932) (xy 225.613902 100.268927)
(xy 225.733549 100.14928) (xy 225.733549 100.6) (xy 225.741743 100.683196) (xy 225.766011 100.763196) (xy 225.805419 100.836923)
(xy 225.858454 100.901546) (xy 225.923077 100.954581) (xy 225.996804 100.993989) (xy 226.016239 100.999884) (xy 225.875 101)
(xy 225.8 101.075) (xy 225.8 102.85) (xy 225.82 102.85) (xy 225.82 103.15) (xy 225.8 103.15)
(xy 225.8 104.925) (xy 225.875 105) (xy 226.016239 105.000116) (xy 225.996804 105.006011) (xy 225.923077 105.045419)
(xy 225.858454 105.098454) (xy 225.805419 105.163077) (xy 225.766011 105.236804) (xy 225.741743 105.316804) (xy 225.733549 105.4)
(xy 225.733549 105.85072) (xy 225.566451 105.683622) (xy 225.566451 105.4) (xy 225.558257 105.316804) (xy 225.533989 105.236804)
(xy 225.494581 105.163077) (xy 225.441546 105.098454) (xy 225.376923 105.045419) (xy 225.303196 105.006011) (xy 225.283761 105.000116)
(xy 225.425 105) (xy 225.5 104.925) (xy 225.5 103.15) (xy 223.425 103.15) (xy 223.35 103.225)
(xy 223.348548 104.7) (xy 223.35434 104.75881) (xy 223.371495 104.815361) (xy 223.399352 104.867478) (xy 223.436841 104.913159)
(xy 223.482522 104.950648) (xy 223.534639 104.978505) (xy 223.543227 104.98111) (xy 223.536804 104.981743) (xy 223.456804 105.006011)
(xy 223.383077 105.045419) (xy 223.318454 105.098454) (xy 223.296668 105.125) (xy 222.930871 105.125) (xy 222.905789 105.078076)
(xy 222.849956 105.010044) (xy 222.837717 105) (xy 222.849956 104.989956) (xy 222.905789 104.921924) (xy 222.947277 104.844306)
(xy 222.972825 104.760086) (xy 222.981451 104.6725) (xy 222.981451 104.3275) (xy 222.972825 104.239914) (xy 222.947277 104.155694)
(xy 222.905789 104.078076) (xy 222.849956 104.010044) (xy 222.781924 103.954211) (xy 222.704306 103.912723) (xy 222.620086 103.887175)
(xy 222.5325 103.878549) (xy 222.2375 103.878549) (xy 222.149914 103.887175) (xy 222.065694 103.912723) (xy 221.988076 103.954211)
(xy 221.920044 104.010044) (xy 221.9 104.034467) (xy 221.879956 104.010044) (xy 221.811924 103.954211) (xy 221.752604 103.922504)
(xy 221.795249 103.858681) (xy 221.834824 103.763137) (xy 221.844267 103.715666) (xy 221.862522 103.730648) (xy 221.914639 103.758505)
(xy 221.97119 103.77566) (xy 222.03 103.781452) (xy 222.25 103.78) (xy 222.325 103.705) (xy 222.325 103.21)
(xy 222.375 103.21) (xy 222.375 103.705) (xy 222.45 103.78) (xy 222.67 103.781452) (xy 222.72881 103.77566)
(xy 222.785361 103.758505) (xy 222.837478 103.730648) (xy 222.883159 103.693159) (xy 222.920648 103.647478) (xy 222.948505 103.595361)
(xy 222.96566 103.53881) (xy 222.971452 103.48) (xy 222.97 103.285) (xy 222.895 103.21) (xy 222.375 103.21)
(xy 222.325 103.21) (xy 221.805 103.21) (xy 221.738545 103.276455) (xy 221.737794 103.275332) (xy 221.664668 103.202206)
(xy 221.578681 103.144751) (xy 221.483137 103.105176) (xy 221.381708 103.085) (xy 221.278292 103.085) (xy 221.176863 103.105176)
(xy 221.081319 103.144751) (xy 220.995332 103.202206) (xy 220.922206 103.275332) (xy 220.864751 103.361319) (xy 220.825176 103.456863)
(xy 220.805 103.558292) (xy 220.805 103.661708) (xy 220.825176 103.763137) (xy 220.864751 103.858681) (xy 220.922206 103.944668)
(xy 220.955 103.977462) (xy 220.955 104.005976) (xy 220.950044 104.010044) (xy 220.894211 104.078076) (xy 220.852723 104.155694)
(xy 220.827175 104.239914) (xy 220.818549 104.3275) (xy 220.818549 104.6725) (xy 220.827175 104.760086) (xy 220.852723 104.844306)
(xy 220.894211 104.921924) (xy 220.950044 104.989956) (xy 220.962283 105) (xy 220.950044 105.010044) (xy 220.894211 105.078076)
(xy 220.852723 105.155694) (xy 220.827175 105.239914) (xy 220.818549 105.3275) (xy 220.818549 105.6725) (xy 220.827175 105.760086)
(xy 220.852723 105.844306) (xy 220.894211 105.921924) (xy 220.950044 105.989956) (xy 220.951529 105.991175) (xy 220.944751 106.001319)
(xy 220.905176 106.096863) (xy 220.885 106.198292) (xy 220.885 106.301708) (xy 220.905176 106.403137) (xy 220.944751 106.498681)
(xy 221.002206 106.584668) (xy 221.075332 106.657794) (xy 221.161319 106.715249) (xy 221.256863 106.754824) (xy 221.358292 106.775)
(xy 221.461708 106.775) (xy 221.563137 106.754824) (xy 221.658681 106.715249) (xy 221.744668 106.657794) (xy 221.817794 106.584668)
(xy 221.875249 106.498681) (xy 221.914824 106.403137) (xy 221.935 106.301708) (xy 221.935 106.198292) (xy 221.914824 106.096863)
(xy 221.875249 106.001319) (xy 221.872012 105.996475) (xy 221.879956 105.989956) (xy 221.9 105.965533) (xy 221.920044 105.989956)
(xy 221.988076 106.045789) (xy 222.065694 106.087277) (xy 222.149914 106.112825) (xy 222.2375 106.121451) (xy 222.5325 106.121451)
(xy 222.620086 106.112825) (xy 222.704306 106.087277) (xy 222.781924 106.045789) (xy 222.849956 105.989956) (xy 222.905789 105.921924)
(xy 222.930871 105.875) (xy 223.193549 105.875) (xy 223.193549 105.925) (xy 223.201743 106.008196) (xy 223.226011 106.088196)
(xy 223.265419 106.161923) (xy 223.318454 106.226546) (xy 223.383077 106.279581) (xy 223.456804 106.318989) (xy 223.536804 106.343257)
(xy 223.62 106.351451) (xy 223.87 106.351451) (xy 223.900607 106.348436) (xy 224.704308 107.152138) (xy 224.716051 107.166447)
(xy 224.773152 107.213308) (xy 224.838299 107.24813) (xy 224.908986 107.269573) (xy 224.96408 107.274999) (xy 224.964083 107.274999)
(xy 224.982499 107.276813) (xy 225.000915 107.274999) (xy 228.030132 107.274999) (xy 228.048548 107.276813) (xy 228.066964 107.274999)
(xy 228.066967 107.274999) (xy 228.122061 107.269573) (xy 228.192748 107.24813) (xy 228.257895 107.213308) (xy 228.314996 107.166447)
(xy 228.326743 107.152133) (xy 228.952139 106.526739) (xy 228.966448 106.514996) (xy 229.013309 106.457895) (xy 229.048131 106.392748)
(xy 229.069574 106.322061) (xy 229.075 106.266967) (xy 229.075 106.266964) (xy 229.076814 106.248548) (xy 229.075 106.230132)
(xy 229.075 103.123705) (xy 230.710615 101.488091) (xy 231.038916 101.813174) (xy 231.083329 101.849441) (xy 231.135195 101.877164)
(xy 231.191473 101.894236) (xy 231.25 101.9) (xy 231.308527 101.894236) (xy 231.364805 101.877164) (xy 231.416671 101.849441)
(xy 231.462132 101.812132) (xy 231.890812 101.383452) (xy 231.900288 101.392929) (xy 231.945936 101.430391) (xy 232.015425 101.467534)
(xy 232.090825 101.490406) (xy 232.169239 101.498129) (xy 232.218502 101.493277) (xy 232.218503 102.777602) (xy 232.201243 102.784751)
(xy 232.115256 102.842206) (xy 232.04213 102.915332) (xy 231.984675 103.001319) (xy 231.9451 103.096863) (xy 231.924924 103.198292)
(xy 231.924924 103.301708) (xy 231.9451 103.403137) (xy 231.984675 103.498681) (xy 232.04213 103.584668) (xy 232.115256 103.657794)
(xy 232.201243 103.715249) (xy 232.262286 103.740533) (xy 232.242753 103.78769) (xy 232.222577 103.889119) (xy 232.222577 103.992535)
(xy 232.242753 104.093964) (xy 232.282328 104.189508) (xy 232.339783 104.275495) (xy 232.364721 104.300433) (xy 232.331294 104.381134)
(xy 232.311118 104.482563) (xy 232.311118 104.585979) (xy 232.331112 104.686494) (xy 232.301684 104.706157) (xy 232.228558 104.779283)
(xy 232.171103 104.86527) (xy 232.131528 104.960814) (xy 232.111352 105.062243) (xy 232.111352 105.165659) (xy 232.131528 105.267088)
(xy 232.171103 105.362632) (xy 232.228558 105.448619) (xy 232.301684 105.521745) (xy 232.348035 105.552716) (xy 230.697866 107.202885)
(xy 230.683552 107.214632) (xy 230.665786 107.236281) (xy 230.587842 107.158337) (xy 230.399489 107.032484) (xy 230.190203 106.945794)
(xy 229.968025 106.9016) (xy 229.741495 106.9016) (xy 229.519317 106.945794) (xy 229.310031 107.032484) (xy 229.121678 107.158337)
(xy 228.961497 107.318518) (xy 228.835644 107.506871) (xy 228.748954 107.716157) (xy 228.70476 107.938335) (xy 228.70476 108.164865)
(xy 228.748954 108.387043) (xy 228.835644 108.596329) (xy 228.961497 108.784682) (xy 229.121678 108.944863) (xy 229.310031 109.070716)
(xy 229.519317 109.157406) (xy 229.741495 109.2016) (xy 229.968025 109.2016) (xy 230.190203 109.157406) (xy 230.399489 109.070716)
(xy 230.575 108.953443) (xy 230.575001 109.689757) (xy 230.399489 109.572484) (xy 230.190203 109.485794) (xy 229.968025 109.4416)
(xy 229.741495 109.4416) (xy 229.519317 109.485794) (xy 229.310031 109.572484) (xy 229.121678 109.698337) (xy 228.961497 109.858518)
(xy 228.835644 110.046871) (xy 228.748954 110.256157) (xy 228.70476 110.478335) (xy 228.70476 110.704865) (xy 228.748954 110.927043)
(xy 228.835644 111.136329) (xy 228.961497 111.324682) (xy 229.121678 111.484863) (xy 229.310031 111.610716) (xy 229.519317 111.697406)
(xy 229.741495 111.7416) (xy 229.968025 111.7416) (xy 230.190203 111.697406) (xy 230.399489 111.610716) (xy 230.582017 111.488755)
(xy 230.60187 111.5542) (xy 230.636691 111.619346) (xy 230.651031 111.636819) (xy 230.683553 111.676448) (xy 230.697862 111.688191)
(xy 231.553832 112.544162) (xy 231.565575 112.558471) (xy 231.622676 112.605332) (xy 231.687823 112.640154) (xy 231.75851 112.661597)
(xy 231.813604 112.667023) (xy 231.813607 112.667023) (xy 231.832023 112.668837) (xy 231.850439 112.667023) (xy 240.876561 112.667023)
(xy 240.894977 112.668837) (xy 240.913393 112.667023) (xy 240.913396 112.667023) (xy 240.96849 112.661597) (xy 241.039177 112.640154)
(xy 241.104324 112.605332) (xy 241.161425 112.558471) (xy 241.173172 112.544157) (xy 241.99819 111.71914) (xy 241.998194 111.719135)
(xy 242.078325 111.639004) (xy 242.219317 111.697406) (xy 242.441495 111.7416) (xy 242.668025 111.7416) (xy 242.890203 111.697406)
(xy 243.099489 111.610716) (xy 243.287842 111.484863) (xy 243.448023 111.324682) (xy 243.573876 111.136329) (xy 243.660566 110.927043)
(xy 243.70476 110.704865) (xy 243.70476 110.478335) (xy 243.660566 110.256157) (xy 243.573876 110.046871) (xy 243.448023 109.858518)
(xy 243.287842 109.698337) (xy 243.099489 109.572484) (xy 242.890203 109.485794) (xy 242.668025 109.4416) (xy 242.441495 109.4416)
(xy 242.219317 109.485794) (xy 242.010031 109.572484) (xy 241.821678 109.698337) (xy 241.661497 109.858518) (xy 241.535644 110.046871)
(xy 241.448954 110.256157) (xy 241.40476 110.478335) (xy 241.40476 110.704865) (xy 241.448954 110.927043) (xy 241.531162 111.125509)
(xy 241.467865 111.188806) (xy 241.46786 111.18881) (xy 240.739648 111.917023) (xy 239.260307 111.917023) (xy 239.45819 111.71914)
(xy 239.458194 111.719135) (xy 239.538325 111.639004) (xy 239.679317 111.697406) (xy 239.901495 111.7416) (xy 240.128025 111.7416)
(xy 240.350203 111.697406) (xy 240.559489 111.610716) (xy 240.747842 111.484863) (xy 240.908023 111.324682) (xy 241.033876 111.136329)
(xy 241.120566 110.927043) (xy 241.16476 110.704865) (xy 241.16476 110.478335) (xy 241.120566 110.256157) (xy 241.033876 110.046871)
(xy 240.908023 109.858518) (xy 240.747842 109.698337) (xy 240.559489 109.572484) (xy 240.350203 109.485794) (xy 240.128025 109.4416)
(xy 239.901495 109.4416) (xy 239.679317 109.485794) (xy 239.470031 109.572484) (xy 239.281678 109.698337) (xy 239.121497 109.858518)
(xy 238.995644 110.046871) (xy 238.908954 110.256157) (xy 238.86476 110.478335) (xy 238.86476 110.704865) (xy 238.908954 110.927043)
(xy 238.991162 111.125509) (xy 238.927865 111.188806) (xy 238.92786 111.18881) (xy 238.499659 111.617012) (xy 238.004289 111.617012)
(xy 238.019489 111.610716) (xy 238.207842 111.484863) (xy 238.368023 111.324682) (xy 238.493876 111.136329) (xy 238.580566 110.927043)
(xy 238.62476 110.704865) (xy 238.62476 110.478335) (xy 238.580566 110.256157) (xy 238.493876 110.046871) (xy 238.368023 109.858518)
(xy 238.207842 109.698337) (xy 238.019489 109.572484) (xy 237.810203 109.485794) (xy 237.588025 109.4416) (xy 237.361495 109.4416)
(xy 237.139317 109.485794) (xy 236.930031 109.572484) (xy 236.741678 109.698337) (xy 236.581497 109.858518) (xy 236.455644 110.046871)
(xy 236.368954 110.256157) (xy 236.32476 110.478335) (xy 236.32476 110.704865) (xy 236.368954 110.927043) (xy 236.451162 111.125509)
(xy 236.25967 111.317001) (xy 235.833155 111.317001) (xy 235.953876 111.136329) (xy 236.040566 110.927043) (xy 236.08476 110.704865)
(xy 236.08476 110.478335) (xy 236.040566 110.256157) (xy 235.953876 110.046871) (xy 235.828023 109.858518) (xy 235.667842 109.698337)
(xy 235.479489 109.572484) (xy 235.270203 109.485794) (xy 235.048025 109.4416) (xy 234.821495 109.4416) (xy 234.599317 109.485794)
(xy 234.422404 109.559075) (xy 234.378193 109.514864) (xy 234.378189 109.514859) (xy 234.175 109.311671) (xy 234.175 108.918185)
(xy 234.201678 108.944863) (xy 234.390031 109.070716) (xy 234.599317 109.157406) (xy 234.821495 109.2016) (xy 235.048025 109.2016)
(xy 235.270203 109.157406) (xy 235.479489 109.070716) (xy 235.667842 108.944863) (xy 235.828023 108.784682) (xy 235.953876 108.596329)
(xy 236.040566 108.387043) (xy 236.08476 108.164865) (xy 236.08476 107.938335) (xy 236.32476 107.938335) (xy 236.32476 108.164865)
(xy 236.368954 108.387043) (xy 236.455644 108.596329) (xy 236.581497 108.784682) (xy 236.741678 108.944863) (xy 236.930031 109.070716)
(xy 237.139317 109.157406) (xy 237.361495 109.2016) (xy 237.588025 109.2016) (xy 237.810203 109.157406) (xy 238.019489 109.070716)
(xy 238.207842 108.944863) (xy 238.368023 108.784682) (xy 238.493876 108.596329) (xy 238.580566 108.387043) (xy 238.62476 108.164865)
(xy 238.62476 107.938335) (xy 238.86476 107.938335) (xy 238.86476 108.164865) (xy 238.908954 108.387043) (xy 238.995644 108.596329)
(xy 239.121497 108.784682) (xy 239.281678 108.944863) (xy 239.470031 109.070716) (xy 239.679317 109.157406) (xy 239.901495 109.2016)
(xy 240.128025 109.2016) (xy 240.350203 109.157406) (xy 240.559489 109.070716) (xy 240.747842 108.944863) (xy 240.908023 108.784682)
(xy 241.033876 108.596329) (xy 241.120566 108.387043) (xy 241.16476 108.164865) (xy 241.16476 107.938335) (xy 241.120566 107.716157)
(xy 241.033876 107.506871) (xy 240.908023 107.318518) (xy 240.791105 107.2016) (xy 241.403309 107.2016) (xy 241.403309 108.9016)
(xy 241.409101 108.96041) (xy 241.426256 109.01696) (xy 241.454113 109.069077) (xy 241.491602 109.114758) (xy 241.537283 109.152247)
(xy 241.5894 109.180104) (xy 241.64595 109.197259) (xy 241.70476 109.203051) (xy 243.40476 109.203051) (xy 243.46357 109.197259)
(xy 243.52012 109.180104) (xy 243.572237 109.152247) (xy 243.617918 109.114758) (xy 243.655407 109.069077) (xy 243.683264 109.01696)
(xy 243.700419 108.96041) (xy 243.706211 108.9016) (xy 243.706211 107.202617) (xy 246.582738 107.202617) (xy 246.682085 107.380657)
(xy 246.896951 107.500912) (xy 247.131149 107.576937) (xy 247.375678 107.605812) (xy 247.621143 107.586426) (xy 247.858108 107.519526)
(xy 248.077469 107.40768) (xy 248.117915 107.380657) (xy 248.217262 107.202617) (xy 247.4 106.385355) (xy 246.582738 107.202617)
(xy 243.706211 107.202617) (xy 243.706211 107.2016) (xy 243.700419 107.14279) (xy 243.683264 107.08624) (xy 243.655407 107.034123)
(xy 243.617918 106.988442) (xy 243.572237 106.950953) (xy 243.52012 106.923096) (xy 243.46357 106.905941) (xy 243.40476 106.900149)
(xy 242.996112 106.900149) (xy 243.177469 106.80768) (xy 243.217915 106.780657) (xy 243.317262 106.602617) (xy 242.5 105.785355)
(xy 241.682738 106.602617) (xy 241.782085 106.780657) (xy 241.995588 106.900149) (xy 241.70476 106.900149) (xy 241.64595 106.905941)
(xy 241.5894 106.923096) (xy 241.537283 106.950953) (xy 241.491602 106.988442) (xy 241.454113 107.034123) (xy 241.426256 107.08624)
(xy 241.409101 107.14279) (xy 241.403309 107.2016) (xy 240.791105 107.2016) (xy 240.747842 107.158337) (xy 240.559489 107.032484)
(xy 240.350203 106.945794) (xy 240.128025 106.9016) (xy 239.901495 106.9016) (xy 239.679317 106.945794) (xy 239.470031 107.032484)
(xy 239.281678 107.158337) (xy 239.121497 107.318518) (xy 238.995644 107.506871) (xy 238.908954 107.716157) (xy 238.86476 107.938335)
(xy 238.62476 107.938335) (xy 238.580566 107.716157) (xy 238.493876 107.506871) (xy 238.368023 107.318518) (xy 238.207842 107.158337)
(xy 238.019489 107.032484) (xy 237.810203 106.945794) (xy 237.588025 106.9016) (xy 237.361495 106.9016) (xy 237.139317 106.945794)
(xy 236.930031 107.032484) (xy 236.741678 107.158337) (xy 236.581497 107.318518) (xy 236.455644 107.506871) (xy 236.368954 107.716157)
(xy 236.32476 107.938335) (xy 236.08476 107.938335) (xy 236.040566 107.716157) (xy 235.953876 107.506871) (xy 235.828023 107.318518)
(xy 235.667842 107.158337) (xy 235.479489 107.032484) (xy 235.270203 106.945794) (xy 235.048025 106.9016) (xy 235.036691 106.9016)
(xy 235.048131 106.880198) (xy 235.069574 106.809511) (xy 235.075 106.754417) (xy 235.075 106.754415) (xy 235.076814 106.735999)
(xy 235.075 106.717583) (xy 235.075 105.725678) (xy 241.244188 105.725678) (xy 241.263574 105.971143) (xy 241.330474 106.208108)
(xy 241.44232 106.427469) (xy 241.469343 106.467915) (xy 241.647383 106.567262) (xy 242.464645 105.75) (xy 242.535355 105.75)
(xy 243.352617 106.567262) (xy 243.530657 106.467915) (xy 243.610263 106.325678) (xy 246.144188 106.325678) (xy 246.163574 106.571143)
(xy 246.230474 106.808108) (xy 246.34232 107.027469) (xy 246.369343 107.067915) (xy 246.547383 107.167262) (xy 247.364645 106.35)
(xy 247.435355 106.35) (xy 248.252617 107.167262) (xy 248.430657 107.067915) (xy 248.550912 106.853049) (xy 248.626937 106.618851)
(xy 248.655812 106.374322) (xy 248.636426 106.128857) (xy 248.569526 105.891892) (xy 248.45768 105.672531) (xy 248.430657 105.632085)
(xy 248.252617 105.532738) (xy 247.435355 106.35) (xy 247.364645 106.35) (xy 246.547383 105.532738) (xy 246.369343 105.632085)
(xy 246.249088 105.846951) (xy 246.173063 106.081149) (xy 246.144188 106.325678) (xy 243.610263 106.325678) (xy 243.650912 106.253049)
(xy 243.726937 106.018851) (xy 243.755812 105.774322) (xy 243.736426 105.528857) (xy 243.727541 105.497383) (xy 246.582738 105.497383)
(xy 247.4 106.314645) (xy 248.217262 105.497383) (xy 248.117915 105.319343) (xy 247.903049 105.199088) (xy 247.668851 105.123063)
(xy 247.424322 105.094188) (xy 247.178857 105.113574) (xy 246.941892 105.180474) (xy 246.722531 105.29232) (xy 246.682085 105.319343)
(xy 246.582738 105.497383) (xy 243.727541 105.497383) (xy 243.669526 105.291892) (xy 243.55768 105.072531) (xy 243.530657 105.032085)
(xy 243.352617 104.932738) (xy 242.535355 105.75) (xy 242.464645 105.75) (xy 241.647383 104.932738) (xy 241.469343 105.032085)
(xy 241.349088 105.246951) (xy 241.273063 105.481149) (xy 241.244188 105.725678) (xy 235.075 105.725678) (xy 235.075 104.897383)
(xy 241.682738 104.897383) (xy 242.5 105.714645) (xy 243.317262 104.897383) (xy 243.217915 104.719343) (xy 243.003049 104.599088)
(xy 242.768851 104.523063) (xy 242.524322 104.494188) (xy 242.278857 104.513574) (xy 242.041892 104.580474) (xy 241.822531 104.69232)
(xy 241.782085 104.719343) (xy 241.682738 104.897383) (xy 235.075 104.897383) (xy 235.075 103.548292) (xy 236.275 103.548292)
(xy 236.275 103.651708) (xy 236.295176 103.753137) (xy 236.334751 103.848681) (xy 236.392206 103.934668) (xy 236.465332 104.007794)
(xy 236.551319 104.065249) (xy 236.646863 104.104824) (xy 236.748292 104.125) (xy 236.851708 104.125) (xy 236.953137 104.104824)
(xy 237.048681 104.065249) (xy 237.134668 104.007794) (xy 237.207794 103.934668) (xy 237.265249 103.848681) (xy 237.304824 103.753137)
(xy 237.325 103.651708) (xy 237.325 103.548292) (xy 237.304824 103.446863) (xy 237.265249 103.351319) (xy 237.207794 103.265332)
(xy 237.134668 103.192206) (xy 237.048681 103.134751) (xy 236.953137 103.095176) (xy 236.851708 103.075) (xy 236.748292 103.075)
(xy 236.646863 103.095176) (xy 236.551319 103.134751) (xy 236.465332 103.192206) (xy 236.392206 103.265332) (xy 236.334751 103.351319)
(xy 236.295176 103.446863) (xy 236.275 103.548292) (xy 235.075 103.548292) (xy 235.075 99.119888) (xy 235.076814 99.101472)
(xy 235.073365 99.066456) (xy 235.069574 99.027959) (xy 235.048131 98.957272) (xy 235.035452 98.933552) (xy 235.01331 98.892125)
(xy 234.98024 98.85183) (xy 234.979463 98.850883) (xy 234.999035 98.834821) (xy 235.04657 98.776899) (xy 236.021809 99.752139)
(xy 236.033552 99.766448) (xy 236.090653 99.813309) (xy 236.1558 99.848131) (xy 236.226487 99.869574) (xy 236.281581 99.875)
(xy 236.281584 99.875) (xy 236.3 99.876814) (xy 236.318416 99.875) (xy 237.168549 99.875) (xy 237.168549 99.9975)
(xy 237.177175 100.085086) (xy 237.202723 100.169306) (xy 237.244211 100.246924) (xy 237.300044 100.314956) (xy 237.368076 100.370789)
(xy 237.445694 100.412277) (xy 237.529914 100.437825) (xy 237.6175 100.446451) (xy 237.9125 100.446451) (xy 238.000086 100.437825)
(xy 238.084306 100.412277) (xy 238.161924 100.370789) (xy 238.229956 100.314956) (xy 238.25 100.290533) (xy 238.270044 100.314956)
(xy 238.338076 100.370789) (xy 238.415694 100.412277) (xy 238.499914 100.437825) (xy 238.5875 100.446451) (xy 238.8825 100.446451)
(xy 238.970086 100.437825) (xy 239.054306 100.412277) (xy 239.131924 100.370789) (xy 239.199956 100.314956) (xy 239.255789 100.246924)
(xy 239.297277 100.169306) (xy 239.322825 100.085086) (xy 239.331451 99.9975) (xy 239.331451 99.758878) (xy 239.7425 99.34783)
(xy 239.896808 99.502139) (xy 239.908551 99.516448) (xy 239.922858 99.528189) (xy 239.965652 99.56331) (xy 240.006581 99.585186)
(xy 240.030799 99.598131) (xy 240.031518 99.598349) (xy 238.574868 101.055) (xy 238.177462 101.055) (xy 238.144668 101.022206)
(xy 238.058681 100.964751) (xy 237.963137 100.925176) (xy 237.861708 100.905) (xy 237.758292 100.905) (xy 237.656863 100.925176)
(xy 237.561319 100.964751) (xy 237.475332 101.022206) (xy 237.402206 101.095332) (xy 237.344751 101.181319) (xy 237.305176 101.276863)
(xy 237.285 101.378292) (xy 237.285 101.481708) (xy 237.305176 101.583137) (xy 237.344751 101.678681) (xy 237.402206 101.764668)
(xy 237.475332 101.837794) (xy 237.561319 101.895249) (xy 237.656863 101.934824) (xy 237.758292 101.955) (xy 237.861708 101.955)
(xy 237.963137 101.934824) (xy 238.058681 101.895249) (xy 238.144668 101.837794) (xy 238.177462 101.805) (xy 238.711781 101.805)
(xy 238.730197 101.806814) (xy 238.748613 101.805) (xy 238.748616 101.805) (xy 238.80371 101.799574) (xy 238.874397 101.778131)
(xy 238.939544 101.743309) (xy 238.996645 101.696448) (xy 239.008392 101.682134) (xy 239.082727 101.607799) (xy 239.10778 101.645293)
(xy 239.180906 101.718419) (xy 239.266893 101.775874) (xy 239.362437 101.815449) (xy 239.463866 101.835625) (xy 239.567282 101.835625)
(xy 239.668711 101.815449) (xy 239.764255 101.775874) (xy 239.841137 101.724503) (xy 239.873674 101.746243) (xy 239.969218 101.785818)
(xy 240.070647 101.805994) (xy 240.174063 101.805994) (xy 240.275492 101.785818) (xy 240.35 101.754956) (xy 240.35 101.775002)
(xy 240.424998 101.775002) (xy 240.374999 101.825001) (xy 240.353865 101.825001) (xy 240.331771 101.822825) (xy 240.309677 101.825001)
(xy 240.309666 101.825001) (xy 240.243556 101.831512) (xy 240.15873 101.857244) (xy 240.080555 101.89903) (xy 240.012034 101.955264)
(xy 239.997943 101.972434) (xy 239.972404 101.997973) (xy 239.955233 102.012065) (xy 239.941142 102.029235) (xy 239.898999 102.080586)
(xy 239.877197 102.121375) (xy 239.857213 102.158762) (xy 239.831481 102.243588) (xy 239.82497 102.309698) (xy 239.82497 102.309708)
(xy 239.822794 102.331802) (xy 239.82497 102.353896) (xy 239.82497 102.378497) (xy 239.809721 102.401319) (xy 239.770146 102.496863)
(xy 239.74997 102.598292) (xy 239.74997 102.701708) (xy 239.770146 102.803137) (xy 239.809721 102.898681) (xy 239.867176 102.984668)
(xy 239.940302 103.057794) (xy 240.026289 103.115249) (xy 240.121833 103.154824) (xy 240.223262 103.175) (xy 240.326678 103.175)
(xy 240.428107 103.154824) (xy 240.467653 103.138444) (xy 240.482523 103.150647) (xy 240.53464 103.178504) (xy 240.59119 103.195659)
(xy 240.65 103.201451) (xy 242.55 103.201451) (xy 242.60881 103.195659) (xy 242.66536 103.178504) (xy 242.717477 103.150647)
(xy 242.763158 103.113158) (xy 242.800647 103.067477) (xy 242.828504 103.01536) (xy 242.845659 102.95881) (xy 242.851451 102.9)
(xy 242.851451 102.6) (xy 242.845659 102.54119) (xy 242.833164 102.5) (xy 242.845659 102.45881) (xy 242.851451 102.4)
(xy 242.851451 102.1) (xy 242.845659 102.04119) (xy 242.833164 102.000002) (xy 242.84566 101.95881) (xy 242.851452 101.9)
(xy 242.85 101.85) (xy 242.775 101.775) (xy 241.625 101.775) (xy 241.625 101.795) (xy 241.575 101.795)
(xy 241.575 101.775) (xy 241.555 101.775) (xy 241.555 101.725) (xy 241.575 101.725) (xy 241.575 101.705)
(xy 241.625 101.705) (xy 241.625 101.725) (xy 242.775 101.725) (xy 242.85 101.65) (xy 242.851452 101.6)
(xy 242.84566 101.54119) (xy 242.833164 101.499998) (xy 242.845659 101.45881) (xy 242.851451 101.4) (xy 242.851451 101.1)
(xy 242.845659 101.04119) (xy 242.833164 101) (xy 242.845659 100.95881) (xy 242.851451 100.9) (xy 242.851451 100.6)
(xy 242.845659 100.54119) (xy 242.833164 100.5) (xy 242.845659 100.45881) (xy 242.851451 100.4) (xy 242.851451 100.1)
(xy 242.845659 100.04119) (xy 242.833164 100) (xy 242.845659 99.95881) (xy 242.851451 99.9) (xy 242.851451 99.6)
(xy 242.845659 99.54119) (xy 242.833164 99.5) (xy 242.845659 99.45881) (xy 242.851451 99.4) (xy 242.851451 99.1)
(xy 242.845659 99.04119) (xy 242.833164 99.000002) (xy 242.84566 98.95881) (xy 242.851452 98.9) (xy 242.85 98.85)
(xy 242.775 98.775) (xy 241.625 98.775) (xy 241.625 98.795) (xy 241.575 98.795) (xy 241.575 98.775)
(xy 240.425 98.775) (xy 240.35 98.85) (xy 240.349274 98.875) (xy 240.330329 98.875) (xy 240.205328 98.75)
(xy 240.330329 98.625) (xy 240.349274 98.625) (xy 240.35 98.65) (xy 240.425 98.725) (xy 241.575 98.725)
(xy 241.575 98.705) (xy 241.625 98.705) (xy 241.625 98.725) (xy 242.775 98.725) (xy 242.85 98.65)
(xy 242.851452 98.6) (xy 242.84566 98.54119) (xy 242.833164 98.499998) (xy 242.845659 98.45881) (xy 242.851451 98.4)
(xy 242.851451 98.1) (xy 242.845659 98.04119) (xy 242.833164 98) (xy 242.845659 97.95881) (xy 242.851451 97.9)
(xy 242.851451 97.6) (xy 242.845659 97.54119) (xy 242.833164 97.500002) (xy 242.84566 97.45881) (xy 242.851452 97.4)
(xy 242.85 97.35) (xy 242.775 97.275) (xy 241.625 97.275) (xy 241.625 97.295) (xy 241.575 97.295)
(xy 241.575 97.275) (xy 240.425 97.275) (xy 240.352665 97.347335) (xy 240.255329 97.25) (xy 240.352665 97.152665)
(xy 240.425 97.225) (xy 241.575 97.225) (xy 241.575 97.205) (xy 241.625 97.205) (xy 241.625 97.225)
(xy 242.775 97.225) (xy 242.85 97.15) (xy 242.851452 97.1) (xy 242.84566 97.04119) (xy 242.833164 96.999998)
(xy 242.845659 96.95881) (xy 242.851451 96.9) (xy 242.851451 96.6) (xy 242.845659 96.54119) (xy 242.833164 96.5)
(xy 242.845659 96.45881) (xy 242.851451 96.4) (xy 242.851451 96.1) (xy 242.845659 96.04119) (xy 242.833164 96.000002)
(xy 242.84566 95.95881) (xy 242.851452 95.9) (xy 242.85 95.85) (xy 242.775 95.775) (xy 241.625 95.775)
(xy 241.625 95.795) (xy 241.575 95.795) (xy 241.575 95.775) (xy 240.425 95.775) (xy 240.35 95.85)
(xy 240.349274 95.875) (xy 240.330329 95.875) (xy 240.230329 95.775) (xy 240.352665 95.652665) (xy 240.425 95.725)
(xy 241.575 95.725) (xy 241.575 95.705) (xy 241.625 95.705) (xy 241.625 95.725) (xy 242.775 95.725)
(xy 242.85 95.65) (xy 242.851452 95.6) (xy 242.84566 95.54119) (xy 242.833164 95.499998) (xy 242.845659 95.45881)
(xy 242.851451 95.4) (xy 242.851451 95.1) (xy 242.845659 95.04119) (xy 242.833164 95) (xy 242.845659 94.95881)
(xy 242.851451 94.9) (xy 242.851451 94.6) (xy 242.845659 94.54119) (xy 242.833164 94.500002) (xy 242.84566 94.45881)
(xy 242.851452 94.4) (xy 242.85 94.35) (xy 242.775 94.275) (xy 241.625 94.275) (xy 241.625 94.295)
(xy 241.575 94.295) (xy 241.575 94.275) (xy 240.425 94.275) (xy 240.35 94.35) (xy 240.349274 94.375)
(xy 240.330329 94.375) (xy 240.205328 94.25) (xy 240.330329 94.125) (xy 240.349274 94.125) (xy 240.35 94.15)
(xy 240.425 94.225) (xy 241.575 94.225) (xy 241.575 94.205) (xy 241.625 94.205) (xy 241.625 94.225)
(xy 242.775 94.225) (xy 242.85 94.15) (xy 242.851452 94.1) (xy 242.84566 94.04119) (xy 242.833164 93.999998)
(xy 242.845659 93.95881) (xy 242.851451 93.9) (xy 242.851451 93.6) (xy 242.845659 93.54119) (xy 242.828504 93.48464)
(xy 242.800647 93.432523) (xy 242.763158 93.386842) (xy 242.717477 93.349353) (xy 242.66536 93.321496) (xy 242.60881 93.304341)
(xy 242.55 93.298549) (xy 240.65 93.298549) (xy 240.59119 93.304341) (xy 240.53464 93.321496) (xy 240.482523 93.349353)
(xy 240.451272 93.375) (xy 240.193415 93.375) (xy 240.174999 93.373186) (xy 240.156583 93.375) (xy 240.15658 93.375)
(xy 240.101486 93.380426) (xy 240.030799 93.401869) (xy 240.011862 93.411991) (xy 239.965652 93.43669) (xy 239.934546 93.462219)
(xy 239.908551 93.483552) (xy 239.896808 93.497861) (xy 239.7425 93.65217) (xy 239.331451 93.241122) (xy 239.331451 93.0025)
(xy 239.322825 92.914914) (xy 239.297277 92.830694) (xy 239.255789 92.753076) (xy 239.199956 92.685044) (xy 239.131924 92.629211)
(xy 239.054306 92.587723) (xy 238.970086 92.562175) (xy 238.8825 92.553549) (xy 238.5875 92.553549) (xy 238.499914 92.562175)
(xy 238.415694 92.587723) (xy 238.338076 92.629211) (xy 238.270044 92.685044) (xy 238.25 92.709467) (xy 238.229956 92.685044)
(xy 238.161924 92.629211) (xy 238.084306 92.587723) (xy 238.000086 92.562175) (xy 237.9125 92.553549) (xy 237.6175 92.553549)
(xy 237.529914 92.562175) (xy 237.445694 92.587723) (xy 237.368076 92.629211) (xy 237.300044 92.685044) (xy 237.244211 92.753076)
(xy 237.202723 92.830694) (xy 237.177175 92.914914) (xy 237.168549 93.0025) (xy 237.168549 93.125) (xy 236.319025 93.125)
(xy 236.300609 93.123186) (xy 236.282193 93.125) (xy 236.28219 93.125) (xy 236.227096 93.130426) (xy 236.156409 93.151869)
(xy 236.091262 93.186691) (xy 236.034161 93.233552) (xy 236.022419 93.24786) (xy 235.045137 94.225143) (xy 235.03843 94.214277)
(xy 234.944633 94.219581) (xy 234.946752 94.182106) (xy 234.962151 94.166707) (xy 234.976459 94.154965) (xy 235.02332 94.097864)
(xy 235.042419 94.062132) (xy 235.058141 94.032719) (xy 235.058142 94.032716) (xy 235.079585 93.96203) (xy 235.085011 93.906936)
(xy 235.085011 93.906934) (xy 235.086825 93.888518) (xy 235.085011 93.870102) (xy 235.085011 92.102617) (xy 241.682738 92.102617)
(xy 241.782085 92.280657) (xy 241.996951 92.400912) (xy 242.231149 92.476937) (xy 242.475678 92.505812) (xy 242.721143 92.486426)
(xy 242.958108 92.419526) (xy 243.177469 92.30768) (xy 243.217915 92.280657) (xy 243.317262 92.102617) (xy 242.5 91.285355)
(xy 241.682738 92.102617) (xy 235.085011 92.102617) (xy 235.085011 91.570961) (xy 235.09 91.571452) (xy 235.69 91.57)
(xy 235.765 91.495) (xy 235.765 90.695) (xy 235.745 90.695) (xy 235.745 90.645) (xy 235.765 90.645)
(xy 235.765 90.625) (xy 235.815 90.625) (xy 235.815 90.645) (xy 235.835 90.645) (xy 235.835 90.695)
(xy 235.815 90.695) (xy 235.815 91.495) (xy 235.89 91.57) (xy 236.49 91.571452) (xy 236.54881 91.56566)
(xy 236.605361 91.548505) (xy 236.657478 91.520648) (xy 236.703159 91.483159) (xy 236.740648 91.437478) (xy 236.768505 91.385361)
(xy 236.78566 91.32881) (xy 236.791452 91.27) (xy 236.791324 91.225678) (xy 241.244188 91.225678) (xy 241.263574 91.471143)
(xy 241.330474 91.708108) (xy 241.44232 91.927469) (xy 241.469343 91.967915) (xy 241.647383 92.067262) (xy 242.464645 91.25)
(xy 242.535355 91.25) (xy 243.352617 92.067262) (xy 243.530657 91.967915) (xy 243.650912 91.753049) (xy 243.726937 91.518851)
(xy 243.728853 91.502617) (xy 246.582738 91.502617) (xy 246.682085 91.680657) (xy 246.896951 91.800912) (xy 247.131149 91.876937)
(xy 247.375678 91.905812) (xy 247.621143 91.886426) (xy 247.858108 91.819526) (xy 248.077469 91.70768) (xy 248.117915 91.680657)
(xy 248.217262 91.502617) (xy 247.4 90.685355) (xy 246.582738 91.502617) (xy 243.728853 91.502617) (xy 243.755812 91.274322)
(xy 243.736426 91.028857) (xy 243.669526 90.791892) (xy 243.584779 90.625678) (xy 246.144188 90.625678) (xy 246.163574 90.871143)
(xy 246.230474 91.108108) (xy 246.34232 91.327469) (xy 246.369343 91.367915) (xy 246.547383 91.467262) (xy 247.364645 90.65)
(xy 247.435355 90.65) (xy 248.252617 91.467262) (xy 248.430657 91.367915) (xy 248.550912 91.153049) (xy 248.626937 90.918851)
(xy 248.655812 90.674322) (xy 248.636426 90.428857) (xy 248.569526 90.191892) (xy 248.45768 89.972531) (xy 248.430657 89.932085)
(xy 248.252617 89.832738) (xy 247.435355 90.65) (xy 247.364645 90.65) (xy 246.547383 89.832738) (xy 246.369343 89.932085)
(xy 246.249088 90.146951) (xy 246.173063 90.381149) (xy 246.144188 90.625678) (xy 243.584779 90.625678) (xy 243.55768 90.572531)
(xy 243.530657 90.532085) (xy 243.352617 90.432738) (xy 242.535355 91.25) (xy 242.464645 91.25) (xy 241.647383 90.432738)
(xy 241.469343 90.532085) (xy 241.349088 90.746951) (xy 241.273063 90.981149) (xy 241.244188 91.225678) (xy 236.791324 91.225678)
(xy 236.790225 90.847349) (xy 236.812522 90.865648) (xy 236.864639 90.893505) (xy 236.92119 90.91066) (xy 236.98 90.916452)
(xy 237.2 90.915) (xy 237.275 90.84) (xy 237.275 90.345) (xy 237.325 90.345) (xy 237.325 90.84)
(xy 237.4 90.915) (xy 237.62 90.916452) (xy 237.67881 90.91066) (xy 237.735361 90.893505) (xy 237.787478 90.865648)
(xy 237.833159 90.828159) (xy 237.870648 90.782478) (xy 237.898505 90.730361) (xy 237.91566 90.67381) (xy 237.921452 90.615)
(xy 237.92 90.42) (xy 237.897383 90.397383) (xy 241.682738 90.397383) (xy 242.5 91.214645) (xy 243.317262 90.397383)
(xy 243.217915 90.219343) (xy 243.003049 90.099088) (xy 242.768851 90.023063) (xy 242.524322 89.994188) (xy 242.278857 90.013574)
(xy 242.041892 90.080474) (xy 241.822531 90.19232) (xy 241.782085 90.219343) (xy 241.682738 90.397383) (xy 237.897383 90.397383)
(xy 237.845 90.345) (xy 237.325 90.345) (xy 237.275 90.345) (xy 237.255 90.345) (xy 237.255 90.295)
(xy 237.275 90.295) (xy 237.275 90.275) (xy 237.325 90.275) (xy 237.325 90.295) (xy 237.845 90.295)
(xy 237.92 90.22) (xy 237.921452 90.025) (xy 237.91566 89.96619) (xy 237.898505 89.909639) (xy 237.870648 89.857522)
(xy 237.833159 89.811841) (xy 237.808871 89.791908) (xy 237.845789 89.746924) (xy 237.887277 89.669306) (xy 237.912825 89.585086)
(xy 237.921451 89.4975) (xy 237.921451 89.2025) (xy 237.912825 89.114914) (xy 237.887277 89.030694) (xy 237.845789 88.953076)
(xy 237.789956 88.885044) (xy 237.721924 88.829211) (xy 237.644306 88.787723) (xy 237.560086 88.762175) (xy 237.4725 88.753549)
(xy 237.233878 88.753549) (xy 237.198195 88.717866) (xy 237.186448 88.703552) (xy 237.129347 88.656691) (xy 237.0642 88.621869)
(xy 236.993513 88.600426) (xy 236.938419 88.595) (xy 236.938416 88.595) (xy 236.92 88.593186) (xy 236.901584 88.595)
(xy 236.791451 88.595) (xy 236.791451 88.37) (xy 236.785659 88.31119) (xy 236.768617 88.255011) (xy 239.966573 88.255011)
(xy 239.984989 88.256825) (xy 240.003405 88.255011) (xy 240.003408 88.255011) (xy 240.058502 88.249585) (xy 240.129189 88.228142)
(xy 240.194336 88.19332) (xy 240.251437 88.146459) (xy 240.263184 88.132145) (xy 240.859828 87.535501) (xy 241.029557 87.605806)
(xy 241.251735 87.65) (xy 241.478265 87.65) (xy 241.700443 87.605806) (xy 241.909729 87.519116) (xy 242.098082 87.393263)
(xy 242.258263 87.233082) (xy 242.384116 87.044729) (xy 242.470806 86.835443) (xy 242.496842 86.704549) (xy 242.773337 86.704549)
(xy 242.834987 86.921395) (xy 242.937757 87.122047) (xy 243.077698 87.298794) (xy 243.249431 87.444844) (xy 243.446357 87.554584)
(xy 243.660909 87.623797) (xy 243.700451 87.631662) (xy 243.88 87.574709) (xy 243.88 86.525) (xy 243.93 86.525)
(xy 243.93 87.574709) (xy 244.109549 87.631662) (xy 244.149091 87.623797) (xy 244.363643 87.554584) (xy 244.560569 87.444844)
(xy 244.732302 87.298794) (xy 244.872243 87.122047) (xy 244.975013 86.921395) (xy 245.036663 86.704549) (xy 244.979729 86.525)
(xy 243.93 86.525) (xy 243.88 86.525) (xy 242.830271 86.525) (xy 242.773337 86.704549) (xy 242.496842 86.704549)
(xy 242.515 86.613265) (xy 242.515 86.386735) (xy 242.470806 86.164557) (xy 242.384116 85.955271) (xy 242.258263 85.766918)
(xy 242.098082 85.606737) (xy 241.909729 85.480884) (xy 241.700443 85.394194) (xy 241.603948 85.375) (xy 243.666957 85.375)
(xy 243.660909 85.376203) (xy 243.446357 85.445416) (xy 243.249431 85.555156) (xy 243.077698 85.701206) (xy 242.937757 85.877953)
(xy 242.834987 86.078605) (xy 242.773337 86.295451) (xy 242.830271 86.475) (xy 243.88 86.475) (xy 243.88 86.455)
(xy 243.93 86.455) (xy 243.93 86.475) (xy 244.979729 86.475) (xy 245.036663 86.295451) (xy 244.975013 86.078605)
(xy 244.872243 85.877953) (xy 244.732302 85.701206) (xy 244.560569 85.555156) (xy 244.363643 85.445416) (xy 244.149091 85.376203)
(xy 244.143043 85.375) (xy 246.981662 85.375) (xy 247.2745 85.403713) (xy 246.887453 85.480702) (xy 246.505277 85.639004)
(xy 246.161328 85.868823) (xy 245.868823 86.161328) (xy 245.639004 86.505277) (xy 245.480702 86.887453) (xy 245.4 87.293168)
(xy 245.4 87.706832) (xy 245.480702 88.112547) (xy 245.639004 88.494723) (xy 245.868823 88.838672) (xy 246.161328 89.131177)
(xy 246.505277 89.360996) (xy 246.875477 89.514337) (xy 246.722531 89.59232) (xy 246.682085 89.619343) (xy 246.582738 89.797383)
(xy 247.4 90.614645) (xy 248.217262 89.797383) (xy 248.117915 89.619343) (xy 247.984624 89.544744) (xy 248.112547 89.519298)
(xy 248.494723 89.360996) (xy 248.838672 89.131177) (xy 249.131177 88.838672) (xy 249.360996 88.494723) (xy 249.519298 88.112547)
(xy 249.596237 87.725748) (xy 249.624995 87.99936) (xy 249.625 88.000733) (xy 249.625001 111.981652) (xy 249.596287 112.2745)
(xy 249.519298 111.887453) (xy 249.360996 111.505277) (xy 249.131177 111.161328) (xy 248.838672 110.868823) (xy 248.494723 110.639004)
(xy 248.112547 110.480702) (xy 247.706832 110.4) (xy 247.293168 110.4) (xy 246.887453 110.480702) (xy 246.505277 110.639004)
(xy 246.161328 110.868823) (xy 245.868823 111.161328) (xy 245.639004 111.505277) (xy 245.480702 111.887453) (xy 245.4 112.293168)
(xy 245.4 112.706832) (xy 245.480702 113.112547) (xy 245.639004 113.494723) (xy 245.868823 113.838672) (xy 246.161328 114.131177)
(xy 246.505277 114.360996) (xy 246.887453 114.519298) (xy 247.274252 114.596237) (xy 247.00064 114.624995) (xy 246.999267 114.625)
(xy 203.018337 114.625) (xy 202.7255 114.596287) (xy 203.112547 114.519298) (xy 203.494723 114.360996) (xy 203.838672 114.131177)
(xy 204.131177 113.838672) (xy 204.360996 113.494723) (xy 204.363553 113.488549) (xy 223.785338 113.488549) (xy 223.793203 113.528091)
(xy 223.862416 113.742643) (xy 223.972156 113.939569) (xy 224.118206 114.111302) (xy 224.294953 114.251243) (xy 224.495605 114.354013)
(xy 224.712451 114.415663) (xy 224.892 114.358729) (xy 224.892 113.309) (xy 224.942 113.309) (xy 224.942 114.358729)
(xy 225.121549 114.415663) (xy 225.338395 114.354013) (xy 225.539047 114.251243) (xy 225.715794 114.111302) (xy 225.861844 113.939569)
(xy 225.971584 113.742643) (xy 226.040797 113.528091) (xy 226.048662 113.488549) (xy 225.991709 113.309) (xy 224.942 113.309)
(xy 224.892 113.309) (xy 223.842291 113.309) (xy 223.785338 113.488549) (xy 204.363553 113.488549) (xy 204.519298 113.112547)
(xy 204.525881 113.079451) (xy 223.785338 113.079451) (xy 223.842291 113.259) (xy 224.892 113.259) (xy 224.892 112.209271)
(xy 224.942 112.209271) (xy 224.942 113.259) (xy 225.991709 113.259) (xy 226.048662 113.079451) (xy 226.040797 113.039909)
(xy 225.971584 112.825357) (xy 225.95411 112.794) (xy 226.578548 112.794) (xy 226.58434 112.85281) (xy 226.601495 112.909361)
(xy 226.629352 112.961478) (xy 226.666841 113.007159) (xy 226.712522 113.044648) (xy 226.764639 113.072505) (xy 226.82119 113.08966)
(xy 226.88 113.095452) (xy 227.1 113.094) (xy 227.175 113.019) (xy 227.175 112.524) (xy 227.225 112.524)
(xy 227.225 113.019) (xy 227.3 113.094) (xy 227.52 113.095452) (xy 227.57881 113.08966) (xy 227.635361 113.072505)
(xy 227.687478 113.044648) (xy 227.733159 113.007159) (xy 227.770648 112.961478) (xy 227.798505 112.909361) (xy 227.81566 112.85281)
(xy 227.821452 112.794) (xy 227.82 112.599) (xy 227.745 112.524) (xy 227.225 112.524) (xy 227.175 112.524)
(xy 226.655 112.524) (xy 226.58 112.599) (xy 226.578548 112.794) (xy 225.95411 112.794) (xy 225.861844 112.628431)
(xy 225.715794 112.456698) (xy 225.539047 112.316757) (xy 225.338395 112.213987) (xy 225.121549 112.152337) (xy 224.942 112.209271)
(xy 224.892 112.209271) (xy 224.712451 112.152337) (xy 224.495605 112.213987) (xy 224.294953 112.316757) (xy 224.118206 112.456698)
(xy 223.972156 112.628431) (xy 223.862416 112.825357) (xy 223.793203 113.039909) (xy 223.785338 113.079451) (xy 204.525881 113.079451)
(xy 204.6 112.706832) (xy 204.6 112.293168) (xy 204.519298 111.887453) (xy 204.360996 111.505277) (xy 204.131177 111.161328)
(xy 203.838672 110.868823) (xy 203.494723 110.639004) (xy 203.112547 110.480702) (xy 203.100648 110.478335) (xy 205.8346 110.478335)
(xy 205.8346 110.704865) (xy 205.878794 110.927043) (xy 205.965484 111.136329) (xy 206.091337 111.324682) (xy 206.251518 111.484863)
(xy 206.439871 111.610716) (xy 206.649157 111.697406) (xy 206.871335 111.7416) (xy 207.097865 111.7416) (xy 207.320043 111.697406)
(xy 207.529329 111.610716) (xy 207.717682 111.484863) (xy 207.877863 111.324682) (xy 208.003716 111.136329) (xy 208.090406 110.927043)
(xy 208.116442 110.796149) (xy 208.392937 110.796149) (xy 208.454587 111.012995) (xy 208.557357 111.213647) (xy 208.697298 111.390394)
(xy 208.869031 111.536444) (xy 209.065957 111.646184) (xy 209.280509 111.715397) (xy 209.320051 111.723262) (xy 209.4996 111.666309)
(xy 209.4996 110.6166) (xy 209.5496 110.6166) (xy 209.5496 111.666309) (xy 209.729149 111.723262) (xy 209.768691 111.715397)
(xy 209.983243 111.646184) (xy 210.180169 111.536444) (xy 210.351902 111.390394) (xy 210.491843 111.213647) (xy 210.594613 111.012995)
(xy 210.656263 110.796149) (xy 210.599329 110.6166) (xy 209.5496 110.6166) (xy 209.4996 110.6166) (xy 208.449871 110.6166)
(xy 208.392937 110.796149) (xy 208.116442 110.796149) (xy 208.1346 110.704865) (xy 208.1346 110.478335) (xy 208.116443 110.387051)
(xy 208.392937 110.387051) (xy 208.449871 110.5666) (xy 209.4996 110.5666) (xy 209.4996 109.516891) (xy 209.5496 109.516891)
(xy 209.5496 110.5666) (xy 210.599329 110.5666) (xy 210.656263 110.387051) (xy 210.594613 110.170205) (xy 210.491843 109.969553)
(xy 210.351902 109.792806) (xy 210.180169 109.646756) (xy 209.983243 109.537016) (xy 209.768691 109.467803) (xy 209.729149 109.459938)
(xy 209.5496 109.516891) (xy 209.4996 109.516891) (xy 209.320051 109.459938) (xy 209.280509 109.467803) (xy 209.065957 109.537016)
(xy 208.869031 109.646756) (xy 208.697298 109.792806) (xy 208.557357 109.969553) (xy 208.454587 110.170205) (xy 208.392937 110.387051)
(xy 208.116443 110.387051) (xy 208.090406 110.256157) (xy 208.003716 110.046871) (xy 207.877863 109.858518) (xy 207.717682 109.698337)
(xy 207.529329 109.572484) (xy 207.320043 109.485794) (xy 207.097865 109.4416) (xy 206.871335 109.4416) (xy 206.649157 109.485794)
(xy 206.439871 109.572484) (xy 206.251518 109.698337) (xy 206.091337 109.858518) (xy 205.965484 110.046871) (xy 205.878794 110.256157)
(xy 205.8346 110.478335) (xy 203.100648 110.478335) (xy 202.706832 110.4) (xy 202.293168 110.4) (xy 201.887453 110.480702)
(xy 201.505277 110.639004) (xy 201.161328 110.868823) (xy 200.868823 111.161328) (xy 200.639004 111.505277) (xy 200.480702 111.887453)
(xy 200.403763 112.274252) (xy 200.375005 112.00064) (xy 200.375 111.999267) (xy 200.375 107.938335) (xy 205.8346 107.938335)
(xy 205.8346 108.164865) (xy 205.878794 108.387043) (xy 205.965484 108.596329) (xy 206.091337 108.784682) (xy 206.251518 108.944863)
(xy 206.439871 109.070716) (xy 206.649157 109.157406) (xy 206.871335 109.2016) (xy 207.097865 109.2016) (xy 207.320043 109.157406)
(xy 207.529329 109.070716) (xy 207.717682 108.944863) (xy 207.877863 108.784682) (xy 208.003716 108.596329) (xy 208.090406 108.387043)
(xy 208.116442 108.256149) (xy 208.392937 108.256149) (xy 208.454587 108.472995) (xy 208.557357 108.673647) (xy 208.697298 108.850394)
(xy 208.869031 108.996444) (xy 209.065957 109.106184) (xy 209.280509 109.175397) (xy 209.320051 109.183262) (xy 209.4996 109.126309)
(xy 209.4996 108.0766) (xy 209.5496 108.0766) (xy 209.5496 109.126309) (xy 209.729149 109.183262) (xy 209.768691 109.175397)
(xy 209.983243 109.106184) (xy 210.180169 108.996444) (xy 210.351902 108.850394) (xy 210.491843 108.673647) (xy 210.594613 108.472995)
(xy 210.656263 108.256149) (xy 210.599329 108.0766) (xy 209.5496 108.0766) (xy 209.4996 108.0766) (xy 208.449871 108.0766)
(xy 208.392937 108.256149) (xy 208.116442 108.256149) (xy 208.1346 108.164865) (xy 208.1346 107.938335) (xy 208.116443 107.847051)
(xy 208.392937 107.847051) (xy 208.449871 108.0266) (xy 209.4996 108.0266) (xy 209.4996 106.976891) (xy 209.5496 106.976891)
(xy 209.5496 108.0266) (xy 210.599329 108.0266) (xy 210.656263 107.847051) (xy 210.594613 107.630205) (xy 210.491843 107.429553)
(xy 210.351902 107.252806) (xy 210.180169 107.106756) (xy 209.983243 106.997016) (xy 209.768691 106.927803) (xy 209.729149 106.919938)
(xy 209.5496 106.976891) (xy 209.4996 106.976891) (xy 209.320051 106.919938) (xy 209.280509 106.927803) (xy 209.065957 106.997016)
(xy 208.869031 107.106756) (xy 208.697298 107.252806) (xy 208.557357 107.429553) (xy 208.454587 107.630205) (xy 208.392937 107.847051)
(xy 208.116443 107.847051) (xy 208.090406 107.716157) (xy 208.003716 107.506871) (xy 207.877863 107.318518) (xy 207.717682 107.158337)
(xy 207.529329 107.032484) (xy 207.320043 106.945794) (xy 207.097865 106.9016) (xy 206.871335 106.9016) (xy 206.649157 106.945794)
(xy 206.439871 107.032484) (xy 206.251518 107.158337) (xy 206.091337 107.318518) (xy 205.965484 107.506871) (xy 205.878794 107.716157)
(xy 205.8346 107.938335) (xy 200.375 107.938335) (xy 200.375 104.673958) (xy 200.407522 104.700648) (xy 200.459639 104.728505)
(xy 200.51619 104.74566) (xy 200.575 104.751452) (xy 200.9625 104.75) (xy 201.0375 104.675) (xy 201.0375 103.775)
(xy 201.0875 103.775) (xy 201.0875 104.675) (xy 201.1625 104.75) (xy 201.55 104.751452) (xy 201.60881 104.74566)
(xy 201.665361 104.728505) (xy 201.717478 104.700648) (xy 201.763159 104.663159) (xy 201.800648 104.617478) (xy 201.828505 104.565361)
(xy 201.84566 104.50881) (xy 201.851452 104.45) (xy 201.85 103.85) (xy 201.775 103.775) (xy 201.0875 103.775)
(xy 201.0375 103.775) (xy 201.0175 103.775) (xy 201.0175 103.725) (xy 201.0375 103.725) (xy 201.0375 102.825)
(xy 201.0875 102.825) (xy 201.0875 103.725) (xy 201.775 103.725) (xy 201.85 103.65) (xy 201.850862 103.29375)
(xy 202.148549 103.29375) (xy 202.148549 104.20625) (xy 202.159025 104.312613) (xy 202.19005 104.414889) (xy 202.240432 104.509147)
(xy 202.308235 104.591765) (xy 202.390853 104.659568) (xy 202.485111 104.70995) (xy 202.587387 104.740975) (xy 202.69375 104.751451)
(xy 203.18125 104.751451) (xy 203.287613 104.740975) (xy 203.389889 104.70995) (xy 203.484147 104.659568) (xy 203.566765 104.591765)
(xy 203.634568 104.509147) (xy 203.68495 104.414889) (xy 203.715975 104.312613) (xy 203.726451 104.20625) (xy 203.726451 104.125)
(xy 203.859671 104.125) (xy 203.878549 104.143878) (xy 203.878549 104.3825) (xy 203.887175 104.470086) (xy 203.912723 104.554306)
(xy 203.954211 104.631924) (xy 204.010044 104.699956) (xy 204.078076 104.755789) (xy 204.155694 104.797277) (xy 204.239914 104.822825)
(xy 204.3275 104.831451) (xy 204.6725 104.831451) (xy 204.760086 104.822825) (xy 204.844306 104.797277) (xy 204.921924 104.755789)
(xy 204.989956 104.699956) (xy 205.045789 104.631924) (xy 205.087277 104.554306) (xy 205.112825 104.470086) (xy 205.121451 104.3825)
(xy 205.121451 104.0875) (xy 205.112825 103.999914) (xy 205.087277 103.915694) (xy 205.045789 103.838076) (xy 204.989956 103.770044)
(xy 204.965533 103.75) (xy 204.989956 103.729956) (xy 204.992958 103.726298) (xy 205.021319 103.745249) (xy 205.116863 103.784824)
(xy 205.218292 103.805) (xy 205.321708 103.805) (xy 205.423137 103.784824) (xy 205.518681 103.745249) (xy 205.604668 103.687794)
(xy 205.677794 103.614668) (xy 205.735249 103.528681) (xy 205.774824 103.433137) (xy 205.795 103.331708) (xy 205.795 103.228292)
(xy 205.774824 103.126863) (xy 205.735249 103.031319) (xy 205.677794 102.945332) (xy 205.604668 102.872206) (xy 205.518681 102.814751)
(xy 205.423137 102.775176) (xy 205.321708 102.755) (xy 205.218292 102.755) (xy 205.116863 102.775176) (xy 205.021319 102.814751)
(xy 205.008859 102.823077) (xy 204.989956 102.800044) (xy 204.921924 102.744211) (xy 204.844306 102.702723) (xy 204.760086 102.677175)
(xy 204.6725 102.668549) (xy 204.3275 102.668549) (xy 204.239914 102.677175) (xy 204.155694 102.702723) (xy 204.078076 102.744211)
(xy 204.010044 102.800044) (xy 203.954211 102.868076) (xy 203.912723 102.945694) (xy 203.887175 103.029914) (xy 203.878549 103.1175)
(xy 203.878549 103.375) (xy 203.726451 103.375) (xy 203.726451 103.29375) (xy 203.715975 103.187387) (xy 203.68495 103.085111)
(xy 203.634568 102.990853) (xy 203.566765 102.908235) (xy 203.484147 102.840432) (xy 203.389889 102.79005) (xy 203.287613 102.759025)
(xy 203.18125 102.748549) (xy 202.69375 102.748549) (xy 202.587387 102.759025) (xy 202.485111 102.79005) (xy 202.390853 102.840432)
(xy 202.308235 102.908235) (xy 202.240432 102.990853) (xy 202.19005 103.085111) (xy 202.159025 103.187387) (xy 202.148549 103.29375)
(xy 201.850862 103.29375) (xy 201.851452 103.05) (xy 201.84566 102.99119) (xy 201.828505 102.934639) (xy 201.800648 102.882522)
(xy 201.763159 102.836841) (xy 201.717478 102.799352) (xy 201.665361 102.771495) (xy 201.60881 102.75434) (xy 201.55 102.748548)
(xy 201.1625 102.75) (xy 201.0875 102.825) (xy 201.0375 102.825) (xy 200.9625 102.75) (xy 200.575 102.748548)
(xy 200.51619 102.75434) (xy 200.459639 102.771495) (xy 200.407522 102.799352) (xy 200.375 102.826042) (xy 200.375 101.428581)
(xy 200.400288 101.479226) (xy 200.508426 101.618718) (xy 200.6417 101.734433) (xy 200.794988 101.821924) (xy 200.962399 101.877829)
(xy 201.1375 101.9) (xy 201.4875 101.9) (xy 201.4875 99.575) (xy 201.4375 99.525) (xy 201.4875 99.475)
(xy 201.4875 98.525) (xy 201.5375 98.525) (xy 201.5375 99.475) (xy 201.5875 99.525) (xy 201.5375 99.575)
(xy 201.5375 101.9) (xy 201.8875 101.9) (xy 202.062601 101.877829) (xy 202.230012 101.821924) (xy 202.3833 101.734433)
(xy 202.516574 101.618718) (xy 202.624712 101.479226) (xy 202.703559 101.321318) (xy 202.747166 101.165429) (xy 202.732534 101.131209)
(xy 202.741005 101.115361) (xy 202.75816 101.05881) (xy 202.76149 101.025002) (xy 202.7625 101.025002) (xy 202.7625 101.014743)
(xy 202.763952 101) (xy 202.76306 100.692705) (xy 203.55515 100.692705) (xy 203.627508 100.847704) (xy 203.804128 100.945542)
(xy 203.996441 101.007044) (xy 204.197057 101.029845) (xy 204.398268 101.01307) (xy 204.592339 100.957362) (xy 204.771812 100.864864)
(xy 204.797492 100.847704) (xy 204.86985 100.692705) (xy 204.2125 100.035355) (xy 203.55515 100.692705) (xy 202.76306 100.692705)
(xy 202.7625 100.5) (xy 202.6875 100.425) (xy 202.550465 100.425) (xy 202.516574 100.381282) (xy 202.509339 100.375)
(xy 202.6875 100.375) (xy 202.7625 100.3) (xy 202.763416 99.984557) (xy 203.182655 99.984557) (xy 203.19943 100.185768)
(xy 203.255138 100.379839) (xy 203.347636 100.559312) (xy 203.364796 100.584992) (xy 203.519795 100.65735) (xy 204.177145 100)
(xy 204.163003 99.985858) (xy 204.198358 99.950503) (xy 204.2125 99.964645) (xy 204.226643 99.950503) (xy 204.261998 99.985858)
(xy 204.247855 100) (xy 204.905205 100.65735) (xy 205.060204 100.584992) (xy 205.158042 100.408372) (xy 205.219544 100.216059)
(xy 205.242345 100.015443) (xy 205.22557 99.814232) (xy 205.169862 99.620161) (xy 205.077364 99.440688) (xy 205.060204 99.415008)
(xy 204.905208 99.342651) (xy 204.954763 99.293096) (xy 205.002861 99.278505) (xy 205.054978 99.250648) (xy 205.100659 99.213159)
(xy 205.138148 99.167478) (xy 205.166005 99.115361) (xy 205.18316 99.05881) (xy 205.188952 99) (xy 205.1875 98.9)
(xy 205.1125 98.825) (xy 204.2375 98.825) (xy 204.2375 98.845) (xy 204.1875 98.845) (xy 204.1875 98.825)
(xy 203.3125 98.825) (xy 203.2375 98.9) (xy 203.236048 99) (xy 203.24184 99.05881) (xy 203.258995 99.115361)
(xy 203.286852 99.167478) (xy 203.324341 99.213159) (xy 203.370022 99.250648) (xy 203.422139 99.278505) (xy 203.470237 99.293096)
(xy 203.519792 99.342651) (xy 203.364796 99.415008) (xy 203.266958 99.591628) (xy 203.205456 99.783941) (xy 203.182655 99.984557)
(xy 202.763416 99.984557) (xy 202.763952 99.8) (xy 202.75816 99.74119) (xy 202.741005 99.684639) (xy 202.713148 99.632522)
(xy 202.675659 99.586841) (xy 202.629978 99.549352) (xy 202.584418 99.525) (xy 202.629978 99.500648) (xy 202.675659 99.463159)
(xy 202.713148 99.417478) (xy 202.741005 99.365361) (xy 202.75816 99.30881) (xy 202.763952 99.25) (xy 202.7625 98.6)
(xy 202.6875 98.525) (xy 201.5375 98.525) (xy 201.4875 98.525) (xy 201.4675 98.525) (xy 201.4675 98.475)
(xy 201.4875 98.475) (xy 201.4875 97.525) (xy 201.4625 97.5) (xy 201.4875 97.475) (xy 201.4875 96.525)
(xy 201.5375 96.525) (xy 201.5375 97.475) (xy 201.5625 97.5) (xy 201.5375 97.525) (xy 201.5375 98.475)
(xy 202.6875 98.475) (xy 202.7625 98.4) (xy 202.763952 97.75) (xy 202.75816 97.69119) (xy 202.741005 97.634639)
(xy 202.713148 97.582522) (xy 202.675659 97.536841) (xy 202.630768 97.5) (xy 202.675659 97.463159) (xy 202.713148 97.417478)
(xy 202.741005 97.365361) (xy 202.75816 97.30881) (xy 202.763952 97.25) (xy 202.7625 96.6) (xy 202.6875 96.525)
(xy 201.5375 96.525) (xy 201.4875 96.525) (xy 201.4675 96.525) (xy 201.4675 96.475) (xy 201.4875 96.475)
(xy 201.4875 95.525) (xy 201.4375 95.475) (xy 201.4875 95.425) (xy 201.4875 93.1) (xy 201.5375 93.1)
(xy 201.5375 95.425) (xy 201.5875 95.475) (xy 201.5375 95.525) (xy 201.5375 96.475) (xy 202.6875 96.475)
(xy 202.7625 96.4) (xy 202.763952 95.75) (xy 202.75816 95.69119) (xy 202.741005 95.634639) (xy 202.713148 95.582522)
(xy 202.675659 95.536841) (xy 202.629978 95.499352) (xy 202.584418 95.475) (xy 202.629978 95.450648) (xy 202.675659 95.413159)
(xy 202.713148 95.367478) (xy 202.741005 95.315361) (xy 202.75816 95.25881) (xy 202.763952 95.2) (xy 202.763327 94.984557)
(xy 203.182655 94.984557) (xy 203.19943 95.185768) (xy 203.255138 95.379839) (xy 203.347636 95.559312) (xy 203.364796 95.584992)
(xy 203.519792 95.657349) (xy 203.474644 95.702497) (xy 203.441473 95.705764) (xy 203.385195 95.722836) (xy 203.333329 95.750559)
(xy 203.287868 95.787868) (xy 203.250559 95.833329) (xy 203.222836 95.885195) (xy 203.205764 95.941473) (xy 203.2 96)
(xy 203.2 96.5) (xy 203.205764 96.558527) (xy 203.222836 96.614805) (xy 203.23692 96.641155) (xy 203.236049 96.65)
(xy 203.236049 97.05) (xy 203.241841 97.10881) (xy 203.258996 97.16536) (xy 203.264149 97.175) (xy 203.258996 97.18464)
(xy 203.241841 97.24119) (xy 203.236049 97.3) (xy 203.236049 97.7) (xy 203.241841 97.75881) (xy 203.258996 97.81536)
(xy 203.264149 97.825) (xy 203.258996 97.83464) (xy 203.241841 97.89119) (xy 203.236049 97.95) (xy 203.236049 98.35)
(xy 203.241841 98.40881) (xy 203.258996 98.46536) (xy 203.264148 98.474999) (xy 203.258995 98.484639) (xy 203.24184 98.54119)
(xy 203.236048 98.6) (xy 203.2375 98.7) (xy 203.3125 98.775) (xy 204.1875 98.775) (xy 204.1875 98.755)
(xy 204.2375 98.755) (xy 204.2375 98.775) (xy 205.1125 98.775) (xy 205.1875 98.7) (xy 205.188952 98.6)
(xy 205.18316 98.54119) (xy 205.166005 98.484639) (xy 205.160852 98.474999) (xy 205.166004 98.46536) (xy 205.183159 98.40881)
(xy 205.188951 98.35) (xy 205.188951 97.95) (xy 205.184027 97.9) (xy 205.452916 97.9) (xy 205.476483 97.902321)
(xy 205.50005 97.9) (xy 205.500058 97.9) (xy 205.570579 97.893054) (xy 205.66106 97.865607) (xy 205.744447 97.821036)
(xy 205.817536 97.761053) (xy 205.832566 97.742739) (xy 206.095305 97.48) (xy 206.898548 97.48) (xy 206.90434 97.53881)
(xy 206.921495 97.595361) (xy 206.949352 97.647478) (xy 206.986841 97.693159) (xy 207.032522 97.730648) (xy 207.084639 97.758505)
(xy 207.14119 97.77566) (xy 207.2 97.781452) (xy 207.42 97.78) (xy 207.495 97.705) (xy 207.495 97.21)
(xy 206.975 97.21) (xy 206.9 97.285) (xy 206.898548 97.48) (xy 206.095305 97.48) (xy 206.204799 97.370507)
(xy 206.258198 97.359885) (xy 206.353742 97.32031) (xy 206.439729 97.262855) (xy 206.512855 97.189729) (xy 206.57031 97.103742)
(xy 206.609885 97.008198) (xy 206.630061 96.906769) (xy 206.630061 96.803353) (xy 206.629394 96.8) (xy 206.913802 96.8)
(xy 206.90434 96.83119) (xy 206.898548 96.89) (xy 206.9 97.085) (xy 206.975 97.16) (xy 207.495 97.16)
(xy 207.495 97.14) (xy 207.545 97.14) (xy 207.545 97.16) (xy 207.565 97.16) (xy 207.565 97.21)
(xy 207.545 97.21) (xy 207.545 97.705) (xy 207.62 97.78) (xy 207.84 97.781452) (xy 207.89881 97.77566)
(xy 207.955361 97.758505) (xy 208.007478 97.730648) (xy 208.024275 97.716863) (xy 208.018549 97.775) (xy 208.018549 98.425)
(xy 208.024341 98.48381) (xy 208.041496 98.54036) (xy 208.069353 98.592477) (xy 208.106842 98.638158) (xy 208.152523 98.675647)
(xy 208.20464 98.703504) (xy 208.26119 98.720659) (xy 208.32 98.726451) (xy 208.579346 98.726451) (xy 208.575 98.7483)
(xy 208.575 98.851716) (xy 208.595176 98.953145) (xy 208.634751 99.048689) (xy 208.692206 99.134676) (xy 208.765332 99.207802)
(xy 208.851319 99.265257) (xy 208.946863 99.304832) (xy 209.048292 99.325008) (xy 209.151708 99.325008) (xy 209.253137 99.304832)
(xy 209.348681 99.265257) (xy 209.434668 99.207802) (xy 209.507794 99.134676) (xy 209.565249 99.048689) (xy 209.604824 98.953145)
(xy 209.625 98.851716) (xy 209.625 98.7483) (xy 209.620654 98.726451) (xy 209.88 98.726451) (xy 209.93881 98.720659)
(xy 209.99536 98.703504) (xy 210.047477 98.675647) (xy 210.093158 98.638158) (xy 210.130647 98.592477) (xy 210.158504 98.54036)
(xy 210.175659 98.48381) (xy 210.181451 98.425) (xy 210.181451 97.775) (xy 210.718549 97.775) (xy 210.718549 98.425)
(xy 210.724341 98.48381) (xy 210.741496 98.54036) (xy 210.769353 98.592477) (xy 210.806842 98.638158) (xy 210.852523 98.675647)
(xy 210.90464 98.703504) (xy 210.96119 98.720659) (xy 211.02 98.726451) (xy 212.58 98.726451) (xy 212.63881 98.720659)
(xy 212.69536 98.703504) (xy 212.747477 98.675647) (xy 212.793158 98.638158) (xy 212.830647 98.592477) (xy 212.858504 98.54036)
(xy 212.875659 98.48381) (xy 212.881451 98.425) (xy 212.881451 97.775) (xy 212.875659 97.71619) (xy 212.858504 97.65964)
(xy 212.830647 97.607523) (xy 212.793158 97.561842) (xy 212.747477 97.524353) (xy 212.69536 97.496496) (xy 212.640983 97.48)
(xy 212.818548 97.48) (xy 212.82434 97.53881) (xy 212.841495 97.595361) (xy 212.869352 97.647478) (xy 212.906841 97.693159)
(xy 212.952522 97.730648) (xy 213.004639 97.758505) (xy 213.06119 97.77566) (xy 213.12 97.781452) (xy 213.34 97.78)
(xy 213.415 97.705) (xy 213.415 97.21) (xy 213.465 97.21) (xy 213.465 97.705) (xy 213.54 97.78)
(xy 213.76 97.781452) (xy 213.81881 97.77566) (xy 213.875361 97.758505) (xy 213.927478 97.730648) (xy 213.973159 97.693159)
(xy 214.010648 97.647478) (xy 214.038505 97.595361) (xy 214.05566 97.53881) (xy 214.061452 97.48) (xy 214.06 97.285)
(xy 213.985 97.21) (xy 213.465 97.21) (xy 213.415 97.21) (xy 212.895 97.21) (xy 212.82 97.285)
(xy 212.818548 97.48) (xy 212.640983 97.48) (xy 212.63881 97.479341) (xy 212.58 97.473549) (xy 211.02 97.473549)
(xy 210.96119 97.479341) (xy 210.90464 97.496496) (xy 210.852523 97.524353) (xy 210.806842 97.561842) (xy 210.769353 97.607523)
(xy 210.741496 97.65964) (xy 210.724341 97.71619) (xy 210.718549 97.775) (xy 210.181451 97.775) (xy 210.175659 97.71619)
(xy 210.158504 97.65964) (xy 210.139989 97.625001) (xy 210.158505 97.590361) (xy 210.17566 97.53381) (xy 210.181452 97.475)
(xy 210.18 97.25) (xy 210.105 97.175) (xy 209.125 97.175) (xy 209.125 97.195) (xy 209.075 97.195)
(xy 209.075 97.175) (xy 209.055 97.175) (xy 209.055 97.125) (xy 209.075 97.125) (xy 209.075 97.105)
(xy 209.125 97.105) (xy 209.125 97.125) (xy 210.105 97.125) (xy 210.18 97.05) (xy 210.181452 96.825)
(xy 210.17899 96.8) (xy 210.2 96.8) (xy 210.258527 96.794236) (xy 210.314805 96.777164) (xy 210.366671 96.749441)
(xy 210.407909 96.715598) (xy 210.422836 96.764805) (xy 210.450559 96.816671) (xy 210.487868 96.862132) (xy 210.533329 96.899441)
(xy 210.585195 96.927164) (xy 210.641473 96.944236) (xy 210.7 96.95) (xy 212.818995 96.95) (xy 212.82 97.085)
(xy 212.895 97.16) (xy 213.415 97.16) (xy 213.415 97.14) (xy 213.465 97.14) (xy 213.465 97.16)
(xy 213.985 97.16) (xy 214.06 97.085) (xy 214.061054 96.943469) (xy 214.114805 96.927164) (xy 214.166671 96.899441)
(xy 214.212132 96.862132) (xy 214.362132 96.712132) (xy 214.399441 96.666671) (xy 214.427164 96.614805) (xy 214.444236 96.558527)
(xy 214.45 96.5) (xy 214.45 95.8) (xy 214.444236 95.741473) (xy 214.427164 95.685195) (xy 214.399441 95.633329)
(xy 214.363252 95.589233) (xy 214.354824 95.546863) (xy 214.315249 95.451319) (xy 214.257794 95.365332) (xy 214.184668 95.292206)
(xy 214.098681 95.234751) (xy 214.003137 95.195176) (xy 213.901708 95.175) (xy 213.798292 95.175) (xy 213.696863 95.195176)
(xy 213.685217 95.2) (xy 213.214783 95.2) (xy 213.203137 95.195176) (xy 213.101708 95.175) (xy 212.998292 95.175)
(xy 212.896863 95.195176) (xy 212.885217 95.2) (xy 210.95 95.2) (xy 210.891473 95.205764) (xy 210.835195 95.222836)
(xy 210.783329 95.250559) (xy 210.737868 95.287868) (xy 210.523733 95.502003) (xy 210.512132 95.487868) (xy 210.312132 95.287868)
(xy 210.266671 95.250559) (xy 210.214805 95.222836) (xy 210.158527 95.205764) (xy 210.1 95.2) (xy 209.605448 95.2)
(xy 209.604824 95.196863) (xy 209.565249 95.101319) (xy 209.507794 95.015332) (xy 209.434668 94.942206) (xy 209.348681 94.884751)
(xy 209.253137 94.845176) (xy 209.151708 94.825) (xy 209.048292 94.825) (xy 208.946863 94.845176) (xy 208.851319 94.884751)
(xy 208.765332 94.942206) (xy 208.692206 95.015332) (xy 208.634751 95.101319) (xy 208.595176 95.196863) (xy 208.594552 95.2)
(xy 205.35 95.2) (xy 205.291473 95.205764) (xy 205.235195 95.222836) (xy 205.213703 95.234324) (xy 205.219544 95.216059)
(xy 205.242345 95.015443) (xy 205.22557 94.814232) (xy 205.169862 94.620161) (xy 205.077364 94.440688) (xy 205.060204 94.415008)
(xy 204.905205 94.34265) (xy 204.247855 95) (xy 204.261998 95.014143) (xy 204.226643 95.049498) (xy 204.2125 95.035355)
(xy 204.198358 95.049498) (xy 204.163003 95.014143) (xy 204.177145 95) (xy 203.519795 94.34265) (xy 203.364796 94.415008)
(xy 203.266958 94.591628) (xy 203.205456 94.783941) (xy 203.182655 94.984557) (xy 202.763327 94.984557) (xy 202.7625 94.7)
(xy 202.6875 94.625) (xy 202.509339 94.625) (xy 202.516574 94.618718) (xy 202.550465 94.575) (xy 202.6875 94.575)
(xy 202.7625 94.5) (xy 202.763059 94.307295) (xy 203.55515 94.307295) (xy 204.2125 94.964645) (xy 204.86985 94.307295)
(xy 204.797492 94.152296) (xy 204.620872 94.054458) (xy 204.428559 93.992956) (xy 204.227943 93.970155) (xy 204.026732 93.98693)
(xy 203.832661 94.042638) (xy 203.653188 94.135136) (xy 203.627508 94.152296) (xy 203.55515 94.307295) (xy 202.763059 94.307295)
(xy 202.763952 94) (xy 202.7625 93.985257) (xy 202.7625 93.974998) (xy 202.76149 93.974998) (xy 202.75816 93.94119)
(xy 202.741005 93.884639) (xy 202.732534 93.868791) (xy 202.747166 93.834571) (xy 202.703559 93.678682) (xy 202.624712 93.520774)
(xy 202.516574 93.381282) (xy 202.3833 93.265567) (xy 202.230012 93.178076) (xy 202.062601 93.122171) (xy 201.8875 93.1)
(xy 201.5375 93.1) (xy 201.4875 93.1) (xy 201.1375 93.1) (xy 200.962399 93.122171) (xy 200.794988 93.178076)
(xy 200.6417 93.265567) (xy 200.508426 93.381282) (xy 200.400288 93.520774) (xy 200.375 93.571419) (xy 200.375 92.173958)
(xy 200.407522 92.200648) (xy 200.459639 92.228505) (xy 200.51619 92.24566) (xy 200.575 92.251452) (xy 200.9625 92.25)
(xy 201.0375 92.175) (xy 201.0375 91.275) (xy 201.0875 91.275) (xy 201.0875 92.175) (xy 201.1625 92.25)
(xy 201.55 92.251452) (xy 201.60881 92.24566) (xy 201.665361 92.228505) (xy 201.717478 92.200648) (xy 201.763159 92.163159)
(xy 201.800648 92.117478) (xy 201.828505 92.065361) (xy 201.84566 92.00881) (xy 201.851452 91.95) (xy 201.85 91.35)
(xy 201.775 91.275) (xy 201.0875 91.275) (xy 201.0375 91.275) (xy 201.0175 91.275) (xy 201.0175 91.225)
(xy 201.0375 91.225) (xy 201.0375 90.325) (xy 201.0875 90.325) (xy 201.0875 91.225) (xy 201.775 91.225)
(xy 201.85 91.15) (xy 201.850862 90.79375) (xy 202.148549 90.79375) (xy 202.148549 91.70625) (xy 202.159025 91.812613)
(xy 202.19005 91.914889) (xy 202.240432 92.009147) (xy 202.308235 92.091765) (xy 202.390853 92.159568) (xy 202.485111 92.20995)
(xy 202.575964 92.23751) (xy 202.589369 92.281699) (xy 202.624191 92.346846) (xy 202.671052 92.403948) (xy 202.685366 92.415695)
(xy 202.821805 92.552134) (xy 202.833552 92.566448) (xy 202.883679 92.607586) (xy 202.890654 92.61331) (xy 202.909354 92.623305)
(xy 202.9558 92.648131) (xy 203.026487 92.669574) (xy 203.081581 92.675) (xy 203.081584 92.675) (xy 203.1 92.676814)
(xy 203.118416 92.675) (xy 203.669129 92.675) (xy 203.694211 92.721924) (xy 203.750044 92.789956) (xy 203.818076 92.845789)
(xy 203.895694 92.887277) (xy 203.979914 92.912825) (xy 204.0675 92.921451) (xy 204.3625 92.921451) (xy 204.450086 92.912825)
(xy 204.534306 92.887277) (xy 204.611924 92.845789) (xy 204.679956 92.789956) (xy 204.7 92.765533) (xy 204.720044 92.789956)
(xy 204.788076 92.845789) (xy 204.865694 92.887277) (xy 204.949914 92.912825) (xy 205.0375 92.921451) (xy 205.3325 92.921451)
(xy 205.420086 92.912825) (xy 205.504306 92.887277) (xy 205.581924 92.845789) (xy 205.649956 92.789956) (xy 205.705789 92.721924)
(xy 205.730871 92.675) (xy 205.781584 92.675) (xy 205.8 92.676814) (xy 205.818416 92.675) (xy 205.818419 92.675)
(xy 205.873513 92.669574) (xy 205.9442 92.648131) (xy 206.009347 92.613309) (xy 206.066448 92.566448) (xy 206.078195 92.552134)
(xy 206.352139 92.278191) (xy 206.366448 92.266448) (xy 206.413309 92.209347) (xy 206.441122 92.157313) (xy 206.44813 92.144202)
(xy 206.448131 92.1442) (xy 206.469574 92.073513) (xy 206.475 92.018419) (xy 206.475 92.018417) (xy 206.475104 92.017358)
(xy 206.507794 91.984668) (xy 206.565249 91.898681) (xy 206.604824 91.803137) (xy 206.625 91.701708) (xy 206.625 91.598292)
(xy 206.604824 91.496863) (xy 206.565249 91.401319) (xy 206.507794 91.315332) (xy 206.434668 91.242206) (xy 206.348681 91.184751)
(xy 206.253137 91.145176) (xy 206.151708 91.125) (xy 206.048292 91.125) (xy 205.946863 91.145176) (xy 205.851319 91.184751)
(xy 205.781451 91.231436) (xy 205.781451 91.1775) (xy 205.772825 91.089914) (xy 205.747277 91.005694) (xy 205.705789 90.928076)
(xy 205.683938 90.901451) (xy 206.25 90.901451) (xy 206.30881 90.895659) (xy 206.36536 90.878504) (xy 206.417477 90.850647)
(xy 206.463158 90.813158) (xy 206.500647 90.767477) (xy 206.528504 90.71536) (xy 206.545659 90.65881) (xy 206.551451 90.6)
(xy 207.448548 90.6) (xy 207.45434 90.65881) (xy 207.471495 90.715361) (xy 207.499352 90.767478) (xy 207.536841 90.813159)
(xy 207.582522 90.850648) (xy 207.634639 90.878505) (xy 207.69119 90.89566) (xy 207.75 90.901452) (xy 207.975 90.9)
(xy 208.05 90.825) (xy 208.05 90.1) (xy 208.1 90.1) (xy 208.1 90.825) (xy 208.175 90.9)
(xy 208.4 90.901452) (xy 208.45881 90.89566) (xy 208.515361 90.878505) (xy 208.567478 90.850648) (xy 208.613159 90.813159)
(xy 208.650648 90.767478) (xy 208.678505 90.715361) (xy 208.69566 90.65881) (xy 208.701452 90.6) (xy 208.7 90.175)
(xy 208.625 90.1) (xy 208.1 90.1) (xy 208.05 90.1) (xy 207.525 90.1) (xy 207.45 90.175)
(xy 207.448548 90.6) (xy 206.551451 90.6) (xy 206.551451 89.55) (xy 207.448548 89.55) (xy 207.45 89.975)
(xy 207.525 90.05) (xy 208.05 90.05) (xy 208.05 89.325) (xy 208.1 89.325) (xy 208.1 90.05)
(xy 208.625 90.05) (xy 208.7 89.975) (xy 208.701452 89.55) (xy 209.798549 89.55) (xy 209.798549 90.6)
(xy 209.804341 90.65881) (xy 209.821496 90.71536) (xy 209.849353 90.767477) (xy 209.886842 90.813158) (xy 209.932523 90.850647)
(xy 209.98464 90.878504) (xy 210.04119 90.895659) (xy 210.1 90.901451) (xy 210.75 90.901451) (xy 210.80881 90.895659)
(xy 210.86536 90.878504) (xy 210.917477 90.850647) (xy 210.963158 90.813158) (xy 211.000647 90.767477) (xy 211.028504 90.71536)
(xy 211.045659 90.65881) (xy 211.050897 90.605626) (xy 211.148292 90.625) (xy 211.251708 90.625) (xy 211.353137 90.604824)
(xy 211.364783 90.6) (xy 211.948548 90.6) (xy 211.95434 90.65881) (xy 211.971495 90.715361) (xy 211.999352 90.767478)
(xy 212.036841 90.813159) (xy 212.082522 90.850648) (xy 212.134639 90.878505) (xy 212.19119 90.89566) (xy 212.25 90.901452)
(xy 212.475 90.9) (xy 212.55 90.825) (xy 212.55 90.1) (xy 212.025 90.1) (xy 211.95 90.175)
(xy 211.948548 90.6) (xy 211.364783 90.6) (xy 211.448681 90.565249) (xy 211.534668 90.507794) (xy 211.607794 90.434668)
(xy 211.665249 90.348681) (xy 211.704824 90.253137) (xy 211.725 90.151708) (xy 211.725 90.048292) (xy 211.704824 89.946863)
(xy 211.665249 89.851319) (xy 211.607794 89.765332) (xy 211.534668 89.692206) (xy 211.448681 89.634751) (xy 211.353137 89.595176)
(xy 211.251708 89.575) (xy 211.148292 89.575) (xy 211.051451 89.594263) (xy 211.051451 89.55) (xy 211.948548 89.55)
(xy 211.95 89.975) (xy 212.025 90.05) (xy 212.55 90.05) (xy 212.55 89.325) (xy 212.6 89.325)
(xy 212.6 90.05) (xy 212.62 90.05) (xy 212.62 90.1) (xy 212.6 90.1) (xy 212.6 90.825)
(xy 212.675 90.9) (xy 212.9 90.901452) (xy 212.95881 90.89566) (xy 213.015361 90.878505) (xy 213.067478 90.850648)
(xy 213.113159 90.813159) (xy 213.150648 90.767478) (xy 213.178505 90.715361) (xy 213.19566 90.65881) (xy 213.201452 90.6)
(xy 213.200675 90.372513) (xy 213.242206 90.434668) (xy 213.315332 90.507794) (xy 213.401319 90.565249) (xy 213.496863 90.604824)
(xy 213.598292 90.625) (xy 213.701708 90.625) (xy 213.803137 90.604824) (xy 213.898681 90.565249) (xy 213.984668 90.507794)
(xy 214.057794 90.434668) (xy 214.115249 90.348681) (xy 214.154824 90.253137) (xy 214.175 90.151708) (xy 214.175 90.048292)
(xy 214.154824 89.946863) (xy 214.115249 89.851319) (xy 214.057794 89.765332) (xy 213.984668 89.692206) (xy 213.898681 89.634751)
(xy 213.803137 89.595176) (xy 213.701708 89.575) (xy 213.598292 89.575) (xy 213.496863 89.595176) (xy 213.401319 89.634751)
(xy 213.315332 89.692206) (xy 213.242206 89.765332) (xy 213.200503 89.827744) (xy 213.201452 89.55) (xy 214.298549 89.55)
(xy 214.298549 90.6) (xy 214.304341 90.65881) (xy 214.321496 90.71536) (xy 214.349353 90.767477) (xy 214.386842 90.813158)
(xy 214.391219 90.81675) (xy 214.375 90.898288) (xy 214.375 91.001704) (xy 214.395176 91.103133) (xy 214.434751 91.198677)
(xy 214.492206 91.284664) (xy 214.565332 91.35779) (xy 214.651319 91.415245) (xy 214.746863 91.45482) (xy 214.848292 91.474996)
(xy 214.951708 91.474996) (xy 215.053137 91.45482) (xy 215.148681 91.415245) (xy 215.234668 91.35779) (xy 215.307794 91.284664)
(xy 215.365249 91.198677) (xy 215.404824 91.103133) (xy 215.425 91.001704) (xy 215.425 90.898288) (xy 215.415711 90.851591)
(xy 215.417477 90.850647) (xy 215.463158 90.813158) (xy 215.500647 90.767477) (xy 215.528504 90.71536) (xy 215.545659 90.65881)
(xy 215.551451 90.6) (xy 216.448548 90.6) (xy 216.45434 90.65881) (xy 216.471495 90.715361) (xy 216.499352 90.767478)
(xy 216.536841 90.813159) (xy 216.582522 90.850648) (xy 216.634639 90.878505) (xy 216.69119 90.89566) (xy 216.75 90.901452)
(xy 216.975 90.9) (xy 217.05 90.825) (xy 217.05 90.1) (xy 217.1 90.1) (xy 217.1 90.825)
(xy 217.175 90.9) (xy 217.4 90.901452) (xy 217.45881 90.89566) (xy 217.515361 90.878505) (xy 217.567478 90.850648)
(xy 217.613159 90.813159) (xy 217.650648 90.767478) (xy 217.678505 90.715361) (xy 217.69566 90.65881) (xy 217.701452 90.6)
(xy 217.7 90.175) (xy 217.625 90.1) (xy 217.1 90.1) (xy 217.05 90.1) (xy 216.525 90.1)
(xy 216.45 90.175) (xy 216.448548 90.6) (xy 215.551451 90.6) (xy 215.551451 89.55) (xy 216.448548 89.55)
(xy 216.45 89.975) (xy 216.525 90.05) (xy 217.05 90.05) (xy 217.05 89.325) (xy 217.1 89.325)
(xy 217.1 90.05) (xy 217.625 90.05) (xy 217.7 89.975) (xy 217.701452 89.55) (xy 217.69566 89.49119)
(xy 217.678505 89.434639) (xy 217.650648 89.382522) (xy 217.613159 89.336841) (xy 217.567478 89.299352) (xy 217.515361 89.271495)
(xy 217.45881 89.25434) (xy 217.4 89.248548) (xy 217.175 89.25) (xy 217.1 89.325) (xy 217.05 89.325)
(xy 216.975 89.25) (xy 216.75 89.248548) (xy 216.69119 89.25434) (xy 216.634639 89.271495) (xy 216.582522 89.299352)
(xy 216.536841 89.336841) (xy 216.499352 89.382522) (xy 216.471495 89.434639) (xy 216.45434 89.49119) (xy 216.448548 89.55)
(xy 215.551451 89.55) (xy 215.545659 89.49119) (xy 215.528504 89.43464) (xy 215.500647 89.382523) (xy 215.463158 89.336842)
(xy 215.417477 89.299353) (xy 215.36536 89.271496) (xy 215.30881 89.254341) (xy 215.25 89.248549) (xy 214.6 89.248549)
(xy 214.54119 89.254341) (xy 214.48464 89.271496) (xy 214.432523 89.299353) (xy 214.386842 89.336842) (xy 214.349353 89.382523)
(xy 214.321496 89.43464) (xy 214.304341 89.49119) (xy 214.298549 89.55) (xy 213.201452 89.55) (xy 213.19566 89.49119)
(xy 213.178505 89.434639) (xy 213.150648 89.382522) (xy 213.113159 89.336841) (xy 213.067478 89.299352) (xy 213.015361 89.271495)
(xy 212.95881 89.25434) (xy 212.9 89.248548) (xy 212.675 89.25) (xy 212.6 89.325) (xy 212.55 89.325)
(xy 212.475 89.25) (xy 212.25 89.248548) (xy 212.19119 89.25434) (xy 212.134639 89.271495) (xy 212.082522 89.299352)
(xy 212.036841 89.336841) (xy 211.999352 89.382522) (xy 211.971495 89.434639) (xy 211.95434 89.49119) (xy 211.948548 89.55)
(xy 211.051451 89.55) (xy 211.045659 89.49119) (xy 211.028504 89.43464) (xy 211.000647 89.382523) (xy 210.963158 89.336842)
(xy 210.917477 89.299353) (xy 210.86536 89.271496) (xy 210.80881 89.254341) (xy 210.75 89.248549) (xy 210.1 89.248549)
(xy 210.04119 89.254341) (xy 209.98464 89.271496) (xy 209.932523 89.299353) (xy 209.886842 89.336842) (xy 209.849353 89.382523)
(xy 209.821496 89.43464) (xy 209.804341 89.49119) (xy 209.798549 89.55) (xy 208.701452 89.55) (xy 208.69566 89.49119)
(xy 208.678505 89.434639) (xy 208.650648 89.382522) (xy 208.613159 89.336841) (xy 208.567478 89.299352) (xy 208.515361 89.271495)
(xy 208.45881 89.25434) (xy 208.4 89.248548) (xy 208.175 89.25) (xy 208.1 89.325) (xy 208.05 89.325)
(xy 207.975 89.25) (xy 207.75 89.248548) (xy 207.69119 89.25434) (xy 207.634639 89.271495) (xy 207.582522 89.299352)
(xy 207.536841 89.336841) (xy 207.499352 89.382522) (xy 207.471495 89.434639) (xy 207.45434 89.49119) (xy 207.448548 89.55)
(xy 206.551451 89.55) (xy 206.545659 89.49119) (xy 206.528504 89.43464) (xy 206.500647 89.382523) (xy 206.463158 89.336842)
(xy 206.417477 89.299353) (xy 206.36536 89.271496) (xy 206.30881 89.254341) (xy 206.25 89.248549) (xy 205.6 89.248549)
(xy 205.54119 89.254341) (xy 205.48464 89.271496) (xy 205.432523 89.299353) (xy 205.386842 89.336842) (xy 205.349353 89.382523)
(xy 205.321496 89.43464) (xy 205.304341 89.49119) (xy 205.298549 89.55) (xy 205.298549 89.730745) (xy 205.285954 89.737477)
(xy 205.240653 89.76169) (xy 205.225225 89.774352) (xy 205.183552 89.808552) (xy 205.171809 89.822861) (xy 204.932861 90.06181)
(xy 204.918553 90.073552) (xy 204.901617 90.094189) (xy 204.871691 90.130654) (xy 204.855656 90.160654) (xy 204.83687 90.1958)
(xy 204.816395 90.263298) (xy 204.815427 90.266488) (xy 204.808186 90.34) (xy 204.810001 90.358426) (xy 204.810001 90.792492)
(xy 204.788076 90.804211) (xy 204.720044 90.860044) (xy 204.7 90.884467) (xy 204.679956 90.860044) (xy 204.611924 90.804211)
(xy 204.534306 90.762723) (xy 204.450086 90.737175) (xy 204.3625 90.728549) (xy 204.0675 90.728549) (xy 203.979914 90.737175)
(xy 203.895694 90.762723) (xy 203.818076 90.804211) (xy 203.750044 90.860044) (xy 203.726451 90.888792) (xy 203.726451 90.79375)
(xy 203.715975 90.687387) (xy 203.68495 90.585111) (xy 203.634568 90.490853) (xy 203.566765 90.408235) (xy 203.484147 90.340432)
(xy 203.389889 90.29005) (xy 203.287613 90.259025) (xy 203.18125 90.248549) (xy 202.69375 90.248549) (xy 202.587387 90.259025)
(xy 202.485111 90.29005) (xy 202.390853 90.340432) (xy 202.308235 90.408235) (xy 202.240432 90.490853) (xy 202.19005 90.585111)
(xy 202.159025 90.687387) (xy 202.148549 90.79375) (xy 201.850862 90.79375) (xy 201.851452 90.55) (xy 201.84566 90.49119)
(xy 201.828505 90.434639) (xy 201.800648 90.382522) (xy 201.763159 90.336841) (xy 201.717478 90.299352) (xy 201.665361 90.271495)
(xy 201.60881 90.25434) (xy 201.55 90.248548) (xy 201.1625 90.25) (xy 201.0875 90.325) (xy 201.0375 90.325)
(xy 200.9625 90.25) (xy 200.575 90.248548) (xy 200.51619 90.25434) (xy 200.459639 90.271495) (xy 200.407522 90.299352)
(xy 200.375 90.326042) (xy 200.375 88.018338) (xy 200.403713 87.7255) (xy 200.480702 88.112547) (xy 200.639004 88.494723)
(xy 200.868823 88.838672) (xy 201.161328 89.131177) (xy 201.505277 89.360996) (xy 201.887453 89.519298) (xy 202.293168 89.6)
(xy 202.706832 89.6) (xy 203.112547 89.519298) (xy 203.494723 89.360996) (xy 203.838672 89.131177) (xy 204.131177 88.838672)
(xy 204.360996 88.494723) (xy 204.519298 88.112547) (xy 204.6 87.706832) (xy 204.6 87.293168) (xy 204.519298 86.887453)
(xy 204.360996 86.505277) (xy 204.131177 86.161328) (xy 203.838672 85.868823) (xy 203.494723 85.639004) (xy 203.112547 85.480702)
(xy 202.725748 85.403763) (xy 202.99936 85.375005) (xy 203.000733 85.375) (xy 205.301011 85.375)
)
)
(filled_polygon
(pts
(xy 232.41976 108.0266) (xy 232.43976 108.0266) (xy 232.43976 108.0766) (xy 232.41976 108.0766) (xy 232.41976 109.126309)
(xy 232.599309 109.183262) (xy 232.638851 109.175397) (xy 232.853403 109.106184) (xy 233.050329 108.996444) (xy 233.124989 108.932949)
(xy 233.12499 109.710251) (xy 233.050329 109.646756) (xy 232.853403 109.537016) (xy 232.638851 109.467803) (xy 232.599309 109.459938)
(xy 232.41976 109.516891) (xy 232.41976 110.5666) (xy 232.43976 110.5666) (xy 232.43976 110.6166) (xy 232.41976 110.6166)
(xy 232.41976 110.6366) (xy 232.36976 110.6366) (xy 232.36976 110.6166) (xy 232.34976 110.6166) (xy 232.34976 110.5666)
(xy 232.36976 110.5666) (xy 232.36976 109.516891) (xy 232.190211 109.459938) (xy 232.150669 109.467803) (xy 231.936117 109.537016)
(xy 231.739191 109.646756) (xy 231.625 109.74387) (xy 231.625 108.89933) (xy 231.739191 108.996444) (xy 231.936117 109.106184)
(xy 232.150669 109.175397) (xy 232.190211 109.183262) (xy 232.36976 109.126309) (xy 232.36976 108.0766) (xy 232.34976 108.0766)
(xy 232.34976 108.0266) (xy 232.36976 108.0266) (xy 232.36976 108.0066) (xy 232.41976 108.0066)
)
)
(filled_polygon
(pts
(xy 227.181083 105.001068) (xy 227.137522 105.024352) (xy 227.091841 105.061841) (xy 227.054352 105.107522) (xy 227.026495 105.159639)
(xy 227.00934 105.21619) (xy 227.003548 105.275) (xy 227.005 105.5625) (xy 227.08 105.6375) (xy 227.53 105.6375)
(xy 227.53 105.6175) (xy 227.58 105.6175) (xy 227.58 105.6375) (xy 227.6 105.6375) (xy 227.6 105.6875)
(xy 227.58 105.6875) (xy 227.58 105.7075) (xy 227.53 105.7075) (xy 227.53 105.6875) (xy 227.08 105.6875)
(xy 227.005 105.7625) (xy 227.004549 105.85172) (xy 226.883902 105.731073) (xy 226.883898 105.731068) (xy 226.836451 105.683621)
(xy 226.836451 105.4) (xy 226.828257 105.316804) (xy 226.803989 105.236804) (xy 226.764581 105.163077) (xy 226.711546 105.098454)
(xy 226.646923 105.045419) (xy 226.573196 105.006011) (xy 226.555215 105.000556)
)
)
(filled_polygon
(pts
(xy 240.424998 101.724998) (xy 240.402831 101.724998) (xy 240.416119 101.716119)
)
)
(filled_polygon
(pts
(xy 226.251871 95.580761) (xy 226.259594 95.659174) (xy 226.282467 95.734575) (xy 226.319609 95.804063) (xy 226.357071 95.849711)
(xy 226.389333 95.881973) (xy 226.28512 95.987207) (xy 225.936836 96.338905) (xy 225.899741 96.38456) (xy 225.872274 96.436562)
(xy 225.85548 96.492923) (xy 225.850004 96.551478) (xy 225.856056 96.609976) (xy 225.873405 96.666169) (xy 225.901383 96.717898)
(xy 225.938916 96.763174) (xy 226.344874 97.165152) (xy 226.319609 97.195937) (xy 226.282467 97.265425) (xy 226.259594 97.340826)
(xy 226.251871 97.419239) (xy 226.259594 97.497652) (xy 226.27575 97.550911) (xy 226.204306 97.512723) (xy 226.120086 97.487175)
(xy 226.0325 97.478549) (xy 225.7375 97.478549) (xy 225.649914 97.487175) (xy 225.565694 97.512723) (xy 225.488076 97.554211)
(xy 225.420044 97.610044) (xy 225.4 97.634467) (xy 225.379956 97.610044) (xy 225.311924 97.554211) (xy 225.234306 97.512723)
(xy 225.150086 97.487175) (xy 225.0625 97.478549) (xy 224.7675 97.478549) (xy 224.679914 97.487175) (xy 224.595694 97.512723)
(xy 224.518076 97.554211) (xy 224.450044 97.610044) (xy 224.394211 97.678076) (xy 224.352723 97.755694) (xy 224.327175 97.839914)
(xy 224.324212 97.87) (xy 223.676425 97.87) (xy 223.625661 97.875) (xy 221.893952 97.875) (xy 221.848681 97.844751)
(xy 221.799815 97.82451) (xy 224.049326 95.575) (xy 226.252438 95.575)
)
)
(filled_polygon
(pts
(xy 234.035 92.69533) (xy 234.035001 93.237482) (xy 234.020109 93.229522) (xy 233.969995 93.21432) (xy 233.954793 93.164205)
(xy 233.91765 93.094716) (xy 233.867664 93.033808) (xy 233.811069 92.987361) (xy 233.819585 92.959288) (xy 233.825011 92.904194)
(xy 233.825011 92.904192) (xy 233.826825 92.885776) (xy 233.825011 92.86736) (xy 233.825011 92.485341)
)
)
(filled_polygon
(pts
(xy 232.59434 88.31119) (xy 232.588548 88.37) (xy 232.58996 88.856389) (xy 232.587478 88.854352) (xy 232.535361 88.826495)
(xy 232.47881 88.80934) (xy 232.42 88.803548) (xy 232.2 88.805) (xy 232.125 88.88) (xy 232.125 89.375)
(xy 232.145 89.375) (xy 232.145 89.425) (xy 232.125 89.425) (xy 232.125 89.445) (xy 232.075 89.445)
(xy 232.075 89.425) (xy 231.555 89.425) (xy 231.48 89.5) (xy 231.478548 89.695) (xy 231.48434 89.75381)
(xy 231.501495 89.810361) (xy 231.529352 89.862478) (xy 231.566841 89.908159) (xy 231.591129 89.928092) (xy 231.554211 89.973076)
(xy 231.512723 90.050694) (xy 231.487175 90.134914) (xy 231.478549 90.2225) (xy 231.478549 90.37322) (xy 231.175011 90.069682)
(xy 231.175011 89.105) (xy 231.478548 89.105) (xy 231.48 89.3) (xy 231.555 89.375) (xy 232.075 89.375)
(xy 232.075 88.88) (xy 232 88.805) (xy 231.78 88.803548) (xy 231.72119 88.80934) (xy 231.664639 88.826495)
(xy 231.612522 88.854352) (xy 231.566841 88.891841) (xy 231.529352 88.937522) (xy 231.501495 88.989639) (xy 231.48434 89.04619)
(xy 231.478548 89.105) (xy 231.175011 89.105) (xy 231.175011 88.879596) (xy 231.799598 88.255011) (xy 232.611382 88.255011)
)
)
(filled_polygon
(pts
(xy 234.794341 88.31119) (xy 234.788549 88.37) (xy 234.788549 89.341122) (xy 234.59136 89.538311) (xy 234.59 89.07)
(xy 234.515 88.995) (xy 233.615 88.995) (xy 233.615 89.015) (xy 233.565 89.015) (xy 233.565 88.995)
(xy 233.545 88.995) (xy 233.545 88.945) (xy 233.565 88.945) (xy 233.565 88.925) (xy 233.615 88.925)
(xy 233.615 88.945) (xy 234.515 88.945) (xy 234.59 88.87) (xy 234.591452 88.37) (xy 234.58566 88.31119)
(xy 234.568618 88.255011) (xy 234.811383 88.255011)
)
)
)
(zone (net 2) (net_name GND) (layer B.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2)
(fill yes (arc_segments 16) (thermal_gap 0.2) (thermal_bridge_width 0.25))
(polygon
(pts
(xy 199.5 84.25) (xy 250.5 84.25) (xy 250.5 115.5) (xy 199.5 115.5)
)
)
(filled_polygon
(pts
(xy 232.727523 85.399353) (xy 232.681842 85.436842) (xy 232.644353 85.482523) (xy 232.616496 85.53464) (xy 232.599341 85.59119)
(xy 232.593549 85.65) (xy 232.593549 87.35) (xy 232.599341 87.40881) (xy 232.616496 87.46536) (xy 232.644353 87.517477)
(xy 232.681842 87.563158) (xy 232.727523 87.600647) (xy 232.77964 87.628504) (xy 232.83619 87.645659) (xy 232.895 87.651451)
(xy 234.595 87.651451) (xy 234.65381 87.645659) (xy 234.71036 87.628504) (xy 234.762477 87.600647) (xy 234.808158 87.563158)
(xy 234.845647 87.517477) (xy 234.873504 87.46536) (xy 234.890659 87.40881) (xy 234.896451 87.35) (xy 234.896451 85.65)
(xy 234.890659 85.59119) (xy 234.873504 85.53464) (xy 234.845647 85.482523) (xy 234.808158 85.436842) (xy 234.762477 85.399353)
(xy 234.716916 85.375) (xy 236.046052 85.375) (xy 235.949557 85.394194) (xy 235.740271 85.480884) (xy 235.551918 85.606737)
(xy 235.391737 85.766918) (xy 235.265884 85.955271) (xy 235.179194 86.164557) (xy 235.135 86.386735) (xy 235.135 86.613265)
(xy 235.179194 86.835443) (xy 235.265884 87.044729) (xy 235.391737 87.233082) (xy 235.551918 87.393263) (xy 235.740271 87.519116)
(xy 235.949557 87.605806) (xy 236.171735 87.65) (xy 236.398265 87.65) (xy 236.620443 87.605806) (xy 236.829729 87.519116)
(xy 237.018082 87.393263) (xy 237.178263 87.233082) (xy 237.304116 87.044729) (xy 237.390806 86.835443) (xy 237.435 86.613265)
(xy 237.435 86.386735) (xy 237.390806 86.164557) (xy 237.304116 85.955271) (xy 237.178263 85.766918) (xy 237.018082 85.606737)
(xy 236.829729 85.480884) (xy 236.620443 85.394194) (xy 236.523948 85.375) (xy 238.586052 85.375) (xy 238.489557 85.394194)
(xy 238.280271 85.480884) (xy 238.091918 85.606737) (xy 237.931737 85.766918) (xy 237.805884 85.955271) (xy 237.719194 86.164557)
(xy 237.675 86.386735) (xy 237.675 86.613265) (xy 237.719194 86.835443) (xy 237.805884 87.044729) (xy 237.931737 87.233082)
(xy 238.091918 87.393263) (xy 238.280271 87.519116) (xy 238.489557 87.605806) (xy 238.711735 87.65) (xy 238.938265 87.65)
(xy 239.160443 87.605806) (xy 239.369729 87.519116) (xy 239.558082 87.393263) (xy 239.718263 87.233082) (xy 239.844116 87.044729)
(xy 239.930806 86.835443) (xy 239.975 86.613265) (xy 239.975 86.386735) (xy 239.930806 86.164557) (xy 239.844116 85.955271)
(xy 239.718263 85.766918) (xy 239.558082 85.606737) (xy 239.369729 85.480884) (xy 239.160443 85.394194) (xy 239.063948 85.375)
(xy 241.126052 85.375) (xy 241.029557 85.394194) (xy 240.820271 85.480884) (xy 240.631918 85.606737) (xy 240.471737 85.766918)
(xy 240.345884 85.955271) (xy 240.259194 86.164557) (xy 240.215 86.386735) (xy 240.215 86.613265) (xy 240.259194 86.835443)
(xy 240.345884 87.044729) (xy 240.471737 87.233082) (xy 240.631918 87.393263) (xy 240.820271 87.519116) (xy 241.029557 87.605806)
(xy 241.251735 87.65) (xy 241.478265 87.65) (xy 241.700443 87.605806) (xy 241.909729 87.519116) (xy 242.098082 87.393263)
(xy 242.258263 87.233082) (xy 242.384116 87.044729) (xy 242.470806 86.835443) (xy 242.496842 86.704549) (xy 242.773337 86.704549)
(xy 242.834987 86.921395) (xy 242.937757 87.122047) (xy 243.077698 87.298794) (xy 243.249431 87.444844) (xy 243.446357 87.554584)
(xy 243.660909 87.623797) (xy 243.700451 87.631662) (xy 243.88 87.574709) (xy 243.88 86.525) (xy 243.93 86.525)
(xy 243.93 87.574709) (xy 244.109549 87.631662) (xy 244.149091 87.623797) (xy 244.363643 87.554584) (xy 244.560569 87.444844)
(xy 244.732302 87.298794) (xy 244.872243 87.122047) (xy 244.975013 86.921395) (xy 245.036663 86.704549) (xy 244.979729 86.525)
(xy 243.93 86.525) (xy 243.88 86.525) (xy 242.830271 86.525) (xy 242.773337 86.704549) (xy 242.496842 86.704549)
(xy 242.515 86.613265) (xy 242.515 86.386735) (xy 242.470806 86.164557) (xy 242.384116 85.955271) (xy 242.258263 85.766918)
(xy 242.098082 85.606737) (xy 241.909729 85.480884) (xy 241.700443 85.394194) (xy 241.603948 85.375) (xy 243.666957 85.375)
(xy 243.660909 85.376203) (xy 243.446357 85.445416) (xy 243.249431 85.555156) (xy 243.077698 85.701206) (xy 242.937757 85.877953)
(xy 242.834987 86.078605) (xy 242.773337 86.295451) (xy 242.830271 86.475) (xy 243.88 86.475) (xy 243.88 86.455)
(xy 243.93 86.455) (xy 243.93 86.475) (xy 244.979729 86.475) (xy 245.036663 86.295451) (xy 244.975013 86.078605)
(xy 244.872243 85.877953) (xy 244.732302 85.701206) (xy 244.560569 85.555156) (xy 244.363643 85.445416) (xy 244.149091 85.376203)
(xy 244.143043 85.375) (xy 246.981662 85.375) (xy 247.2745 85.403713) (xy 246.887453 85.480702) (xy 246.505277 85.639004)
(xy 246.161328 85.868823) (xy 245.868823 86.161328) (xy 245.639004 86.505277) (xy 245.480702 86.887453) (xy 245.4 87.293168)
(xy 245.4 87.706832) (xy 245.480702 88.112547) (xy 245.639004 88.494723) (xy 245.868823 88.838672) (xy 246.161328 89.131177)
(xy 246.505277 89.360996) (xy 246.875477 89.514337) (xy 246.722531 89.59232) (xy 246.682085 89.619343) (xy 246.582738 89.797383)
(xy 247.4 90.614645) (xy 248.217262 89.797383) (xy 248.117915 89.619343) (xy 247.984624 89.544744) (xy 248.112547 89.519298)
(xy 248.494723 89.360996) (xy 248.838672 89.131177) (xy 249.131177 88.838672) (xy 249.360996 88.494723) (xy 249.519298 88.112547)
(xy 249.596237 87.725748) (xy 249.624995 87.99936) (xy 249.625 88.000733) (xy 249.625001 111.981652) (xy 249.596287 112.2745)
(xy 249.519298 111.887453) (xy 249.360996 111.505277) (xy 249.131177 111.161328) (xy 248.838672 110.868823) (xy 248.494723 110.639004)
(xy 248.112547 110.480702) (xy 247.706832 110.4) (xy 247.293168 110.4) (xy 246.887453 110.480702) (xy 246.505277 110.639004)
(xy 246.161328 110.868823) (xy 245.868823 111.161328) (xy 245.639004 111.505277) (xy 245.480702 111.887453) (xy 245.4 112.293168)
(xy 245.4 112.706832) (xy 245.480702 113.112547) (xy 245.639004 113.494723) (xy 245.868823 113.838672) (xy 246.161328 114.131177)
(xy 246.505277 114.360996) (xy 246.887453 114.519298) (xy 247.274252 114.596237) (xy 247.00064 114.624995) (xy 246.999267 114.625)
(xy 203.018337 114.625) (xy 202.7255 114.596287) (xy 203.112547 114.519298) (xy 203.494723 114.360996) (xy 203.838672 114.131177)
(xy 204.131177 113.838672) (xy 204.360996 113.494723) (xy 204.363553 113.488549) (xy 223.785338 113.488549) (xy 223.793203 113.528091)
(xy 223.862416 113.742643) (xy 223.972156 113.939569) (xy 224.118206 114.111302) (xy 224.294953 114.251243) (xy 224.495605 114.354013)
(xy 224.712451 114.415663) (xy 224.892 114.358729) (xy 224.892 113.309) (xy 224.942 113.309) (xy 224.942 114.358729)
(xy 225.121549 114.415663) (xy 225.338395 114.354013) (xy 225.539047 114.251243) (xy 225.715794 114.111302) (xy 225.861844 113.939569)
(xy 225.971584 113.742643) (xy 226.040797 113.528091) (xy 226.048662 113.488549) (xy 225.991709 113.309) (xy 224.942 113.309)
(xy 224.892 113.309) (xy 223.842291 113.309) (xy 223.785338 113.488549) (xy 204.363553 113.488549) (xy 204.519298 113.112547)
(xy 204.525881 113.079451) (xy 223.785338 113.079451) (xy 223.842291 113.259) (xy 224.892 113.259) (xy 224.892 112.209271)
(xy 224.942 112.209271) (xy 224.942 113.259) (xy 225.991709 113.259) (xy 226.048662 113.079451) (xy 226.040797 113.039909)
(xy 225.971584 112.825357) (xy 225.861844 112.628431) (xy 225.715794 112.456698) (xy 225.539047 112.316757) (xy 225.338395 112.213987)
(xy 225.121549 112.152337) (xy 224.942 112.209271) (xy 224.892 112.209271) (xy 224.712451 112.152337) (xy 224.495605 112.213987)
(xy 224.294953 112.316757) (xy 224.118206 112.456698) (xy 223.972156 112.628431) (xy 223.862416 112.825357) (xy 223.793203 113.039909)
(xy 223.785338 113.079451) (xy 204.525881 113.079451) (xy 204.6 112.706832) (xy 204.6 112.293168) (xy 204.519298 111.887453)
(xy 204.360996 111.505277) (xy 204.131177 111.161328) (xy 203.838672 110.868823) (xy 203.494723 110.639004) (xy 203.112547 110.480702)
(xy 203.100648 110.478335) (xy 205.8346 110.478335) (xy 205.8346 110.704865) (xy 205.878794 110.927043) (xy 205.965484 111.136329)
(xy 206.091337 111.324682) (xy 206.251518 111.484863) (xy 206.439871 111.610716) (xy 206.649157 111.697406) (xy 206.871335 111.7416)
(xy 207.097865 111.7416) (xy 207.320043 111.697406) (xy 207.529329 111.610716) (xy 207.717682 111.484863) (xy 207.877863 111.324682)
(xy 208.003716 111.136329) (xy 208.090406 110.927043) (xy 208.116442 110.796149) (xy 208.392937 110.796149) (xy 208.454587 111.012995)
(xy 208.557357 111.213647) (xy 208.697298 111.390394) (xy 208.869031 111.536444) (xy 209.065957 111.646184) (xy 209.280509 111.715397)
(xy 209.320051 111.723262) (xy 209.4996 111.666309) (xy 209.4996 110.6166) (xy 209.5496 110.6166) (xy 209.5496 111.666309)
(xy 209.729149 111.723262) (xy 209.768691 111.715397) (xy 209.983243 111.646184) (xy 210.180169 111.536444) (xy 210.351902 111.390394)
(xy 210.491843 111.213647) (xy 210.594613 111.012995) (xy 210.656263 110.796149) (xy 210.599329 110.6166) (xy 209.5496 110.6166)
(xy 209.4996 110.6166) (xy 208.449871 110.6166) (xy 208.392937 110.796149) (xy 208.116442 110.796149) (xy 208.1346 110.704865)
(xy 208.1346 110.478335) (xy 208.116443 110.387051) (xy 208.392937 110.387051) (xy 208.449871 110.5666) (xy 209.4996 110.5666)
(xy 209.4996 109.516891) (xy 209.5496 109.516891) (xy 209.5496 110.5666) (xy 210.599329 110.5666) (xy 210.627317 110.478335)
(xy 210.9146 110.478335) (xy 210.9146 110.704865) (xy 210.958794 110.927043) (xy 211.045484 111.136329) (xy 211.171337 111.324682)
(xy 211.331518 111.484863) (xy 211.519871 111.610716) (xy 211.729157 111.697406) (xy 211.951335 111.7416) (xy 212.177865 111.7416)
(xy 212.400043 111.697406) (xy 212.609329 111.610716) (xy 212.797682 111.484863) (xy 212.957863 111.324682) (xy 213.083716 111.136329)
(xy 213.170406 110.927043) (xy 213.2146 110.704865) (xy 213.2146 110.478335) (xy 213.170406 110.256157) (xy 213.083716 110.046871)
(xy 212.957863 109.858518) (xy 212.797682 109.698337) (xy 212.609329 109.572484) (xy 212.400043 109.485794) (xy 212.177865 109.4416)
(xy 211.951335 109.4416) (xy 211.729157 109.485794) (xy 211.519871 109.572484) (xy 211.331518 109.698337) (xy 211.171337 109.858518)
(xy 211.045484 110.046871) (xy 210.958794 110.256157) (xy 210.9146 110.478335) (xy 210.627317 110.478335) (xy 210.656263 110.387051)
(xy 210.594613 110.170205) (xy 210.491843 109.969553) (xy 210.351902 109.792806) (xy 210.180169 109.646756) (xy 209.983243 109.537016)
(xy 209.768691 109.467803) (xy 209.729149 109.459938) (xy 209.5496 109.516891) (xy 209.4996 109.516891) (xy 209.320051 109.459938)
(xy 209.280509 109.467803) (xy 209.065957 109.537016) (xy 208.869031 109.646756) (xy 208.697298 109.792806) (xy 208.557357 109.969553)
(xy 208.454587 110.170205) (xy 208.392937 110.387051) (xy 208.116443 110.387051) (xy 208.090406 110.256157) (xy 208.003716 110.046871)
(xy 207.877863 109.858518) (xy 207.717682 109.698337) (xy 207.529329 109.572484) (xy 207.320043 109.485794) (xy 207.097865 109.4416)
(xy 206.871335 109.4416) (xy 206.649157 109.485794) (xy 206.439871 109.572484) (xy 206.251518 109.698337) (xy 206.091337 109.858518)
(xy 205.965484 110.046871) (xy 205.878794 110.256157) (xy 205.8346 110.478335) (xy 203.100648 110.478335) (xy 202.706832 110.4)
(xy 202.293168 110.4) (xy 201.887453 110.480702) (xy 201.505277 110.639004) (xy 201.161328 110.868823) (xy 200.868823 111.161328)
(xy 200.639004 111.505277) (xy 200.480702 111.887453) (xy 200.403763 112.274252) (xy 200.375005 112.00064) (xy 200.375 111.999267)
(xy 200.375 107.938335) (xy 205.8346 107.938335) (xy 205.8346 108.164865) (xy 205.878794 108.387043) (xy 205.965484 108.596329)
(xy 206.091337 108.784682) (xy 206.251518 108.944863) (xy 206.439871 109.070716) (xy 206.649157 109.157406) (xy 206.871335 109.2016)
(xy 207.097865 109.2016) (xy 207.320043 109.157406) (xy 207.529329 109.070716) (xy 207.717682 108.944863) (xy 207.877863 108.784682)
(xy 208.003716 108.596329) (xy 208.090406 108.387043) (xy 208.116442 108.256149) (xy 208.392937 108.256149) (xy 208.454587 108.472995)
(xy 208.557357 108.673647) (xy 208.697298 108.850394) (xy 208.869031 108.996444) (xy 209.065957 109.106184) (xy 209.280509 109.175397)
(xy 209.320051 109.183262) (xy 209.4996 109.126309) (xy 209.4996 108.0766) (xy 209.5496 108.0766) (xy 209.5496 109.126309)
(xy 209.729149 109.183262) (xy 209.768691 109.175397) (xy 209.983243 109.106184) (xy 210.180169 108.996444) (xy 210.351902 108.850394)
(xy 210.491843 108.673647) (xy 210.594613 108.472995) (xy 210.656263 108.256149) (xy 210.599329 108.0766) (xy 209.5496 108.0766)
(xy 209.4996 108.0766) (xy 208.449871 108.0766) (xy 208.392937 108.256149) (xy 208.116442 108.256149) (xy 208.1346 108.164865)
(xy 208.1346 107.938335) (xy 208.116443 107.847051) (xy 208.392937 107.847051) (xy 208.449871 108.0266) (xy 209.4996 108.0266)
(xy 209.4996 106.976891) (xy 209.5496 106.976891) (xy 209.5496 108.0266) (xy 210.599329 108.0266) (xy 210.627317 107.938335)
(xy 210.9146 107.938335) (xy 210.9146 108.164865) (xy 210.958794 108.387043) (xy 211.045484 108.596329) (xy 211.171337 108.784682)
(xy 211.331518 108.944863) (xy 211.519871 109.070716) (xy 211.729157 109.157406) (xy 211.951335 109.2016) (xy 212.177865 109.2016)
(xy 212.400043 109.157406) (xy 212.609329 109.070716) (xy 212.797682 108.944863) (xy 212.957863 108.784682) (xy 213.083716 108.596329)
(xy 213.170406 108.387043) (xy 213.2146 108.164865) (xy 213.2146 107.938335) (xy 213.4546 107.938335) (xy 213.4546 108.164865)
(xy 213.498794 108.387043) (xy 213.585484 108.596329) (xy 213.711337 108.784682) (xy 213.871518 108.944863) (xy 214.059871 109.070716)
(xy 214.269157 109.157406) (xy 214.491335 109.2016) (xy 214.717865 109.2016) (xy 214.940043 109.157406) (xy 215.149329 109.070716)
(xy 215.337682 108.944863) (xy 215.475 108.807545) (xy 215.475 109.19087) (xy 215.109772 109.556099) (xy 214.940043 109.485794)
(xy 214.717865 109.4416) (xy 214.491335 109.4416) (xy 214.269157 109.485794) (xy 214.059871 109.572484) (xy 213.871518 109.698337)
(xy 213.711337 109.858518) (xy 213.585484 110.046871) (xy 213.498794 110.256157) (xy 213.4546 110.478335) (xy 213.4546 110.704865)
(xy 213.498794 110.927043) (xy 213.585484 111.136329) (xy 213.711337 111.324682) (xy 213.871518 111.484863) (xy 214.059871 111.610716)
(xy 214.269157 111.697406) (xy 214.491335 111.7416) (xy 214.717865 111.7416) (xy 214.940043 111.697406) (xy 215.149329 111.610716)
(xy 215.337682 111.484863) (xy 215.497863 111.324682) (xy 215.623716 111.136329) (xy 215.710406 110.927043) (xy 215.7546 110.704865)
(xy 215.7546 110.478335) (xy 215.710406 110.256157) (xy 215.640101 110.086428) (xy 216.10214 109.62439) (xy 216.116448 109.612648)
(xy 216.136423 109.588308) (xy 216.16331 109.555547) (xy 216.19813 109.490401) (xy 216.198131 109.4904) (xy 216.219574 109.419713)
(xy 216.225 109.364619) (xy 216.225 109.364616) (xy 216.226814 109.3462) (xy 216.225 109.327784) (xy 216.225 108.745266)
(xy 216.251337 108.784682) (xy 216.411518 108.944863) (xy 216.599871 109.070716) (xy 216.809157 109.157406) (xy 217.031335 109.2016)
(xy 217.257865 109.2016) (xy 217.480043 109.157406) (xy 217.689329 109.070716) (xy 217.877682 108.944863) (xy 218.015 108.807545)
(xy 218.015 109.19087) (xy 217.649772 109.556099) (xy 217.480043 109.485794) (xy 217.257865 109.4416) (xy 217.031335 109.4416)
(xy 216.809157 109.485794) (xy 216.599871 109.572484) (xy 216.411518 109.698337) (xy 216.251337 109.858518) (xy 216.125484 110.046871)
(xy 216.038794 110.256157) (xy 215.9946 110.478335) (xy 215.9946 110.704865) (xy 216.038794 110.927043) (xy 216.125484 111.136329)
(xy 216.251337 111.324682) (xy 216.411518 111.484863) (xy 216.599871 111.610716) (xy 216.809157 111.697406) (xy 217.031335 111.7416)
(xy 217.257865 111.7416) (xy 217.480043 111.697406) (xy 217.689329 111.610716) (xy 217.877682 111.484863) (xy 218.037863 111.324682)
(xy 218.163716 111.136329) (xy 218.250406 110.927043) (xy 218.2946 110.704865) (xy 218.2946 110.478335) (xy 218.250406 110.256157)
(xy 218.180101 110.086428) (xy 218.64214 109.62439) (xy 218.656448 109.612648) (xy 218.676423 109.588308) (xy 218.70331 109.555547)
(xy 218.73813 109.490401) (xy 218.738131 109.4904) (xy 218.759574 109.419713) (xy 218.765 109.364619) (xy 218.765 109.364616)
(xy 218.766814 109.3462) (xy 218.765 109.327784) (xy 218.765 109.193986) (xy 218.77579 109.197259) (xy 218.8346 109.203051)
(xy 220.384601 109.203051) (xy 220.384601 109.361269) (xy 220.189772 109.556099) (xy 220.020043 109.485794) (xy 219.797865 109.4416)
(xy 219.571335 109.4416) (xy 219.349157 109.485794) (xy 219.139871 109.572484) (xy 218.951518 109.698337) (xy 218.791337 109.858518)
(xy 218.665484 110.046871) (xy 218.578794 110.256157) (xy 218.5346 110.478335) (xy 218.5346 110.704865) (xy 218.578794 110.927043)
(xy 218.665484 111.136329) (xy 218.791337 111.324682) (xy 218.951518 111.484863) (xy 219.139871 111.610716) (xy 219.349157 111.697406)
(xy 219.571335 111.7416) (xy 219.797865 111.7416) (xy 220.020043 111.697406) (xy 220.229329 111.610716) (xy 220.417682 111.484863)
(xy 220.577863 111.324682) (xy 220.703716 111.136329) (xy 220.790406 110.927043) (xy 220.8346 110.704865) (xy 220.8346 110.478335)
(xy 220.790406 110.256157) (xy 220.720101 110.086428) (xy 220.912529 109.894) (xy 223.765549 109.894) (xy 223.765549 111.594)
(xy 223.771341 111.65281) (xy 223.788496 111.70936) (xy 223.816353 111.761477) (xy 223.853842 111.807158) (xy 223.899523 111.844647)
(xy 223.95164 111.872504) (xy 224.00819 111.889659) (xy 224.067 111.895451) (xy 225.767 111.895451) (xy 225.82581 111.889659)
(xy 225.88236 111.872504) (xy 225.934477 111.844647) (xy 225.980158 111.807158) (xy 226.017647 111.761477) (xy 226.045504 111.70936)
(xy 226.062659 111.65281) (xy 226.068451 111.594) (xy 226.068451 110.478335) (xy 228.70476 110.478335) (xy 228.70476 110.704865)
(xy 228.748954 110.927043) (xy 228.835644 111.136329) (xy 228.961497 111.324682) (xy 229.121678 111.484863) (xy 229.310031 111.610716)
(xy 229.519317 111.697406) (xy 229.741495 111.7416) (xy 229.968025 111.7416) (xy 230.190203 111.697406) (xy 230.399489 111.610716)
(xy 230.587842 111.484863) (xy 230.748023 111.324682) (xy 230.873876 111.136329) (xy 230.960566 110.927043) (xy 230.986602 110.796149)
(xy 231.263097 110.796149) (xy 231.324747 111.012995) (xy 231.427517 111.213647) (xy 231.567458 111.390394) (xy 231.739191 111.536444)
(xy 231.936117 111.646184) (xy 232.150669 111.715397) (xy 232.190211 111.723262) (xy 232.36976 111.666309) (xy 232.36976 110.6166)
(xy 232.41976 110.6166) (xy 232.41976 111.666309) (xy 232.599309 111.723262) (xy 232.638851 111.715397) (xy 232.853403 111.646184)
(xy 233.050329 111.536444) (xy 233.222062 111.390394) (xy 233.362003 111.213647) (xy 233.464773 111.012995) (xy 233.526423 110.796149)
(xy 233.469489 110.6166) (xy 232.41976 110.6166) (xy 232.36976 110.6166) (xy 231.320031 110.6166) (xy 231.263097 110.796149)
(xy 230.986602 110.796149) (xy 231.00476 110.704865) (xy 231.00476 110.478335) (xy 230.986603 110.387051) (xy 231.263097 110.387051)
(xy 231.320031 110.5666) (xy 232.36976 110.5666) (xy 232.36976 109.516891) (xy 232.41976 109.516891) (xy 232.41976 110.5666)
(xy 233.469489 110.5666) (xy 233.497477 110.478335) (xy 233.78476 110.478335) (xy 233.78476 110.704865) (xy 233.828954 110.927043)
(xy 233.915644 111.136329) (xy 234.041497 111.324682) (xy 234.201678 111.484863) (xy 234.390031 111.610716) (xy 234.599317 111.697406)
(xy 234.821495 111.7416) (xy 235.048025 111.7416) (xy 235.270203 111.697406) (xy 235.479489 111.610716) (xy 235.667842 111.484863)
(xy 235.828023 111.324682) (xy 235.953876 111.136329) (xy 236.040566 110.927043) (xy 236.08476 110.704865) (xy 236.08476 110.478335)
(xy 236.32476 110.478335) (xy 236.32476 110.704865) (xy 236.368954 110.927043) (xy 236.455644 111.136329) (xy 236.581497 111.324682)
(xy 236.741678 111.484863) (xy 236.930031 111.610716) (xy 237.139317 111.697406) (xy 237.361495 111.7416) (xy 237.588025 111.7416)
(xy 237.810203 111.697406) (xy 238.019489 111.610716) (xy 238.207842 111.484863) (xy 238.368023 111.324682) (xy 238.493876 111.136329)
(xy 238.580566 110.927043) (xy 238.62476 110.704865) (xy 238.62476 110.478335) (xy 238.86476 110.478335) (xy 238.86476 110.704865)
(xy 238.908954 110.927043) (xy 238.995644 111.136329) (xy 239.121497 111.324682) (xy 239.281678 111.484863) (xy 239.470031 111.610716)
(xy 239.679317 111.697406) (xy 239.901495 111.7416) (xy 240.128025 111.7416) (xy 240.350203 111.697406) (xy 240.559489 111.610716)
(xy 240.747842 111.484863) (xy 240.908023 111.324682) (xy 241.033876 111.136329) (xy 241.120566 110.927043) (xy 241.16476 110.704865)
(xy 241.16476 110.478335) (xy 241.40476 110.478335) (xy 241.40476 110.704865) (xy 241.448954 110.927043) (xy 241.535644 111.136329)
(xy 241.661497 111.324682) (xy 241.821678 111.484863) (xy 242.010031 111.610716) (xy 242.219317 111.697406) (xy 242.441495 111.7416)
(xy 242.668025 111.7416) (xy 242.890203 111.697406) (xy 243.099489 111.610716) (xy 243.287842 111.484863) (xy 243.448023 111.324682)
(xy 243.573876 111.136329) (xy 243.660566 110.927043) (xy 243.70476 110.704865) (xy 243.70476 110.478335) (xy 243.660566 110.256157)
(xy 243.573876 110.046871) (xy 243.448023 109.858518) (xy 243.287842 109.698337) (xy 243.099489 109.572484) (xy 242.890203 109.485794)
(xy 242.668025 109.4416) (xy 242.441495 109.4416) (xy 242.219317 109.485794) (xy 242.010031 109.572484) (xy 241.821678 109.698337)
(xy 241.661497 109.858518) (xy 241.535644 110.046871) (xy 241.448954 110.256157) (xy 241.40476 110.478335) (xy 241.16476 110.478335)
(xy 241.120566 110.256157) (xy 241.033876 110.046871) (xy 240.908023 109.858518) (xy 240.747842 109.698337) (xy 240.559489 109.572484)
(xy 240.350203 109.485794) (xy 240.128025 109.4416) (xy 239.901495 109.4416) (xy 239.679317 109.485794) (xy 239.470031 109.572484)
(xy 239.281678 109.698337) (xy 239.121497 109.858518) (xy 238.995644 110.046871) (xy 238.908954 110.256157) (xy 238.86476 110.478335)
(xy 238.62476 110.478335) (xy 238.580566 110.256157) (xy 238.493876 110.046871) (xy 238.368023 109.858518) (xy 238.207842 109.698337)
(xy 238.019489 109.572484) (xy 237.810203 109.485794) (xy 237.588025 109.4416) (xy 237.361495 109.4416) (xy 237.139317 109.485794)
(xy 236.930031 109.572484) (xy 236.741678 109.698337) (xy 236.581497 109.858518) (xy 236.455644 110.046871) (xy 236.368954 110.256157)
(xy 236.32476 110.478335) (xy 236.08476 110.478335) (xy 236.040566 110.256157) (xy 235.953876 110.046871) (xy 235.828023 109.858518)
(xy 235.667842 109.698337) (xy 235.479489 109.572484) (xy 235.270203 109.485794) (xy 235.048025 109.4416) (xy 234.821495 109.4416)
(xy 234.599317 109.485794) (xy 234.390031 109.572484) (xy 234.201678 109.698337) (xy 234.041497 109.858518) (xy 233.915644 110.046871)
(xy 233.828954 110.256157) (xy 233.78476 110.478335) (xy 233.497477 110.478335) (xy 233.526423 110.387051) (xy 233.464773 110.170205)
(xy 233.362003 109.969553) (xy 233.222062 109.792806) (xy 233.050329 109.646756) (xy 232.853403 109.537016) (xy 232.638851 109.467803)
(xy 232.599309 109.459938) (xy 232.41976 109.516891) (xy 232.36976 109.516891) (xy 232.190211 109.459938) (xy 232.150669 109.467803)
(xy 231.936117 109.537016) (xy 231.739191 109.646756) (xy 231.567458 109.792806) (xy 231.427517 109.969553) (xy 231.324747 110.170205)
(xy 231.263097 110.387051) (xy 230.986603 110.387051) (xy 230.960566 110.256157) (xy 230.873876 110.046871) (xy 230.748023 109.858518)
(xy 230.587842 109.698337) (xy 230.399489 109.572484) (xy 230.190203 109.485794) (xy 229.968025 109.4416) (xy 229.741495 109.4416)
(xy 229.519317 109.485794) (xy 229.310031 109.572484) (xy 229.121678 109.698337) (xy 228.961497 109.858518) (xy 228.835644 110.046871)
(xy 228.748954 110.256157) (xy 228.70476 110.478335) (xy 226.068451 110.478335) (xy 226.068451 109.894) (xy 226.062659 109.83519)
(xy 226.045504 109.77864) (xy 226.017647 109.726523) (xy 225.980158 109.680842) (xy 225.934477 109.643353) (xy 225.88236 109.615496)
(xy 225.82581 109.598341) (xy 225.767 109.592549) (xy 224.067 109.592549) (xy 224.00819 109.598341) (xy 223.95164 109.615496)
(xy 223.899523 109.643353) (xy 223.853842 109.680842) (xy 223.816353 109.726523) (xy 223.788496 109.77864) (xy 223.771341 109.83519)
(xy 223.765549 109.894) (xy 220.912529 109.894) (xy 221.011741 109.794789) (xy 221.026049 109.783047) (xy 221.07291 109.725946)
(xy 221.107732 109.660799) (xy 221.129175 109.590112) (xy 221.134601 109.535018) (xy 221.134601 109.535015) (xy 221.136415 109.516599)
(xy 221.134601 109.498183) (xy 221.134601 107.938335) (xy 228.70476 107.938335) (xy 228.70476 108.164865) (xy 228.748954 108.387043)
(xy 228.835644 108.596329) (xy 228.961497 108.784682) (xy 229.121678 108.944863) (xy 229.310031 109.070716) (xy 229.519317 109.157406)
(xy 229.741495 109.2016) (xy 229.968025 109.2016) (xy 230.190203 109.157406) (xy 230.399489 109.070716) (xy 230.587842 108.944863)
(xy 230.748023 108.784682) (xy 230.873876 108.596329) (xy 230.960566 108.387043) (xy 230.986602 108.256149) (xy 231.263097 108.256149)
(xy 231.324747 108.472995) (xy 231.427517 108.673647) (xy 231.567458 108.850394) (xy 231.739191 108.996444) (xy 231.936117 109.106184)
(xy 232.150669 109.175397) (xy 232.190211 109.183262) (xy 232.36976 109.126309) (xy 232.36976 108.0766) (xy 232.41976 108.0766)
(xy 232.41976 109.126309) (xy 232.599309 109.183262) (xy 232.638851 109.175397) (xy 232.853403 109.106184) (xy 233.050329 108.996444)
(xy 233.222062 108.850394) (xy 233.362003 108.673647) (xy 233.464773 108.472995) (xy 233.526423 108.256149) (xy 233.469489 108.0766)
(xy 232.41976 108.0766) (xy 232.36976 108.0766) (xy 231.320031 108.0766) (xy 231.263097 108.256149) (xy 230.986602 108.256149)
(xy 231.00476 108.164865) (xy 231.00476 107.938335) (xy 230.986603 107.847051) (xy 231.263097 107.847051) (xy 231.320031 108.0266)
(xy 232.36976 108.0266) (xy 232.36976 106.976891) (xy 232.41976 106.976891) (xy 232.41976 108.0266) (xy 233.469489 108.0266)
(xy 233.526423 107.847051) (xy 233.464773 107.630205) (xy 233.362003 107.429553) (xy 233.222062 107.252806) (xy 233.050329 107.106756)
(xy 232.853403 106.997016) (xy 232.638851 106.927803) (xy 232.599309 106.919938) (xy 232.41976 106.976891) (xy 232.36976 106.976891)
(xy 232.190211 106.919938) (xy 232.150669 106.927803) (xy 231.936117 106.997016) (xy 231.739191 107.106756) (xy 231.567458 107.252806)
(xy 231.427517 107.429553) (xy 231.324747 107.630205) (xy 231.263097 107.847051) (xy 230.986603 107.847051) (xy 230.960566 107.716157)
(xy 230.873876 107.506871) (xy 230.748023 107.318518) (xy 230.587842 107.158337) (xy 230.42 107.046189) (xy 230.42 106.622817)
(xy 230.672335 106.370482) (xy 230.750086 106.362825) (xy 230.834306 106.337277) (xy 230.911924 106.295789) (xy 230.956908 106.258871)
(xy 230.976841 106.283159) (xy 231.022522 106.320648) (xy 231.074639 106.348505) (xy 231.13119 106.36566) (xy 231.19 106.371452)
(xy 231.385 106.37) (xy 231.46 106.295) (xy 231.46 105.775) (xy 231.51 105.775) (xy 231.51 106.295)
(xy 231.585 106.37) (xy 231.78 106.371452) (xy 231.83881 106.36566) (xy 231.895361 106.348505) (xy 231.947478 106.320648)
(xy 231.993159 106.283159) (xy 232.030648 106.237478) (xy 232.058505 106.185361) (xy 232.07566 106.12881) (xy 232.081452 106.07)
(xy 232.08 105.85) (xy 232.005 105.775) (xy 231.51 105.775) (xy 231.46 105.775) (xy 231.44 105.775)
(xy 231.44 105.725) (xy 231.46 105.725) (xy 231.46 105.205) (xy 231.51 105.205) (xy 231.51 105.725)
(xy 232.005 105.725) (xy 232.08 105.65) (xy 232.081452 105.43) (xy 232.07566 105.37119) (xy 232.058505 105.314639)
(xy 232.030648 105.262522) (xy 231.993159 105.216841) (xy 231.947478 105.179352) (xy 231.895361 105.151495) (xy 231.83881 105.13434)
(xy 231.78 105.128548) (xy 231.585 105.13) (xy 231.51 105.205) (xy 231.46 105.205) (xy 231.385 105.13)
(xy 231.19 105.128548) (xy 231.13119 105.13434) (xy 231.074639 105.151495) (xy 231.022522 105.179352) (xy 230.976841 105.216841)
(xy 230.956908 105.241129) (xy 230.911924 105.204211) (xy 230.834306 105.162723) (xy 230.750086 105.137175) (xy 230.6625 105.128549)
(xy 230.3675 105.128549) (xy 230.279914 105.137175) (xy 230.195694 105.162723) (xy 230.118076 105.204211) (xy 230.050044 105.260044)
(xy 229.994211 105.328076) (xy 229.952723 105.405694) (xy 229.927175 105.489914) (xy 229.919518 105.567665) (xy 229.500196 105.986987)
(xy 229.47921 106.00421) (xy 229.410479 106.087958) (xy 229.359408 106.183507) (xy 229.327958 106.287182) (xy 229.32 106.367983)
(xy 229.32 106.367992) (xy 229.31734 106.395) (xy 229.32 106.422008) (xy 229.32 107.028355) (xy 229.310031 107.032484)
(xy 229.121678 107.158337) (xy 228.961497 107.318518) (xy 228.835644 107.506871) (xy 228.748954 107.716157) (xy 228.70476 107.938335)
(xy 221.134601 107.938335) (xy 221.134601 107.068016) (xy 221.136415 107.0496) (xy 221.133975 107.024824) (xy 221.129175 106.976088)
(xy 221.107732 106.905401) (xy 221.080615 106.854668) (xy 221.07291 106.840254) (xy 221.03779 106.797459) (xy 221.037787 106.797456)
(xy 221.026049 106.783153) (xy 221.011746 106.771415) (xy 220.438623 106.198292) (xy 220.885 106.198292) (xy 220.885 106.301708)
(xy 220.905176 106.403137) (xy 220.944751 106.498681) (xy 221.002206 106.584668) (xy 221.075332 106.657794) (xy 221.161319 106.715249)
(xy 221.256863 106.754824) (xy 221.358292 106.775) (xy 221.461708 106.775) (xy 221.563137 106.754824) (xy 221.658681 106.715249)
(xy 221.744668 106.657794) (xy 221.817794 106.584668) (xy 221.875249 106.498681) (xy 221.914824 106.403137) (xy 221.935 106.301708)
(xy 221.935 106.198292) (xy 221.914824 106.096863) (xy 221.875249 106.001319) (xy 221.817794 105.915332) (xy 221.744668 105.842206)
(xy 221.658681 105.784751) (xy 221.563137 105.745176) (xy 221.461708 105.725) (xy 221.358292 105.725) (xy 221.256863 105.745176)
(xy 221.161319 105.784751) (xy 221.075332 105.842206) (xy 221.002206 105.915332) (xy 220.944751 106.001319) (xy 220.905176 106.096863)
(xy 220.885 106.198292) (xy 220.438623 106.198292) (xy 219.495033 105.254704) (xy 219.495033 105.017462) (xy 219.527827 104.984668)
(xy 219.585282 104.898681) (xy 219.624857 104.803137) (xy 219.645033 104.701708) (xy 219.645033 104.598292) (xy 219.624857 104.496863)
(xy 219.585282 104.401319) (xy 219.527827 104.315332) (xy 219.454701 104.242206) (xy 219.368714 104.184751) (xy 219.27317 104.145176)
(xy 219.171741 104.125) (xy 219.068325 104.125) (xy 218.966896 104.145176) (xy 218.871352 104.184751) (xy 218.785365 104.242206)
(xy 218.712239 104.315332) (xy 218.654784 104.401319) (xy 218.615209 104.496863) (xy 218.595033 104.598292) (xy 218.595033 104.701708)
(xy 218.615209 104.803137) (xy 218.654784 104.898681) (xy 218.712239 104.984668) (xy 218.745034 105.017463) (xy 218.745033 105.124704)
(xy 218.145 104.524671) (xy 218.145 104.478292) (xy 218.124824 104.376863) (xy 218.085249 104.281319) (xy 218.027794 104.195332)
(xy 217.954668 104.122206) (xy 217.868681 104.064751) (xy 217.773137 104.025176) (xy 217.671708 104.005) (xy 217.568292 104.005)
(xy 217.466863 104.025176) (xy 217.371319 104.064751) (xy 217.285332 104.122206) (xy 217.212206 104.195332) (xy 217.154751 104.281319)
(xy 217.115176 104.376863) (xy 217.095 104.478292) (xy 217.095 104.581708) (xy 217.106451 104.639273) (xy 217.076863 104.645158)
(xy 216.981319 104.684733) (xy 216.895332 104.742188) (xy 216.822206 104.815314) (xy 216.764751 104.901301) (xy 216.725176 104.996845)
(xy 216.708949 105.078422) (xy 216.691708 105.074992) (xy 216.588292 105.074992) (xy 216.486863 105.095168) (xy 216.391319 105.134743)
(xy 216.305332 105.192198) (xy 216.232206 105.265324) (xy 216.174751 105.351311) (xy 216.135176 105.446855) (xy 216.115 105.548284)
(xy 216.115 105.594662) (xy 215.202461 106.507202) (xy 215.188152 106.518945) (xy 215.17641 106.533253) (xy 215.14129 106.576047)
(xy 215.12806 106.600799) (xy 215.106469 106.641193) (xy 215.085026 106.71188) (xy 215.080778 106.755012) (xy 215.077785 106.785393)
(xy 215.079599 106.803809) (xy 215.079599 107.003601) (xy 214.940043 106.945794) (xy 214.717865 106.9016) (xy 214.491335 106.9016)
(xy 214.269157 106.945794) (xy 214.059871 107.032484) (xy 213.871518 107.158337) (xy 213.711337 107.318518) (xy 213.585484 107.506871)
(xy 213.498794 107.716157) (xy 213.4546 107.938335) (xy 213.2146 107.938335) (xy 213.170406 107.716157) (xy 213.083716 107.506871)
(xy 212.957863 107.318518) (xy 212.797682 107.158337) (xy 212.609329 107.032484) (xy 212.400043 106.945794) (xy 212.177865 106.9016)
(xy 211.951335 106.9016) (xy 211.729157 106.945794) (xy 211.519871 107.032484) (xy 211.331518 107.158337) (xy 211.171337 107.318518)
(xy 211.045484 107.506871) (xy 210.958794 107.716157) (xy 210.9146 107.938335) (xy 210.627317 107.938335) (xy 210.656263 107.847051)
(xy 210.594613 107.630205) (xy 210.491843 107.429553) (xy 210.351902 107.252806) (xy 210.180169 107.106756) (xy 209.983243 106.997016)
(xy 209.768691 106.927803) (xy 209.729149 106.919938) (xy 209.5496 106.976891) (xy 209.4996 106.976891) (xy 209.320051 106.919938)
(xy 209.280509 106.927803) (xy 209.065957 106.997016) (xy 208.869031 107.106756) (xy 208.697298 107.252806) (xy 208.557357 107.429553)
(xy 208.454587 107.630205) (xy 208.392937 107.847051) (xy 208.116443 107.847051) (xy 208.090406 107.716157) (xy 208.003716 107.506871)
(xy 207.877863 107.318518) (xy 207.717682 107.158337) (xy 207.56 107.052978) (xy 207.56 106.732817) (xy 207.922335 106.370482)
(xy 208.000086 106.362825) (xy 208.084306 106.337277) (xy 208.161924 106.295789) (xy 208.206908 106.258871) (xy 208.226841 106.283159)
(xy 208.272522 106.320648) (xy 208.324639 106.348505) (xy 208.38119 106.36566) (xy 208.44 106.371452) (xy 208.635 106.37)
(xy 208.71 106.295) (xy 208.71 105.775) (xy 208.76 105.775) (xy 208.76 106.295) (xy 208.835 106.37)
(xy 209.03 106.371452) (xy 209.08881 106.36566) (xy 209.145361 106.348505) (xy 209.197478 106.320648) (xy 209.243159 106.283159)
(xy 209.280648 106.237478) (xy 209.308505 106.185361) (xy 209.32566 106.12881) (xy 209.331452 106.07) (xy 209.33 105.85)
(xy 209.255 105.775) (xy 208.76 105.775) (xy 208.71 105.775) (xy 208.69 105.775) (xy 208.69 105.725)
(xy 208.71 105.725) (xy 208.71 105.205) (xy 208.76 105.205) (xy 208.76 105.725) (xy 209.255 105.725)
(xy 209.33 105.65) (xy 209.331452 105.43) (xy 209.32566 105.37119) (xy 209.308505 105.314639) (xy 209.280648 105.262522)
(xy 209.243159 105.216841) (xy 209.197478 105.179352) (xy 209.145361 105.151495) (xy 209.08881 105.13434) (xy 209.03 105.128548)
(xy 208.835 105.13) (xy 208.76 105.205) (xy 208.71 105.205) (xy 208.635 105.13) (xy 208.44 105.128548)
(xy 208.38119 105.13434) (xy 208.324639 105.151495) (xy 208.272522 105.179352) (xy 208.226841 105.216841) (xy 208.206908 105.241129)
(xy 208.161924 105.204211) (xy 208.084306 105.162723) (xy 208.000086 105.137175) (xy 207.9125 105.128549) (xy 207.6175 105.128549)
(xy 207.529914 105.137175) (xy 207.445694 105.162723) (xy 207.368076 105.204211) (xy 207.300044 105.260044) (xy 207.244211 105.328076)
(xy 207.202723 105.405694) (xy 207.177175 105.489914) (xy 207.169518 105.567665) (xy 206.640196 106.096987) (xy 206.61921 106.11421)
(xy 206.550479 106.197958) (xy 206.499408 106.293507) (xy 206.467958 106.397182) (xy 206.46 106.477983) (xy 206.46 106.477992)
(xy 206.45734 106.505) (xy 206.46 106.532008) (xy 206.46 107.024146) (xy 206.439871 107.032484) (xy 206.251518 107.158337)
(xy 206.091337 107.318518) (xy 205.965484 107.506871) (xy 205.878794 107.716157) (xy 205.8346 107.938335) (xy 200.375 107.938335)
(xy 200.375 103.228292) (xy 204.745 103.228292) (xy 204.745 103.331708) (xy 204.765176 103.433137) (xy 204.804751 103.528681)
(xy 204.862206 103.614668) (xy 204.935332 103.687794) (xy 205.021319 103.745249) (xy 205.116863 103.784824) (xy 205.218292 103.805)
(xy 205.321708 103.805) (xy 205.423137 103.784824) (xy 205.518681 103.745249) (xy 205.604668 103.687794) (xy 205.677794 103.614668)
(xy 205.735249 103.528681) (xy 205.774824 103.433137) (xy 205.795 103.331708) (xy 205.795 103.228292) (xy 205.774824 103.126863)
(xy 205.735249 103.031319) (xy 205.677794 102.945332) (xy 205.604668 102.872206) (xy 205.518681 102.814751) (xy 205.423137 102.775176)
(xy 205.321708 102.755) (xy 205.218292 102.755) (xy 205.116863 102.775176) (xy 205.021319 102.814751) (xy 204.935332 102.872206)
(xy 204.862206 102.945332) (xy 204.804751 103.031319) (xy 204.765176 103.126863) (xy 204.745 103.228292) (xy 200.375 103.228292)
(xy 200.375 101.428581) (xy 200.400288 101.479226) (xy 200.508426 101.618718) (xy 200.6417 101.734433) (xy 200.794988 101.821924)
(xy 200.962399 101.877829) (xy 201.1375 101.9) (xy 201.4875 101.9) (xy 201.4875 101.025) (xy 201.5375 101.025)
(xy 201.5375 101.9) (xy 201.8875 101.9) (xy 202.062601 101.877829) (xy 202.230012 101.821924) (xy 202.3833 101.734433)
(xy 202.516574 101.618718) (xy 202.624712 101.479226) (xy 202.703559 101.321318) (xy 202.715594 101.278292) (xy 221.805 101.278292)
(xy 221.805 101.381708) (xy 221.825176 101.483137) (xy 221.864751 101.578681) (xy 221.922206 101.664668) (xy 221.995332 101.737794)
(xy 222.081319 101.795249) (xy 222.176863 101.834824) (xy 222.278292 101.855) (xy 222.381708 101.855) (xy 222.483137 101.834824)
(xy 222.578681 101.795249) (xy 222.664668 101.737794) (xy 222.737794 101.664668) (xy 222.795249 101.578681) (xy 222.834824 101.483137)
(xy 222.855 101.381708) (xy 222.855 101.278292) (xy 222.834824 101.176863) (xy 222.795249 101.081319) (xy 222.769299 101.042483)
(xy 222.805249 100.988681) (xy 222.844824 100.893137) (xy 222.865 100.791708) (xy 222.865 100.688292) (xy 222.844824 100.586863)
(xy 222.805249 100.491319) (xy 222.747794 100.405332) (xy 222.674668 100.332206) (xy 222.588681 100.274751) (xy 222.493137 100.235176)
(xy 222.391708 100.215) (xy 222.288292 100.215) (xy 222.186863 100.235176) (xy 222.091319 100.274751) (xy 222.005332 100.332206)
(xy 221.932206 100.405332) (xy 221.874751 100.491319) (xy 221.835176 100.586863) (xy 221.815 100.688292) (xy 221.815 100.791708)
(xy 221.835176 100.893137) (xy 221.874751 100.988681) (xy 221.900701 101.027517) (xy 221.864751 101.081319) (xy 221.825176 101.176863)
(xy 221.805 101.278292) (xy 202.715594 101.278292) (xy 202.747166 101.165429) (xy 202.687121 101.025) (xy 201.5375 101.025)
(xy 201.4875 101.025) (xy 201.4675 101.025) (xy 201.4675 100.975) (xy 201.4875 100.975) (xy 201.4875 100.1)
(xy 201.5375 100.1) (xy 201.5375 100.975) (xy 202.687121 100.975) (xy 202.747166 100.834571) (xy 202.707482 100.692705)
(xy 203.55515 100.692705) (xy 203.627508 100.847704) (xy 203.804128 100.945542) (xy 203.996441 101.007044) (xy 204.197057 101.029845)
(xy 204.398268 101.01307) (xy 204.592339 100.957362) (xy 204.771812 100.864864) (xy 204.797492 100.847704) (xy 204.86985 100.692705)
(xy 204.2125 100.035355) (xy 203.55515 100.692705) (xy 202.707482 100.692705) (xy 202.703559 100.678682) (xy 202.624712 100.520774)
(xy 202.516574 100.381282) (xy 202.3833 100.265567) (xy 202.230012 100.178076) (xy 202.062601 100.122171) (xy 201.8875 100.1)
(xy 201.5375 100.1) (xy 201.4875 100.1) (xy 201.1375 100.1) (xy 200.962399 100.122171) (xy 200.794988 100.178076)
(xy 200.6417 100.265567) (xy 200.508426 100.381282) (xy 200.400288 100.520774) (xy 200.375 100.571419) (xy 200.375 99.984557)
(xy 203.182655 99.984557) (xy 203.19943 100.185768) (xy 203.255138 100.379839) (xy 203.347636 100.559312) (xy 203.364796 100.584992)
(xy 203.519795 100.65735) (xy 204.177145 100) (xy 204.247855 100) (xy 204.905205 100.65735) (xy 205.060204 100.584992)
(xy 205.158042 100.408372) (xy 205.219544 100.216059) (xy 205.242345 100.015443) (xy 205.22557 99.814232) (xy 205.169862 99.620161)
(xy 205.077364 99.440688) (xy 205.060204 99.415008) (xy 204.905205 99.34265) (xy 204.247855 100) (xy 204.177145 100)
(xy 203.519795 99.34265) (xy 203.364796 99.415008) (xy 203.266958 99.591628) (xy 203.205456 99.783941) (xy 203.182655 99.984557)
(xy 200.375 99.984557) (xy 200.375 99.307295) (xy 203.55515 99.307295) (xy 204.2125 99.964645) (xy 204.86985 99.307295)
(xy 204.797492 99.152296) (xy 204.620872 99.054458) (xy 204.428559 98.992956) (xy 204.227943 98.970155) (xy 204.026732 98.98693)
(xy 203.832661 99.042638) (xy 203.653188 99.135136) (xy 203.627508 99.152296) (xy 203.55515 99.307295) (xy 200.375 99.307295)
(xy 200.375 98.7483) (xy 208.575 98.7483) (xy 208.575 98.851716) (xy 208.595176 98.953145) (xy 208.634751 99.048689)
(xy 208.692206 99.134676) (xy 208.765332 99.207802) (xy 208.851319 99.265257) (xy 208.946863 99.304832) (xy 209.048292 99.325008)
(xy 209.151708 99.325008) (xy 209.253137 99.304832) (xy 209.348681 99.265257) (xy 209.434668 99.207802) (xy 209.507794 99.134676)
(xy 209.565249 99.048689) (xy 209.604824 98.953145) (xy 209.625 98.851716) (xy 209.625 98.7483) (xy 209.604824 98.646871)
(xy 209.565249 98.551327) (xy 209.507794 98.46534) (xy 209.434668 98.392214) (xy 209.348681 98.334759) (xy 209.253137 98.295184)
(xy 209.151708 98.275008) (xy 209.048292 98.275008) (xy 208.946863 98.295184) (xy 208.851319 98.334759) (xy 208.765332 98.392214)
(xy 208.692206 98.46534) (xy 208.634751 98.551327) (xy 208.595176 98.646871) (xy 208.575 98.7483) (xy 200.375 98.7483)
(xy 200.375 96.393231) (xy 205.169939 96.393231) (xy 205.169939 96.496647) (xy 205.190115 96.598076) (xy 205.22969 96.69362)
(xy 205.287145 96.779607) (xy 205.360271 96.852733) (xy 205.446258 96.910188) (xy 205.541802 96.949763) (xy 205.590542 96.959458)
(xy 205.600237 97.008198) (xy 205.639812 97.103742) (xy 205.697267 97.189729) (xy 205.770393 97.262855) (xy 205.85638 97.32031)
(xy 205.951924 97.359885) (xy 206.053353 97.380061) (xy 206.156769 97.380061) (xy 206.258198 97.359885) (xy 206.353742 97.32031)
(xy 206.439729 97.262855) (xy 206.512855 97.189729) (xy 206.57031 97.103742) (xy 206.609885 97.008198) (xy 206.620507 96.954798)
(xy 208.350306 95.225) (xy 208.589579 95.225) (xy 208.575 95.298292) (xy 208.575 95.401708) (xy 208.595176 95.503137)
(xy 208.634751 95.598681) (xy 208.692206 95.684668) (xy 208.765332 95.757794) (xy 208.851319 95.815249) (xy 208.946863 95.854824)
(xy 209.048292 95.875) (xy 209.151708 95.875) (xy 209.253137 95.854824) (xy 209.348681 95.815249) (xy 209.434668 95.757794)
(xy 209.507794 95.684668) (xy 209.565249 95.598681) (xy 209.604824 95.503137) (xy 209.625 95.401708) (xy 209.625 95.298292)
(xy 209.610421 95.225) (xy 212.82486 95.225) (xy 212.801319 95.234751) (xy 212.715332 95.292206) (xy 212.642206 95.365332)
(xy 212.584751 95.451319) (xy 212.545176 95.546863) (xy 212.525 95.648292) (xy 212.525 95.751708) (xy 212.545176 95.853137)
(xy 212.584751 95.948681) (xy 212.642206 96.034668) (xy 212.715332 96.107794) (xy 212.801319 96.165249) (xy 212.896863 96.204824)
(xy 212.998292 96.225) (xy 213.101708 96.225) (xy 213.203137 96.204824) (xy 213.298681 96.165249) (xy 213.384668 96.107794)
(xy 213.45 96.042462) (xy 213.515332 96.107794) (xy 213.601319 96.165249) (xy 213.696863 96.204824) (xy 213.798292 96.225)
(xy 213.901708 96.225) (xy 214.003137 96.204824) (xy 214.098681 96.165249) (xy 214.184668 96.107794) (xy 214.257794 96.034668)
(xy 214.315249 95.948681) (xy 214.354824 95.853137) (xy 214.366937 95.792243) (xy 217.742433 99.167739) (xy 217.757463 99.186053)
(xy 217.830552 99.246036) (xy 217.913939 99.290607) (xy 218.00442 99.318054) (xy 218.043001 99.321854) (xy 218.098516 99.327322)
(xy 218.122091 99.325) (xy 221.306048 99.325) (xy 221.351319 99.355249) (xy 221.446863 99.394824) (xy 221.548292 99.415)
(xy 221.651708 99.415) (xy 221.753137 99.394824) (xy 221.848681 99.355249) (xy 221.934668 99.297794) (xy 222.007794 99.224668)
(xy 222.065249 99.138681) (xy 222.104824 99.043137) (xy 222.125 98.941708) (xy 222.125 98.838292) (xy 222.104824 98.736863)
(xy 222.065249 98.641319) (xy 222.03764 98.6) (xy 222.065249 98.558681) (xy 222.104824 98.463137) (xy 222.125 98.361708)
(xy 222.125 98.258292) (xy 222.104824 98.156863) (xy 222.065249 98.061319) (xy 222.007794 97.975332) (xy 221.934668 97.902206)
(xy 221.848681 97.844751) (xy 221.753137 97.805176) (xy 221.651708 97.785) (xy 221.548292 97.785) (xy 221.446863 97.805176)
(xy 221.351319 97.844751) (xy 221.306048 97.875) (xy 218.500306 97.875) (xy 214.557567 93.932261) (xy 214.542537 93.913947)
(xy 214.469448 93.853964) (xy 214.386061 93.809393) (xy 214.29558 93.781946) (xy 214.225059 93.775) (xy 214.225051 93.775)
(xy 214.201484 93.772679) (xy 214.177917 93.775) (xy 207.972083 93.775) (xy 207.948516 93.772679) (xy 207.924949 93.775)
(xy 207.924942 93.775) (xy 207.863409 93.781061) (xy 207.85442 93.781946) (xy 207.789274 93.801708) (xy 207.76394 93.809393)
(xy 207.680553 93.853964) (xy 207.607464 93.913947) (xy 207.592434 93.932261) (xy 205.595202 95.929493) (xy 205.541802 95.940115)
(xy 205.446258 95.97969) (xy 205.360271 96.037145) (xy 205.287145 96.110271) (xy 205.22969 96.196258) (xy 205.190115 96.291802)
(xy 205.169939 96.393231) (xy 200.375 96.393231) (xy 200.375 95.692705) (xy 203.55515 95.692705) (xy 203.627508 95.847704)
(xy 203.804128 95.945542) (xy 203.996441 96.007044) (xy 204.197057 96.029845) (xy 204.398268 96.01307) (xy 204.592339 95.957362)
(xy 204.771812 95.864864) (xy 204.797492 95.847704) (xy 204.86985 95.692705) (xy 204.2125 95.035355) (xy 203.55515 95.692705)
(xy 200.375 95.692705) (xy 200.375 94.984557) (xy 203.182655 94.984557) (xy 203.19943 95.185768) (xy 203.255138 95.379839)
(xy 203.347636 95.559312) (xy 203.364796 95.584992) (xy 203.519795 95.65735) (xy 204.177145 95) (xy 204.247855 95)
(xy 204.905205 95.65735) (xy 205.060204 95.584992) (xy 205.158042 95.408372) (xy 205.219544 95.216059) (xy 205.242345 95.015443)
(xy 205.22557 94.814232) (xy 205.169862 94.620161) (xy 205.077364 94.440688) (xy 205.060204 94.415008) (xy 204.905205 94.34265)
(xy 204.247855 95) (xy 204.177145 95) (xy 203.519795 94.34265) (xy 203.364796 94.415008) (xy 203.266958 94.591628)
(xy 203.205456 94.783941) (xy 203.182655 94.984557) (xy 200.375 94.984557) (xy 200.375 94.428581) (xy 200.400288 94.479226)
(xy 200.508426 94.618718) (xy 200.6417 94.734433) (xy 200.794988 94.821924) (xy 200.962399 94.877829) (xy 201.1375 94.9)
(xy 201.4875 94.9) (xy 201.4875 94.025) (xy 201.5375 94.025) (xy 201.5375 94.9) (xy 201.8875 94.9)
(xy 202.062601 94.877829) (xy 202.230012 94.821924) (xy 202.3833 94.734433) (xy 202.516574 94.618718) (xy 202.624712 94.479226)
(xy 202.703559 94.321318) (xy 202.707481 94.307295) (xy 203.55515 94.307295) (xy 204.2125 94.964645) (xy 204.86985 94.307295)
(xy 204.797492 94.152296) (xy 204.620872 94.054458) (xy 204.428559 93.992956) (xy 204.227943 93.970155) (xy 204.026732 93.98693)
(xy 203.832661 94.042638) (xy 203.653188 94.135136) (xy 203.627508 94.152296) (xy 203.55515 94.307295) (xy 202.707481 94.307295)
(xy 202.747166 94.165429) (xy 202.687121 94.025) (xy 201.5375 94.025) (xy 201.4875 94.025) (xy 201.4675 94.025)
(xy 201.4675 93.975) (xy 201.4875 93.975) (xy 201.4875 93.1) (xy 201.5375 93.1) (xy 201.5375 93.975)
(xy 202.687121 93.975) (xy 202.747166 93.834571) (xy 202.703559 93.678682) (xy 202.624712 93.520774) (xy 202.516574 93.381282)
(xy 202.3833 93.265567) (xy 202.230012 93.178076) (xy 202.062601 93.122171) (xy 201.8875 93.1) (xy 201.5375 93.1)
(xy 201.4875 93.1) (xy 201.1375 93.1) (xy 200.962399 93.122171) (xy 200.794988 93.178076) (xy 200.6417 93.265567)
(xy 200.508426 93.381282) (xy 200.400288 93.520774) (xy 200.375 93.571419) (xy 200.375 91.598292) (xy 205.575 91.598292)
(xy 205.575 91.701708) (xy 205.595176 91.803137) (xy 205.634751 91.898681) (xy 205.692206 91.984668) (xy 205.765332 92.057794)
(xy 205.851319 92.115249) (xy 205.946863 92.154824) (xy 206.048292 92.175) (xy 206.151708 92.175) (xy 206.253137 92.154824)
(xy 206.348681 92.115249) (xy 206.434668 92.057794) (xy 206.507794 91.984668) (xy 206.565249 91.898681) (xy 206.604824 91.803137)
(xy 206.625 91.701708) (xy 206.625 91.655329) (xy 207.382041 90.898288) (xy 214.375 90.898288) (xy 214.375 91.001704)
(xy 214.395176 91.103133) (xy 214.434751 91.198677) (xy 214.492206 91.284664) (xy 214.565332 91.35779) (xy 214.651319 91.415245)
(xy 214.746863 91.45482) (xy 214.848292 91.474996) (xy 214.951708 91.474996) (xy 215.053137 91.45482) (xy 215.148681 91.415245)
(xy 215.234668 91.35779) (xy 215.267462 91.324996) (xy 216.664937 91.324996) (xy 223.225001 97.885061) (xy 223.225 101.250672)
(xy 221.389185 103.086487) (xy 221.381708 103.085) (xy 221.278292 103.085) (xy 221.176863 103.105176) (xy 221.081319 103.144751)
(xy 220.995332 103.202206) (xy 220.922206 103.275332) (xy 220.864751 103.361319) (xy 220.825176 103.456863) (xy 220.805 103.558292)
(xy 220.805 103.661708) (xy 220.825176 103.763137) (xy 220.864751 103.858681) (xy 220.922206 103.944668) (xy 220.995332 104.017794)
(xy 221.081319 104.075249) (xy 221.176863 104.114824) (xy 221.278292 104.135) (xy 221.381708 104.135) (xy 221.483137 104.114824)
(xy 221.578681 104.075249) (xy 221.664668 104.017794) (xy 221.737794 103.944668) (xy 221.795249 103.858681) (xy 221.834824 103.763137)
(xy 221.850127 103.686204) (xy 222.338039 103.198292) (xy 231.924924 103.198292) (xy 231.924924 103.301708) (xy 231.9451 103.403137)
(xy 231.984675 103.498681) (xy 232.04213 103.584668) (xy 232.115256 103.657794) (xy 232.201243 103.715249) (xy 232.262286 103.740533)
(xy 232.242753 103.78769) (xy 232.222577 103.889119) (xy 232.222577 103.992535) (xy 232.242753 104.093964) (xy 232.282328 104.189508)
(xy 232.339783 104.275495) (xy 232.364721 104.300433) (xy 232.331294 104.381134) (xy 232.311118 104.482563) (xy 232.311118 104.585979)
(xy 232.331112 104.686494) (xy 232.301684 104.706157) (xy 232.228558 104.779283) (xy 232.171103 104.86527) (xy 232.131528 104.960814)
(xy 232.111352 105.062243) (xy 232.111352 105.165659) (xy 232.131528 105.267088) (xy 232.171103 105.362632) (xy 232.228558 105.448619)
(xy 232.301684 105.521745) (xy 232.387671 105.5792) (xy 232.483215 105.618775) (xy 232.584644 105.638951) (xy 232.68806 105.638951)
(xy 232.789489 105.618775) (xy 232.885033 105.5792) (xy 232.97102 105.521745) (xy 233.003814 105.488951) (xy 233.408622 105.488951)
(xy 234.575001 106.655332) (xy 234.575001 106.955866) (xy 234.390031 107.032484) (xy 234.201678 107.158337) (xy 234.041497 107.318518)
(xy 233.915644 107.506871) (xy 233.828954 107.716157) (xy 233.78476 107.938335) (xy 233.78476 108.164865) (xy 233.828954 108.387043)
(xy 233.915644 108.596329) (xy 234.041497 108.784682) (xy 234.201678 108.944863) (xy 234.390031 109.070716) (xy 234.599317 109.157406)
(xy 234.821495 109.2016) (xy 235.048025 109.2016) (xy 235.270203 109.157406) (xy 235.479489 109.070716) (xy 235.667842 108.944863)
(xy 235.828023 108.784682) (xy 235.953876 108.596329) (xy 236.040566 108.387043) (xy 236.08476 108.164865) (xy 236.08476 107.938335)
(xy 236.040566 107.716157) (xy 235.953876 107.506871) (xy 235.828023 107.318518) (xy 235.667842 107.158337) (xy 235.479489 107.032484)
(xy 235.325 106.968492) (xy 235.325 106.518415) (xy 235.326814 106.499999) (xy 235.325 106.481581) (xy 235.320712 106.438041)
(xy 236.436283 107.553613) (xy 236.368954 107.716157) (xy 236.32476 107.938335) (xy 236.32476 108.164865) (xy 236.368954 108.387043)
(xy 236.455644 108.596329) (xy 236.581497 108.784682) (xy 236.741678 108.944863) (xy 236.930031 109.070716) (xy 237.139317 109.157406)
(xy 237.361495 109.2016) (xy 237.588025 109.2016) (xy 237.810203 109.157406) (xy 238.019489 109.070716) (xy 238.207842 108.944863)
(xy 238.368023 108.784682) (xy 238.493876 108.596329) (xy 238.580566 108.387043) (xy 238.62476 108.164865) (xy 238.62476 107.938335)
(xy 238.580566 107.716157) (xy 238.493876 107.506871) (xy 238.368023 107.318518) (xy 238.324516 107.275011) (xy 238.697682 107.275011)
(xy 238.976283 107.553612) (xy 238.908954 107.716157) (xy 238.86476 107.938335) (xy 238.86476 108.164865) (xy 238.908954 108.387043)
(xy 238.995644 108.596329) (xy 239.121497 108.784682) (xy 239.281678 108.944863) (xy 239.470031 109.070716) (xy 239.679317 109.157406)
(xy 239.901495 109.2016) (xy 240.128025 109.2016) (xy 240.350203 109.157406) (xy 240.559489 109.070716) (xy 240.747842 108.944863)
(xy 240.908023 108.784682) (xy 241.033876 108.596329) (xy 241.120566 108.387043) (xy 241.16476 108.164865) (xy 241.16476 107.938335)
(xy 241.120566 107.716157) (xy 241.033876 107.506871) (xy 240.908023 107.318518) (xy 240.747842 107.158337) (xy 240.559489 107.032484)
(xy 240.420712 106.975) (xy 240.937671 106.975) (xy 241.403309 107.440638) (xy 241.403309 108.9016) (xy 241.409101 108.96041)
(xy 241.426256 109.01696) (xy 241.454113 109.069077) (xy 241.491602 109.114758) (xy 241.537283 109.152247) (xy 241.5894 109.180104)
(xy 241.64595 109.197259) (xy 241.70476 109.203051) (xy 243.40476 109.203051) (xy 243.46357 109.197259) (xy 243.52012 109.180104)
(xy 243.572237 109.152247) (xy 243.617918 109.114758) (xy 243.655407 109.069077) (xy 243.683264 109.01696) (xy 243.700419 108.96041)
(xy 243.706211 108.9016) (xy 243.706211 107.202617) (xy 246.582738 107.202617) (xy 246.682085 107.380657) (xy 246.896951 107.500912)
(xy 247.131149 107.576937) (xy 247.375678 107.605812) (xy 247.621143 107.586426) (xy 247.858108 107.519526) (xy 248.077469 107.40768)
(xy 248.117915 107.380657) (xy 248.217262 107.202617) (xy 247.4 106.385355) (xy 246.582738 107.202617) (xy 243.706211 107.202617)
(xy 243.706211 107.2016) (xy 243.700419 107.14279) (xy 243.683264 107.08624) (xy 243.655407 107.034123) (xy 243.617918 106.988442)
(xy 243.572237 106.950953) (xy 243.52012 106.923096) (xy 243.46357 106.905941) (xy 243.40476 106.900149) (xy 242.996112 106.900149)
(xy 243.177469 106.80768) (xy 243.217915 106.780657) (xy 243.317262 106.602617) (xy 242.5 105.785355) (xy 242.485858 105.799498)
(xy 242.450503 105.764143) (xy 242.464645 105.75) (xy 242.535355 105.75) (xy 243.352617 106.567262) (xy 243.530657 106.467915)
(xy 243.610263 106.325678) (xy 246.144188 106.325678) (xy 246.163574 106.571143) (xy 246.230474 106.808108) (xy 246.34232 107.027469)
(xy 246.369343 107.067915) (xy 246.547383 107.167262) (xy 247.364645 106.35) (xy 247.435355 106.35) (xy 248.252617 107.167262)
(xy 248.430657 107.067915) (xy 248.550912 106.853049) (xy 248.626937 106.618851) (xy 248.655812 106.374322) (xy 248.636426 106.128857)
(xy 248.569526 105.891892) (xy 248.45768 105.672531) (xy 248.430657 105.632085) (xy 248.252617 105.532738) (xy 247.435355 106.35)
(xy 247.364645 106.35) (xy 246.547383 105.532738) (xy 246.369343 105.632085) (xy 246.249088 105.846951) (xy 246.173063 106.081149)
(xy 246.144188 106.325678) (xy 243.610263 106.325678) (xy 243.650912 106.253049) (xy 243.726937 106.018851) (xy 243.755812 105.774322)
(xy 243.736426 105.528857) (xy 243.727541 105.497383) (xy 246.582738 105.497383) (xy 247.4 106.314645) (xy 248.217262 105.497383)
(xy 248.117915 105.319343) (xy 247.903049 105.199088) (xy 247.668851 105.123063) (xy 247.424322 105.094188) (xy 247.178857 105.113574)
(xy 246.941892 105.180474) (xy 246.722531 105.29232) (xy 246.682085 105.319343) (xy 246.582738 105.497383) (xy 243.727541 105.497383)
(xy 243.669526 105.291892) (xy 243.55768 105.072531) (xy 243.530657 105.032085) (xy 243.352617 104.932738) (xy 242.535355 105.75)
(xy 242.464645 105.75) (xy 241.647383 104.932738) (xy 241.469343 105.032085) (xy 241.349088 105.246951) (xy 241.273063 105.481149)
(xy 241.244188 105.725678) (xy 241.263574 105.971143) (xy 241.330474 106.208108) (xy 241.4335 106.410171) (xy 241.371195 106.347866)
(xy 241.359448 106.333552) (xy 241.302347 106.286691) (xy 241.2372 106.251869) (xy 241.166513 106.230426) (xy 241.111419 106.225)
(xy 241.111416 106.225) (xy 241.093 106.223186) (xy 241.074584 106.225) (xy 237.05533 106.225) (xy 235.727713 104.897383)
(xy 241.682738 104.897383) (xy 242.5 105.714645) (xy 243.317262 104.897383) (xy 243.217915 104.719343) (xy 243.003049 104.599088)
(xy 242.768851 104.523063) (xy 242.524322 104.494188) (xy 242.278857 104.513574) (xy 242.041892 104.580474) (xy 241.822531 104.69232)
(xy 241.782085 104.719343) (xy 241.682738 104.897383) (xy 235.727713 104.897383) (xy 233.828195 102.997866) (xy 233.816448 102.983552)
(xy 233.759347 102.936691) (xy 233.6942 102.901869) (xy 233.623513 102.880426) (xy 233.568419 102.875) (xy 233.568416 102.875)
(xy 233.55 102.873186) (xy 233.531584 102.875) (xy 232.817386 102.875) (xy 232.784592 102.842206) (xy 232.698605 102.784751)
(xy 232.603061 102.745176) (xy 232.501632 102.725) (xy 232.398216 102.725) (xy 232.296787 102.745176) (xy 232.201243 102.784751)
(xy 232.115256 102.842206) (xy 232.04213 102.915332) (xy 231.984675 103.001319) (xy 231.9451 103.096863) (xy 231.924924 103.198292)
(xy 222.338039 103.198292) (xy 223.842141 101.694191) (xy 223.856449 101.682449) (xy 223.90331 101.625348) (xy 223.92106 101.59214)
(xy 223.938131 101.560203) (xy 223.938132 101.5602) (xy 223.959575 101.489514) (xy 223.965001 101.43442) (xy 223.965001 101.434418)
(xy 223.965851 101.425785) (xy 223.969574 101.413513) (xy 223.975 101.358419) (xy 223.975 101.358416) (xy 223.976814 101.34)
(xy 223.975 101.321584) (xy 223.975 100.148292) (xy 230.725 100.148292) (xy 230.725 100.251708) (xy 230.745176 100.353137)
(xy 230.784751 100.448681) (xy 230.842206 100.534668) (xy 230.915332 100.607794) (xy 230.978497 100.65) (xy 230.915332 100.692206)
(xy 230.842206 100.765332) (xy 230.784751 100.851319) (xy 230.745176 100.946863) (xy 230.725 101.048292) (xy 230.725 101.151708)
(xy 230.745176 101.253137) (xy 230.784751 101.348681) (xy 230.842206 101.434668) (xy 230.915332 101.507794) (xy 231.001319 101.565249)
(xy 231.096863 101.604824) (xy 231.198292 101.625) (xy 231.301708 101.625) (xy 231.403137 101.604824) (xy 231.498681 101.565249)
(xy 231.584668 101.507794) (xy 231.657794 101.434668) (xy 231.715249 101.348681) (xy 231.754824 101.253137) (xy 231.775 101.151708)
(xy 231.775 101.048292) (xy 231.754824 100.946863) (xy 231.715249 100.851319) (xy 231.657794 100.765332) (xy 231.584668 100.692206)
(xy 231.521503 100.65) (xy 231.584668 100.607794) (xy 231.657794 100.534668) (xy 231.715249 100.448681) (xy 231.754824 100.353137)
(xy 231.775 100.251708) (xy 231.775 100.148292) (xy 231.754824 100.046863) (xy 231.715249 99.951319) (xy 231.657794 99.865332)
(xy 231.584668 99.792206) (xy 231.498681 99.734751) (xy 231.403137 99.695176) (xy 231.301708 99.675) (xy 231.198292 99.675)
(xy 231.096863 99.695176) (xy 231.001319 99.734751) (xy 230.915332 99.792206) (xy 230.842206 99.865332) (xy 230.784751 99.951319)
(xy 230.745176 100.046863) (xy 230.725 100.148292) (xy 223.975 100.148292) (xy 223.975 97.748146) (xy 223.976814 97.72973)
(xy 223.975 97.711311) (xy 223.969574 97.656217) (xy 223.948131 97.58553) (xy 223.913309 97.520383) (xy 223.866448 97.463282)
(xy 223.852139 97.451539) (xy 222.898892 96.498292) (xy 226.075 96.498292) (xy 226.075 96.601708) (xy 226.095176 96.703137)
(xy 226.134751 96.798681) (xy 226.192206 96.884668) (xy 226.265332 96.957794) (xy 226.351319 97.015249) (xy 226.446863 97.054824)
(xy 226.548292 97.075) (xy 226.651708 97.075) (xy 226.753137 97.054824) (xy 226.848681 97.015249) (xy 226.934668 96.957794)
(xy 227.007794 96.884668) (xy 227.065249 96.798681) (xy 227.104824 96.703137) (xy 227.125 96.601708) (xy 227.125 96.6)
(xy 227.49734 96.6) (xy 227.507959 96.707818) (xy 227.539409 96.811494) (xy 227.590479 96.907042) (xy 227.65921 96.99079)
(xy 227.742958 97.059521) (xy 227.838506 97.110591) (xy 227.938661 97.140973) (xy 227.907959 97.242182) (xy 227.89734 97.35)
(xy 227.907959 97.457818) (xy 227.939409 97.561494) (xy 227.990479 97.657042) (xy 228.041987 97.719804) (xy 228.391983 98.069799)
(xy 228.40921 98.09079) (xy 228.467416 98.138559) (xy 228.492958 98.159521) (xy 228.588505 98.210592) (xy 228.677482 98.237583)
(xy 228.692181 98.242042) (xy 228.772982 98.25) (xy 228.772989 98.25) (xy 228.8 98.25266) (xy 228.824996 98.250198)
(xy 228.85 98.252661) (xy 228.85738 98.251934) (xy 228.857959 98.257818) (xy 228.889409 98.361494) (xy 228.940479 98.457042)
(xy 228.991987 98.519804) (xy 229.034934 98.562751) (xy 229.052157 98.583737) (xy 229.135905 98.652468) (xy 229.231453 98.703539)
(xy 229.335128 98.734989) (xy 229.359405 98.73738) (xy 229.357951 98.742174) (xy 229.347332 98.849992) (xy 229.357951 98.95781)
(xy 229.389401 99.061486) (xy 229.440471 99.157034) (xy 229.491979 99.219796) (xy 229.791987 99.519804) (xy 229.80921 99.54079)
(xy 229.892958 99.609521) (xy 229.988506 99.660592) (xy 230.092181 99.692042) (xy 230.123436 99.69512) (xy 230.146863 99.704824)
(xy 230.248292 99.725) (xy 230.351708 99.725) (xy 230.453137 99.704824) (xy 230.464783 99.7) (xy 230.972992 99.7)
(xy 231 99.70266) (xy 231.027008 99.7) (xy 231.027018 99.7) (xy 231.107819 99.692042) (xy 231.192167 99.666455)
(xy 231.262317 99.659546) (xy 231.346537 99.633998) (xy 231.424155 99.59251) (xy 231.492187 99.536677) (xy 231.700783 99.328081)
(xy 231.756616 99.260049) (xy 231.798104 99.182431) (xy 231.823652 99.098211) (xy 231.829356 99.040296) (xy 231.860625 99.043376)
(xy 231.919435 99.037583) (xy 231.975985 99.020429) (xy 232.028103 98.992572) (xy 232.073783 98.955082) (xy 232.210643 98.81617)
(xy 232.210643 98.710104) (xy 231.842947 98.342408) (xy 231.828805 98.356551) (xy 231.79345 98.321196) (xy 231.807592 98.307053)
(xy 231.878302 98.307053) (xy 232.245998 98.674749) (xy 232.352064 98.674749) (xy 232.490976 98.537889) (xy 232.528466 98.492209)
(xy 232.556323 98.440091) (xy 232.573477 98.383541) (xy 232.57927 98.324731) (xy 232.573477 98.265921) (xy 232.556323 98.20937)
(xy 232.528466 98.157252) (xy 232.490976 98.111572) (xy 232.334386 97.957035) (xy 232.22832 97.957035) (xy 231.878302 98.307053)
(xy 231.807592 98.307053) (xy 231.439896 97.939357) (xy 231.410643 97.939357) (xy 231.410643 97.910104) (xy 231.042947 97.542408)
(xy 231.028805 97.556551) (xy 230.99345 97.521196) (xy 231.007592 97.507053) (xy 231.078302 97.507053) (xy 231.445998 97.874749)
(xy 231.475251 97.874749) (xy 231.475251 97.904002) (xy 231.842947 98.271698) (xy 232.192965 97.92168) (xy 232.192965 97.815614)
(xy 232.038428 97.659024) (xy 231.992748 97.621534) (xy 231.94063 97.593677) (xy 231.884079 97.576523) (xy 231.825269 97.57073)
(xy 231.774244 97.575756) (xy 231.77927 97.524731) (xy 231.774699 97.47832) (xy 232.707035 97.47832) (xy 232.707035 97.584386)
(xy 232.861572 97.740976) (xy 232.907252 97.778466) (xy 232.95937 97.806323) (xy 233.015921 97.823477) (xy 233.074731 97.82927)
(xy 233.133541 97.823477) (xy 233.190091 97.806323) (xy 233.242209 97.778466) (xy 233.287889 97.740976) (xy 233.424749 97.602064)
(xy 233.424749 97.495998) (xy 233.057053 97.128302) (xy 232.707035 97.47832) (xy 231.774699 97.47832) (xy 231.773477 97.465921)
(xy 231.756323 97.40937) (xy 231.728466 97.357252) (xy 231.690976 97.311572) (xy 231.534386 97.157035) (xy 231.42832 97.157035)
(xy 231.078302 97.507053) (xy 231.007592 97.507053) (xy 230.639896 97.139357) (xy 230.610643 97.139357) (xy 230.610643 97.110104)
(xy 230.242947 96.742408) (xy 230.228805 96.756551) (xy 230.19345 96.721196) (xy 230.207592 96.707053) (xy 230.278302 96.707053)
(xy 230.645998 97.074749) (xy 230.675251 97.074749) (xy 230.675251 97.104002) (xy 231.042947 97.471698) (xy 231.392965 97.12168)
(xy 231.392965 97.015614) (xy 231.238428 96.859024) (xy 231.192748 96.821534) (xy 231.14063 96.793677) (xy 231.084079 96.776523)
(xy 231.025269 96.77073) (xy 230.974244 96.775756) (xy 230.97927 96.724731) (xy 230.974699 96.67832) (xy 231.907035 96.67832)
(xy 231.907035 96.784386) (xy 232.061572 96.940976) (xy 232.107252 96.978466) (xy 232.15937 97.006323) (xy 232.215921 97.023477)
(xy 232.274731 97.02927) (xy 232.325756 97.024244) (xy 232.32073 97.075269) (xy 232.326523 97.134079) (xy 232.343677 97.19063)
(xy 232.371534 97.242748) (xy 232.409024 97.288428) (xy 232.565614 97.442965) (xy 232.67168 97.442965) (xy 233.021698 97.092947)
(xy 232.654002 96.725251) (xy 232.624749 96.725251) (xy 232.624749 96.695998) (xy 232.257053 96.328302) (xy 231.907035 96.67832)
(xy 230.974699 96.67832) (xy 230.973477 96.665921) (xy 230.956323 96.60937) (xy 230.928466 96.557252) (xy 230.890976 96.511572)
(xy 230.734386 96.357035) (xy 230.62832 96.357035) (xy 230.278302 96.707053) (xy 230.207592 96.707053) (xy 229.839896 96.339357)
(xy 229.810643 96.339357) (xy 229.810643 96.310104) (xy 229.442947 95.942408) (xy 229.428805 95.956551) (xy 229.39345 95.921196)
(xy 229.407592 95.907053) (xy 229.478302 95.907053) (xy 229.845998 96.274749) (xy 229.875251 96.274749) (xy 229.875251 96.304002)
(xy 230.242947 96.671698) (xy 230.592965 96.32168) (xy 230.592965 96.215614) (xy 230.438428 96.059024) (xy 230.392748 96.021534)
(xy 230.34063 95.993677) (xy 230.284079 95.976523) (xy 230.225269 95.97073) (xy 230.174244 95.975756) (xy 230.17927 95.924731)
(xy 230.174699 95.87832) (xy 231.107035 95.87832) (xy 231.107035 95.984386) (xy 231.261572 96.140976) (xy 231.307252 96.178466)
(xy 231.35937 96.206323) (xy 231.415921 96.223477) (xy 231.474731 96.22927) (xy 231.525756 96.224244) (xy 231.52073 96.275269)
(xy 231.526523 96.334079) (xy 231.543677 96.39063) (xy 231.571534 96.442748) (xy 231.609024 96.488428) (xy 231.765614 96.642965)
(xy 231.87168 96.642965) (xy 232.221698 96.292947) (xy 231.854002 95.925251) (xy 231.824749 95.925251) (xy 231.824749 95.895998)
(xy 231.457053 95.528302) (xy 231.107035 95.87832) (xy 230.174699 95.87832) (xy 230.173477 95.865921) (xy 230.156323 95.80937)
(xy 230.128466 95.757252) (xy 230.090976 95.711572) (xy 229.934386 95.557035) (xy 229.82832 95.557035) (xy 229.478302 95.907053)
(xy 229.407592 95.907053) (xy 229.039896 95.539357) (xy 228.93383 95.539357) (xy 228.794918 95.676217) (xy 228.757428 95.721897)
(xy 228.729571 95.774015) (xy 228.712417 95.830565) (xy 228.706624 95.889375) (xy 228.709704 95.920644) (xy 228.651789 95.926348)
(xy 228.567569 95.951896) (xy 228.489951 95.993384) (xy 228.429559 96.042947) (xy 228.08406 96.042947) (xy 228.057052 96.040287)
(xy 228.030044 96.042947) (xy 228.030035 96.042947) (xy 227.949234 96.050905) (xy 227.845559 96.082355) (xy 227.750011 96.133426)
(xy 227.666263 96.202157) (xy 227.64904 96.223143) (xy 227.641987 96.230196) (xy 227.590479 96.292958) (xy 227.539409 96.388506)
(xy 227.507959 96.492182) (xy 227.49734 96.6) (xy 227.125 96.6) (xy 227.125 96.498292) (xy 227.104824 96.396863)
(xy 227.065249 96.301319) (xy 227.007794 96.215332) (xy 226.934668 96.142206) (xy 226.848681 96.084751) (xy 226.753137 96.045176)
(xy 226.651708 96.025) (xy 226.548292 96.025) (xy 226.446863 96.045176) (xy 226.351319 96.084751) (xy 226.265332 96.142206)
(xy 226.192206 96.215332) (xy 226.134751 96.301319) (xy 226.095176 96.396863) (xy 226.075 96.498292) (xy 222.898892 96.498292)
(xy 221.798536 95.397936) (xy 229.075251 95.397936) (xy 229.075251 95.504002) (xy 229.442947 95.871698) (xy 229.792965 95.52168)
(xy 229.792965 95.415614) (xy 229.638428 95.259024) (xy 229.592748 95.221534) (xy 229.54063 95.193677) (xy 229.484079 95.176523)
(xy 229.425269 95.17073) (xy 229.366459 95.176523) (xy 229.309909 95.193677) (xy 229.257791 95.221534) (xy 229.212111 95.259024)
(xy 229.075251 95.397936) (xy 221.798536 95.397936) (xy 221.47892 95.07832) (xy 230.307035 95.07832) (xy 230.307035 95.184386)
(xy 230.461572 95.340976) (xy 230.507252 95.378466) (xy 230.55937 95.406323) (xy 230.615921 95.423477) (xy 230.674731 95.42927)
(xy 230.725756 95.424244) (xy 230.72073 95.475269) (xy 230.726523 95.534079) (xy 230.743677 95.59063) (xy 230.771534 95.642748)
(xy 230.809024 95.688428) (xy 230.965614 95.842965) (xy 231.07168 95.842965) (xy 231.421698 95.492947) (xy 231.054002 95.125251)
(xy 231.024749 95.125251) (xy 231.024749 95.095998) (xy 230.657053 94.728302) (xy 230.307035 95.07832) (xy 221.47892 95.07832)
(xy 221.075869 94.675269) (xy 229.92073 94.675269) (xy 229.926523 94.734079) (xy 229.943677 94.79063) (xy 229.971534 94.842748)
(xy 230.009024 94.888428) (xy 230.165614 95.042965) (xy 230.27168 95.042965) (xy 230.621698 94.692947) (xy 230.254002 94.325251)
(xy 230.147936 94.325251) (xy 230.009024 94.462111) (xy 229.971534 94.507791) (xy 229.943677 94.559909) (xy 229.926523 94.616459)
(xy 229.92073 94.675269) (xy 221.075869 94.675269) (xy 217.098461 90.697862) (xy 217.086714 90.683548) (xy 217.029613 90.636687)
(xy 216.964466 90.601865) (xy 216.893779 90.580422) (xy 216.838685 90.574996) (xy 216.838682 90.574996) (xy 216.820266 90.573182)
(xy 216.80185 90.574996) (xy 215.267462 90.574996) (xy 215.234668 90.542202) (xy 215.148681 90.484747) (xy 215.053137 90.445172)
(xy 214.951708 90.424996) (xy 214.848292 90.424996) (xy 214.746863 90.445172) (xy 214.651319 90.484747) (xy 214.565332 90.542202)
(xy 214.492206 90.615328) (xy 214.434751 90.701315) (xy 214.395176 90.796859) (xy 214.375 90.898288) (xy 207.382041 90.898288)
(xy 208.87533 89.405) (xy 212.08967 89.405) (xy 212.026121 89.468549) (xy 211.7875 89.468549) (xy 211.699914 89.477175)
(xy 211.615694 89.502723) (xy 211.538076 89.544211) (xy 211.470044 89.600044) (xy 211.443367 89.63255) (xy 211.353137 89.595176)
(xy 211.251708 89.575) (xy 211.148292 89.575) (xy 211.046863 89.595176) (xy 210.951319 89.634751) (xy 210.865332 89.692206)
(xy 210.792206 89.765332) (xy 210.734751 89.851319) (xy 210.695176 89.946863) (xy 210.675 90.048292) (xy 210.675 90.151708)
(xy 210.695176 90.253137) (xy 210.734751 90.348681) (xy 210.792206 90.434668) (xy 210.865332 90.507794) (xy 210.951319 90.565249)
(xy 211.046863 90.604824) (xy 211.148292 90.625) (xy 211.251708 90.625) (xy 211.353137 90.604824) (xy 211.448681 90.565249)
(xy 211.454683 90.561239) (xy 211.470044 90.579956) (xy 211.538076 90.635789) (xy 211.615694 90.677277) (xy 211.699914 90.702825)
(xy 211.7875 90.711451) (xy 212.0825 90.711451) (xy 212.170086 90.702825) (xy 212.254306 90.677277) (xy 212.331924 90.635789)
(xy 212.399956 90.579956) (xy 212.42 90.555533) (xy 212.440044 90.579956) (xy 212.508076 90.635789) (xy 212.585694 90.677277)
(xy 212.669914 90.702825) (xy 212.7575 90.711451) (xy 213.0525 90.711451) (xy 213.140086 90.702825) (xy 213.224306 90.677277)
(xy 213.301924 90.635789) (xy 213.369956 90.579956) (xy 213.388859 90.556923) (xy 213.401319 90.565249) (xy 213.496863 90.604824)
(xy 213.598292 90.625) (xy 213.701708 90.625) (xy 213.803137 90.604824) (xy 213.898681 90.565249) (xy 213.984668 90.507794)
(xy 214.057794 90.434668) (xy 214.115249 90.348681) (xy 214.154824 90.253137) (xy 214.175 90.151708) (xy 214.175 90.048292)
(xy 214.154824 89.946863) (xy 214.116778 89.85501) (xy 224.884666 89.85501) (xy 227.881794 92.852139) (xy 227.893537 92.866448)
(xy 227.950638 92.913309) (xy 228.015785 92.948131) (xy 228.086472 92.969574) (xy 228.141566 92.975) (xy 228.141568 92.975)
(xy 228.159984 92.976814) (xy 228.1784 92.975) (xy 230.984442 92.975) (xy 231.093346 93.083904) (xy 231.007818 93.057959)
(xy 230.9 93.04734) (xy 230.792182 93.057959) (xy 230.688506 93.089409) (xy 230.592958 93.140479) (xy 230.50921 93.20921)
(xy 230.440479 93.292958) (xy 230.389409 93.388506) (xy 230.357959 93.492182) (xy 230.34734 93.6) (xy 230.357959 93.707818)
(xy 230.389409 93.811494) (xy 230.440479 93.907042) (xy 230.491987 93.969804) (xy 230.509508 93.987325) (xy 230.471897 94.007428)
(xy 230.426217 94.044918) (xy 230.289357 94.18383) (xy 230.289357 94.289896) (xy 230.657053 94.657592) (xy 230.671196 94.64345)
(xy 230.706551 94.678805) (xy 230.692408 94.692947) (xy 231.060104 95.060643) (xy 231.089357 95.060643) (xy 231.089357 95.089896)
(xy 231.457053 95.457592) (xy 231.471196 95.44345) (xy 231.506551 95.478805) (xy 231.492408 95.492947) (xy 231.860104 95.860643)
(xy 231.889357 95.860643) (xy 231.889357 95.889896) (xy 232.257053 96.257592) (xy 232.271196 96.24345) (xy 232.306551 96.278805)
(xy 232.292408 96.292947) (xy 232.660104 96.660643) (xy 232.689357 96.660643) (xy 232.689357 96.689896) (xy 233.057053 97.057592)
(xy 233.071196 97.04345) (xy 233.106551 97.078805) (xy 233.092408 97.092947) (xy 233.460104 97.460643) (xy 233.53447 97.460643)
(xy 233.559211 97.49079) (xy 233.642959 97.559521) (xy 233.738507 97.610592) (xy 233.842182 97.642042) (xy 233.95 97.652661)
(xy 234.057819 97.642042) (xy 234.161494 97.610592) (xy 234.257042 97.559521) (xy 234.34079 97.49079) (xy 234.409521 97.407042)
(xy 234.460592 97.311494) (xy 234.492042 97.207819) (xy 234.5 97.127017) (xy 234.5 96.641113) (xy 234.50266 96.614105)
(xy 234.5 96.587097) (xy 234.5 96.587088) (xy 234.492042 96.506287) (xy 234.460592 96.402612) (xy 234.409521 96.307064)
(xy 234.395085 96.289474) (xy 234.383998 96.252925) (xy 234.34251 96.175307) (xy 234.286677 96.107275) (xy 234.042725 95.863323)
(xy 233.974693 95.80749) (xy 233.897075 95.766002) (xy 233.872154 95.758442) (xy 233.720765 95.607053) (xy 233.858013 95.469805)
(xy 233.90952 95.407043) (xy 233.960591 95.311495) (xy 233.992041 95.20782) (xy 234.00266 95.100001) (xy 233.992041 94.992182)
(xy 233.960591 94.888506) (xy 233.90952 94.792959) (xy 233.84079 94.70921) (xy 233.757041 94.64048) (xy 233.661494 94.589409)
(xy 233.557818 94.557959) (xy 233.449999 94.54734) (xy 233.34218 94.557959) (xy 233.238505 94.589409) (xy 233.142957 94.64048)
(xy 233.080195 94.691987) (xy 232.829136 94.943047) (xy 232.797294 94.952706) (xy 232.809546 94.912317) (xy 232.814717 94.859808)
(xy 233.130552 94.543973) (xy 233.151538 94.52675) (xy 233.18108 94.490754) (xy 233.220269 94.443002) (xy 233.27134 94.347454)
(xy 233.30279 94.243779) (xy 233.313408 94.13596) (xy 233.30279 94.028141) (xy 233.27134 93.924466) (xy 233.27134 93.924465)
(xy 233.220269 93.828918) (xy 233.168761 93.766155) (xy 233.168756 93.76615) (xy 233.151538 93.74517) (xy 233.130557 93.727951)
(xy 232.7828 93.380195) (xy 232.765578 93.35921) (xy 232.68183 93.290479) (xy 232.586282 93.239408) (xy 232.482607 93.207958)
(xy 232.401806 93.2) (xy 232.401796 93.2) (xy 232.374788 93.19734) (xy 232.34778 93.2) (xy 232.314782 93.2)
(xy 232.314782 93.198302) (xy 232.294606 93.096873) (xy 232.255031 93.001329) (xy 232.197576 92.915342) (xy 232.12445 92.842216)
(xy 232.038463 92.784761) (xy 231.942919 92.745186) (xy 231.84149 92.72501) (xy 231.795113 92.72501) (xy 231.695102 92.625)
(xy 234.256115 92.625) (xy 236.425001 94.793888) (xy 236.425 101.469129) (xy 236.378076 101.494211) (xy 236.310044 101.550044)
(xy 236.254211 101.618076) (xy 236.212723 101.695694) (xy 236.187175 101.779914) (xy 236.178549 101.8675) (xy 236.178549 102.1625)
(xy 236.187175 102.250086) (xy 236.212723 102.334306) (xy 236.254211 102.411924) (xy 236.310044 102.479956) (xy 236.334467 102.5)
(xy 236.310044 102.520044) (xy 236.254211 102.588076) (xy 236.212723 102.665694) (xy 236.187175 102.749914) (xy 236.178549 102.8375)
(xy 236.178549 103.1325) (xy 236.187175 103.220086) (xy 236.212723 103.304306) (xy 236.254211 103.381924) (xy 236.299312 103.436879)
(xy 236.295176 103.446863) (xy 236.275 103.548292) (xy 236.275 103.651708) (xy 236.295176 103.753137) (xy 236.334751 103.848681)
(xy 236.392206 103.934668) (xy 236.465332 104.007794) (xy 236.551319 104.065249) (xy 236.646863 104.104824) (xy 236.748292 104.125)
(xy 236.851708 104.125) (xy 236.953137 104.104824) (xy 237.048681 104.065249) (xy 237.134668 104.007794) (xy 237.207794 103.934668)
(xy 237.265249 103.848681) (xy 237.304824 103.753137) (xy 237.325 103.651708) (xy 237.325 103.548292) (xy 237.304824 103.446863)
(xy 237.302091 103.440266) (xy 237.310044 103.449956) (xy 237.378076 103.505789) (xy 237.455694 103.547277) (xy 237.539914 103.572825)
(xy 237.6275 103.581451) (xy 237.9725 103.581451) (xy 238.060086 103.572825) (xy 238.144306 103.547277) (xy 238.221924 103.505789)
(xy 238.289956 103.449956) (xy 238.3 103.437717) (xy 238.310044 103.449956) (xy 238.378076 103.505789) (xy 238.455694 103.547277)
(xy 238.539914 103.572825) (xy 238.6275 103.581451) (xy 238.9725 103.581451) (xy 239.060086 103.572825) (xy 239.144306 103.547277)
(xy 239.221924 103.505789) (xy 239.289956 103.449956) (xy 239.3 103.437717) (xy 239.310044 103.449956) (xy 239.378076 103.505789)
(xy 239.455694 103.547277) (xy 239.539914 103.572825) (xy 239.6275 103.581451) (xy 239.9725 103.581451) (xy 240.060086 103.572825)
(xy 240.144306 103.547277) (xy 240.221924 103.505789) (xy 240.289956 103.449956) (xy 240.345789 103.381924) (xy 240.387277 103.304306)
(xy 240.412825 103.220086) (xy 240.419075 103.156621) (xy 240.428107 103.154824) (xy 240.523651 103.115249) (xy 240.609638 103.057794)
(xy 240.682764 102.984668) (xy 240.740219 102.898681) (xy 240.779794 102.803137) (xy 240.79997 102.701708) (xy 240.79997 102.598292)
(xy 240.779794 102.496863) (xy 240.740219 102.401319) (xy 240.682764 102.315332) (xy 240.609638 102.242206) (xy 240.523651 102.184751)
(xy 240.428107 102.145176) (xy 240.421451 102.143852) (xy 240.421451 101.8675) (xy 240.412825 101.779914) (xy 240.39729 101.728701)
(xy 240.457023 101.688788) (xy 240.530149 101.615662) (xy 240.587604 101.529675) (xy 240.627179 101.434131) (xy 240.647355 101.332702)
(xy 240.647355 101.229286) (xy 240.627179 101.127857) (xy 240.587604 101.032313) (xy 240.530149 100.946326) (xy 240.457023 100.8732)
(xy 240.371036 100.815745) (xy 240.275492 100.77617) (xy 240.174063 100.755994) (xy 240.127685 100.755994) (xy 237.825 98.45331)
(xy 237.825 94.458415) (xy 237.826814 94.439999) (xy 237.824851 94.420067) (xy 237.819574 94.366487) (xy 237.798131 94.2958)
(xy 237.763309 94.230653) (xy 237.716448 94.173552) (xy 237.702139 94.161809) (xy 235.642947 92.102617) (xy 241.682738 92.102617)
(xy 241.782085 92.280657) (xy 241.996951 92.400912) (xy 242.231149 92.476937) (xy 242.475678 92.505812) (xy 242.721143 92.486426)
(xy 242.958108 92.419526) (xy 243.177469 92.30768) (xy 243.217915 92.280657) (xy 243.317262 92.102617) (xy 242.5 91.285355)
(xy 241.682738 92.102617) (xy 235.642947 92.102617) (xy 234.766008 91.225678) (xy 241.244188 91.225678) (xy 241.263574 91.471143)
(xy 241.330474 91.708108) (xy 241.44232 91.927469) (xy 241.469343 91.967915) (xy 241.647383 92.067262) (xy 242.464645 91.25)
(xy 242.535355 91.25) (xy 243.352617 92.067262) (xy 243.530657 91.967915) (xy 243.650912 91.753049) (xy 243.726937 91.518851)
(xy 243.728853 91.502617) (xy 246.582738 91.502617) (xy 246.682085 91.680657) (xy 246.896951 91.800912) (xy 247.131149 91.876937)
(xy 247.375678 91.905812) (xy 247.621143 91.886426) (xy 247.858108 91.819526) (xy 248.077469 91.70768) (xy 248.117915 91.680657)
(xy 248.217262 91.502617) (xy 247.4 90.685355) (xy 246.582738 91.502617) (xy 243.728853 91.502617) (xy 243.755812 91.274322)
(xy 243.736426 91.028857) (xy 243.669526 90.791892) (xy 243.584779 90.625678) (xy 246.144188 90.625678) (xy 246.163574 90.871143)
(xy 246.230474 91.108108) (xy 246.34232 91.327469) (xy 246.369343 91.367915) (xy 246.547383 91.467262) (xy 247.364645 90.65)
(xy 247.435355 90.65) (xy 248.252617 91.467262) (xy 248.430657 91.367915) (xy 248.550912 91.153049) (xy 248.626937 90.918851)
(xy 248.655812 90.674322) (xy 248.636426 90.428857) (xy 248.569526 90.191892) (xy 248.45768 89.972531) (xy 248.430657 89.932085)
(xy 248.252617 89.832738) (xy 247.435355 90.65) (xy 247.364645 90.65) (xy 246.547383 89.832738) (xy 246.369343 89.932085)
(xy 246.249088 90.146951) (xy 246.173063 90.381149) (xy 246.144188 90.625678) (xy 243.584779 90.625678) (xy 243.55768 90.572531)
(xy 243.530657 90.532085) (xy 243.352617 90.432738) (xy 242.535355 91.25) (xy 242.464645 91.25) (xy 241.647383 90.432738)
(xy 241.469343 90.532085) (xy 241.349088 90.746951) (xy 241.273063 90.981149) (xy 241.244188 91.225678) (xy 234.766008 91.225678)
(xy 234.609499 91.06917) (xy 234.597752 91.054856) (xy 234.540651 91.007995) (xy 234.475504 90.973173) (xy 234.404817 90.95173)
(xy 234.349723 90.946304) (xy 234.34972 90.946304) (xy 234.331304 90.94449) (xy 234.312888 90.946304) (xy 230.203797 90.946304)
(xy 230.171003 90.91351) (xy 230.085016 90.856055) (xy 229.989472 90.81648) (xy 229.888043 90.796304) (xy 229.784627 90.796304)
(xy 229.683198 90.81648) (xy 229.587654 90.856055) (xy 229.501667 90.91351) (xy 229.428541 90.986636) (xy 229.371086 91.072623)
(xy 229.331511 91.168167) (xy 229.312342 91.264532) (xy 229.289321 91.269111) (xy 229.193777 91.308686) (xy 229.10779 91.366141)
(xy 229.034664 91.439267) (xy 228.977209 91.525254) (xy 228.941615 91.611186) (xy 228.912432 91.611186) (xy 228.811003 91.631362)
(xy 228.715459 91.670937) (xy 228.66267 91.70621) (xy 228.612813 91.672896) (xy 228.517269 91.633321) (xy 228.41584 91.613145)
(xy 228.369462 91.613145) (xy 227.1537 90.397383) (xy 241.682738 90.397383) (xy 242.5 91.214645) (xy 243.317262 90.397383)
(xy 243.217915 90.219343) (xy 243.003049 90.099088) (xy 242.768851 90.023063) (xy 242.524322 89.994188) (xy 242.278857 90.013574)
(xy 242.041892 90.080474) (xy 241.822531 90.19232) (xy 241.782085 90.219343) (xy 241.682738 90.397383) (xy 227.1537 90.397383)
(xy 225.534182 88.777866) (xy 225.522435 88.763552) (xy 225.465334 88.716691) (xy 225.400187 88.681869) (xy 225.3295 88.660426)
(xy 225.274406 88.655) (xy 225.274403 88.655) (xy 225.255987 88.653186) (xy 225.237571 88.655) (xy 208.738416 88.655)
(xy 208.72 88.653186) (xy 208.701584 88.655) (xy 208.701581 88.655) (xy 208.646487 88.660426) (xy 208.5758 88.681869)
(xy 208.510653 88.716691) (xy 208.453552 88.763552) (xy 208.441809 88.777861) (xy 206.094671 91.125) (xy 206.048292 91.125)
(xy 205.946863 91.145176) (xy 205.851319 91.184751) (xy 205.765332 91.242206) (xy 205.692206 91.315332) (xy 205.634751 91.401319)
(xy 205.595176 91.496863) (xy 205.575 91.598292) (xy 200.375 91.598292) (xy 200.375 88.018338) (xy 200.403713 87.7255)
(xy 200.480702 88.112547) (xy 200.639004 88.494723) (xy 200.868823 88.838672) (xy 201.161328 89.131177) (xy 201.505277 89.360996)
(xy 201.887453 89.519298) (xy 202.293168 89.6) (xy 202.706832 89.6) (xy 203.112547 89.519298) (xy 203.494723 89.360996)
(xy 203.838672 89.131177) (xy 204.131177 88.838672) (xy 204.360996 88.494723) (xy 204.519298 88.112547) (xy 204.6 87.706832)
(xy 204.6 87.293168) (xy 204.519298 86.887453) (xy 204.360996 86.505277) (xy 204.131177 86.161328) (xy 203.838672 85.868823)
(xy 203.494723 85.639004) (xy 203.112547 85.480702) (xy 202.725748 85.403763) (xy 202.99936 85.375005) (xy 203.000733 85.375)
(xy 232.773084 85.375)
)
)
(filled_polygon
(pts
(xy 238.979645 101.305026) (xy 238.866122 101.418549) (xy 238.6275 101.418549) (xy 238.539914 101.427175) (xy 238.455694 101.452723)
(xy 238.378076 101.494211) (xy 238.323624 101.538899) (xy 238.335 101.481708) (xy 238.335 101.378292) (xy 238.314824 101.276863)
(xy 238.275249 101.181319) (xy 238.217794 101.095332) (xy 238.144668 101.022206) (xy 238.058681 100.964751) (xy 237.963137 100.925176)
(xy 237.861708 100.905) (xy 237.758292 100.905) (xy 237.656863 100.925176) (xy 237.561319 100.964751) (xy 237.475332 101.022206)
(xy 237.402206 101.095332) (xy 237.344751 101.181319) (xy 237.305176 101.276863) (xy 237.285 101.378292) (xy 237.285 101.481708)
(xy 237.300827 101.561275) (xy 237.3 101.562283) (xy 237.289956 101.550044) (xy 237.221924 101.494211) (xy 237.175 101.469129)
(xy 237.175 99.50038)
)
)
)
(zone (net 2) (net_name GND) (layer In1.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2)
(fill yes (arc_segments 16) (thermal_gap 0.2) (thermal_bridge_width 0.25))
(polygon
(pts
(xy 199.25 84) (xy 250.75 84) (xy 250.75 115.75) (xy 199.25 115.75)
)
)
(filled_polygon
(pts
(xy 232.727523 85.399353) (xy 232.681842 85.436842) (xy 232.644353 85.482523) (xy 232.616496 85.53464) (xy 232.599341 85.59119)
(xy 232.593549 85.65) (xy 232.593549 87.35) (xy 232.599341 87.40881) (xy 232.616496 87.46536) (xy 232.644353 87.517477)
(xy 232.681842 87.563158) (xy 232.727523 87.600647) (xy 232.77964 87.628504) (xy 232.83619 87.645659) (xy 232.895 87.651451)
(xy 234.595 87.651451) (xy 234.65381 87.645659) (xy 234.71036 87.628504) (xy 234.762477 87.600647) (xy 234.808158 87.563158)
(xy 234.845647 87.517477) (xy 234.873504 87.46536) (xy 234.890659 87.40881) (xy 234.896451 87.35) (xy 234.896451 85.65)
(xy 234.890659 85.59119) (xy 234.873504 85.53464) (xy 234.845647 85.482523) (xy 234.808158 85.436842) (xy 234.762477 85.399353)
(xy 234.716916 85.375) (xy 236.046052 85.375) (xy 235.949557 85.394194) (xy 235.740271 85.480884) (xy 235.551918 85.606737)
(xy 235.391737 85.766918) (xy 235.265884 85.955271) (xy 235.179194 86.164557) (xy 235.135 86.386735) (xy 235.135 86.613265)
(xy 235.179194 86.835443) (xy 235.265884 87.044729) (xy 235.391737 87.233082) (xy 235.551918 87.393263) (xy 235.740271 87.519116)
(xy 235.949557 87.605806) (xy 236.171735 87.65) (xy 236.398265 87.65) (xy 236.620443 87.605806) (xy 236.829729 87.519116)
(xy 237.018082 87.393263) (xy 237.178263 87.233082) (xy 237.304116 87.044729) (xy 237.390806 86.835443) (xy 237.435 86.613265)
(xy 237.435 86.386735) (xy 237.390806 86.164557) (xy 237.304116 85.955271) (xy 237.178263 85.766918) (xy 237.018082 85.606737)
(xy 236.829729 85.480884) (xy 236.620443 85.394194) (xy 236.523948 85.375) (xy 238.586052 85.375) (xy 238.489557 85.394194)
(xy 238.280271 85.480884) (xy 238.091918 85.606737) (xy 237.931737 85.766918) (xy 237.805884 85.955271) (xy 237.719194 86.164557)
(xy 237.675 86.386735) (xy 237.675 86.613265) (xy 237.719194 86.835443) (xy 237.805884 87.044729) (xy 237.931737 87.233082)
(xy 238.091918 87.393263) (xy 238.280271 87.519116) (xy 238.489557 87.605806) (xy 238.711735 87.65) (xy 238.938265 87.65)
(xy 239.160443 87.605806) (xy 239.369729 87.519116) (xy 239.558082 87.393263) (xy 239.718263 87.233082) (xy 239.844116 87.044729)
(xy 239.930806 86.835443) (xy 239.975 86.613265) (xy 239.975 86.386735) (xy 239.930806 86.164557) (xy 239.844116 85.955271)
(xy 239.718263 85.766918) (xy 239.558082 85.606737) (xy 239.369729 85.480884) (xy 239.160443 85.394194) (xy 239.063948 85.375)
(xy 241.126052 85.375) (xy 241.029557 85.394194) (xy 240.820271 85.480884) (xy 240.631918 85.606737) (xy 240.471737 85.766918)
(xy 240.345884 85.955271) (xy 240.259194 86.164557) (xy 240.215 86.386735) (xy 240.215 86.613265) (xy 240.259194 86.835443)
(xy 240.345884 87.044729) (xy 240.471737 87.233082) (xy 240.631918 87.393263) (xy 240.820271 87.519116) (xy 241.029557 87.605806)
(xy 241.251735 87.65) (xy 241.478265 87.65) (xy 241.700443 87.605806) (xy 241.909729 87.519116) (xy 242.098082 87.393263)
(xy 242.258263 87.233082) (xy 242.384116 87.044729) (xy 242.470806 86.835443) (xy 242.496842 86.704549) (xy 242.773337 86.704549)
(xy 242.834987 86.921395) (xy 242.937757 87.122047) (xy 243.077698 87.298794) (xy 243.249431 87.444844) (xy 243.446357 87.554584)
(xy 243.660909 87.623797) (xy 243.700451 87.631662) (xy 243.88 87.574709) (xy 243.88 86.525) (xy 243.93 86.525)
(xy 243.93 87.574709) (xy 244.109549 87.631662) (xy 244.149091 87.623797) (xy 244.363643 87.554584) (xy 244.560569 87.444844)
(xy 244.732302 87.298794) (xy 244.872243 87.122047) (xy 244.975013 86.921395) (xy 245.036663 86.704549) (xy 244.979729 86.525)
(xy 243.93 86.525) (xy 243.88 86.525) (xy 242.830271 86.525) (xy 242.773337 86.704549) (xy 242.496842 86.704549)
(xy 242.515 86.613265) (xy 242.515 86.386735) (xy 242.470806 86.164557) (xy 242.384116 85.955271) (xy 242.258263 85.766918)
(xy 242.098082 85.606737) (xy 241.909729 85.480884) (xy 241.700443 85.394194) (xy 241.603948 85.375) (xy 243.666957 85.375)
(xy 243.660909 85.376203) (xy 243.446357 85.445416) (xy 243.249431 85.555156) (xy 243.077698 85.701206) (xy 242.937757 85.877953)
(xy 242.834987 86.078605) (xy 242.773337 86.295451) (xy 242.830271 86.475) (xy 243.88 86.475) (xy 243.88 86.455)
(xy 243.93 86.455) (xy 243.93 86.475) (xy 244.979729 86.475) (xy 245.036663 86.295451) (xy 244.975013 86.078605)
(xy 244.872243 85.877953) (xy 244.732302 85.701206) (xy 244.560569 85.555156) (xy 244.363643 85.445416) (xy 244.149091 85.376203)
(xy 244.143043 85.375) (xy 246.981662 85.375) (xy 247.2745 85.403713) (xy 246.887453 85.480702) (xy 246.505277 85.639004)
(xy 246.161328 85.868823) (xy 245.868823 86.161328) (xy 245.639004 86.505277) (xy 245.480702 86.887453) (xy 245.4 87.293168)
(xy 245.4 87.706832) (xy 245.480702 88.112547) (xy 245.639004 88.494723) (xy 245.868823 88.838672) (xy 246.161328 89.131177)
(xy 246.505277 89.360996) (xy 246.875477 89.514337) (xy 246.722531 89.59232) (xy 246.682085 89.619343) (xy 246.582738 89.797383)
(xy 247.4 90.614645) (xy 248.217262 89.797383) (xy 248.117915 89.619343) (xy 247.984624 89.544744) (xy 248.112547 89.519298)
(xy 248.494723 89.360996) (xy 248.838672 89.131177) (xy 249.131177 88.838672) (xy 249.360996 88.494723) (xy 249.519298 88.112547)
(xy 249.596237 87.725748) (xy 249.624995 87.99936) (xy 249.625 88.000733) (xy 249.625001 111.981652) (xy 249.596287 112.2745)
(xy 249.519298 111.887453) (xy 249.360996 111.505277) (xy 249.131177 111.161328) (xy 248.838672 110.868823) (xy 248.494723 110.639004)
(xy 248.112547 110.480702) (xy 247.706832 110.4) (xy 247.293168 110.4) (xy 246.887453 110.480702) (xy 246.505277 110.639004)
(xy 246.161328 110.868823) (xy 245.868823 111.161328) (xy 245.639004 111.505277) (xy 245.480702 111.887453) (xy 245.4 112.293168)
(xy 245.4 112.706832) (xy 245.480702 113.112547) (xy 245.639004 113.494723) (xy 245.868823 113.838672) (xy 246.161328 114.131177)
(xy 246.505277 114.360996) (xy 246.887453 114.519298) (xy 247.274252 114.596237) (xy 247.00064 114.624995) (xy 246.999267 114.625)
(xy 203.018337 114.625) (xy 202.7255 114.596287) (xy 203.112547 114.519298) (xy 203.494723 114.360996) (xy 203.838672 114.131177)
(xy 204.131177 113.838672) (xy 204.360996 113.494723) (xy 204.363553 113.488549) (xy 223.785338 113.488549) (xy 223.793203 113.528091)
(xy 223.862416 113.742643) (xy 223.972156 113.939569) (xy 224.118206 114.111302) (xy 224.294953 114.251243) (xy 224.495605 114.354013)
(xy 224.712451 114.415663) (xy 224.892 114.358729) (xy 224.892 113.309) (xy 224.942 113.309) (xy 224.942 114.358729)
(xy 225.121549 114.415663) (xy 225.338395 114.354013) (xy 225.539047 114.251243) (xy 225.715794 114.111302) (xy 225.861844 113.939569)
(xy 225.971584 113.742643) (xy 226.040797 113.528091) (xy 226.048662 113.488549) (xy 225.991709 113.309) (xy 224.942 113.309)
(xy 224.892 113.309) (xy 223.842291 113.309) (xy 223.785338 113.488549) (xy 204.363553 113.488549) (xy 204.519298 113.112547)
(xy 204.525881 113.079451) (xy 223.785338 113.079451) (xy 223.842291 113.259) (xy 224.892 113.259) (xy 224.892 112.209271)
(xy 224.942 112.209271) (xy 224.942 113.259) (xy 225.991709 113.259) (xy 226.048662 113.079451) (xy 226.040797 113.039909)
(xy 225.971584 112.825357) (xy 225.861844 112.628431) (xy 225.715794 112.456698) (xy 225.539047 112.316757) (xy 225.338395 112.213987)
(xy 225.121549 112.152337) (xy 224.942 112.209271) (xy 224.892 112.209271) (xy 224.712451 112.152337) (xy 224.495605 112.213987)
(xy 224.294953 112.316757) (xy 224.118206 112.456698) (xy 223.972156 112.628431) (xy 223.862416 112.825357) (xy 223.793203 113.039909)
(xy 223.785338 113.079451) (xy 204.525881 113.079451) (xy 204.6 112.706832) (xy 204.6 112.293168) (xy 204.519298 111.887453)
(xy 204.360996 111.505277) (xy 204.131177 111.161328) (xy 203.838672 110.868823) (xy 203.494723 110.639004) (xy 203.112547 110.480702)
(xy 203.100648 110.478335) (xy 205.8346 110.478335) (xy 205.8346 110.704865) (xy 205.878794 110.927043) (xy 205.965484 111.136329)
(xy 206.091337 111.324682) (xy 206.251518 111.484863) (xy 206.439871 111.610716) (xy 206.649157 111.697406) (xy 206.871335 111.7416)
(xy 207.097865 111.7416) (xy 207.320043 111.697406) (xy 207.529329 111.610716) (xy 207.717682 111.484863) (xy 207.877863 111.324682)
(xy 208.003716 111.136329) (xy 208.090406 110.927043) (xy 208.116442 110.796149) (xy 208.392937 110.796149) (xy 208.454587 111.012995)
(xy 208.557357 111.213647) (xy 208.697298 111.390394) (xy 208.869031 111.536444) (xy 209.065957 111.646184) (xy 209.280509 111.715397)
(xy 209.320051 111.723262) (xy 209.4996 111.666309) (xy 209.4996 110.6166) (xy 209.5496 110.6166) (xy 209.5496 111.666309)
(xy 209.729149 111.723262) (xy 209.768691 111.715397) (xy 209.983243 111.646184) (xy 210.180169 111.536444) (xy 210.351902 111.390394)
(xy 210.491843 111.213647) (xy 210.594613 111.012995) (xy 210.656263 110.796149) (xy 210.599329 110.6166) (xy 209.5496 110.6166)
(xy 209.4996 110.6166) (xy 208.449871 110.6166) (xy 208.392937 110.796149) (xy 208.116442 110.796149) (xy 208.1346 110.704865)
(xy 208.1346 110.478335) (xy 208.116443 110.387051) (xy 208.392937 110.387051) (xy 208.449871 110.5666) (xy 209.4996 110.5666)
(xy 209.4996 109.516891) (xy 209.5496 109.516891) (xy 209.5496 110.5666) (xy 210.599329 110.5666) (xy 210.627317 110.478335)
(xy 210.9146 110.478335) (xy 210.9146 110.704865) (xy 210.958794 110.927043) (xy 211.045484 111.136329) (xy 211.171337 111.324682)
(xy 211.331518 111.484863) (xy 211.519871 111.610716) (xy 211.729157 111.697406) (xy 211.951335 111.7416) (xy 212.177865 111.7416)
(xy 212.400043 111.697406) (xy 212.609329 111.610716) (xy 212.797682 111.484863) (xy 212.957863 111.324682) (xy 213.083716 111.136329)
(xy 213.170406 110.927043) (xy 213.2146 110.704865) (xy 213.2146 110.478335) (xy 213.4546 110.478335) (xy 213.4546 110.704865)
(xy 213.498794 110.927043) (xy 213.585484 111.136329) (xy 213.711337 111.324682) (xy 213.871518 111.484863) (xy 214.059871 111.610716)
(xy 214.269157 111.697406) (xy 214.491335 111.7416) (xy 214.717865 111.7416) (xy 214.940043 111.697406) (xy 215.149329 111.610716)
(xy 215.337682 111.484863) (xy 215.497863 111.324682) (xy 215.623716 111.136329) (xy 215.710406 110.927043) (xy 215.7546 110.704865)
(xy 215.7546 110.478335) (xy 215.9946 110.478335) (xy 215.9946 110.704865) (xy 216.038794 110.927043) (xy 216.125484 111.136329)
(xy 216.251337 111.324682) (xy 216.411518 111.484863) (xy 216.599871 111.610716) (xy 216.809157 111.697406) (xy 217.031335 111.7416)
(xy 217.257865 111.7416) (xy 217.480043 111.697406) (xy 217.689329 111.610716) (xy 217.877682 111.484863) (xy 218.037863 111.324682)
(xy 218.163716 111.136329) (xy 218.250406 110.927043) (xy 218.2946 110.704865) (xy 218.2946 110.478335) (xy 218.5346 110.478335)
(xy 218.5346 110.704865) (xy 218.578794 110.927043) (xy 218.665484 111.136329) (xy 218.791337 111.324682) (xy 218.951518 111.484863)
(xy 219.139871 111.610716) (xy 219.349157 111.697406) (xy 219.571335 111.7416) (xy 219.797865 111.7416) (xy 220.020043 111.697406)
(xy 220.229329 111.610716) (xy 220.417682 111.484863) (xy 220.577863 111.324682) (xy 220.703716 111.136329) (xy 220.790406 110.927043)
(xy 220.8346 110.704865) (xy 220.8346 110.478335) (xy 220.790406 110.256157) (xy 220.703716 110.046871) (xy 220.601572 109.894)
(xy 223.765549 109.894) (xy 223.765549 111.594) (xy 223.771341 111.65281) (xy 223.788496 111.70936) (xy 223.816353 111.761477)
(xy 223.853842 111.807158) (xy 223.899523 111.844647) (xy 223.95164 111.872504) (xy 224.00819 111.889659) (xy 224.067 111.895451)
(xy 225.767 111.895451) (xy 225.82581 111.889659) (xy 225.88236 111.872504) (xy 225.934477 111.844647) (xy 225.980158 111.807158)
(xy 226.017647 111.761477) (xy 226.045504 111.70936) (xy 226.062659 111.65281) (xy 226.068451 111.594) (xy 226.068451 110.478335)
(xy 228.70476 110.478335) (xy 228.70476 110.704865) (xy 228.748954 110.927043) (xy 228.835644 111.136329) (xy 228.961497 111.324682)
(xy 229.121678 111.484863) (xy 229.310031 111.610716) (xy 229.519317 111.697406) (xy 229.741495 111.7416) (xy 229.968025 111.7416)
(xy 230.190203 111.697406) (xy 230.399489 111.610716) (xy 230.587842 111.484863) (xy 230.748023 111.324682) (xy 230.873876 111.136329)
(xy 230.960566 110.927043) (xy 230.986602 110.796149) (xy 231.263097 110.796149) (xy 231.324747 111.012995) (xy 231.427517 111.213647)
(xy 231.567458 111.390394) (xy 231.739191 111.536444) (xy 231.936117 111.646184) (xy 232.150669 111.715397) (xy 232.190211 111.723262)
(xy 232.36976 111.666309) (xy 232.36976 110.6166) (xy 232.41976 110.6166) (xy 232.41976 111.666309) (xy 232.599309 111.723262)
(xy 232.638851 111.715397) (xy 232.853403 111.646184) (xy 233.050329 111.536444) (xy 233.222062 111.390394) (xy 233.362003 111.213647)
(xy 233.464773 111.012995) (xy 233.526423 110.796149) (xy 233.469489 110.6166) (xy 232.41976 110.6166) (xy 232.36976 110.6166)
(xy 231.320031 110.6166) (xy 231.263097 110.796149) (xy 230.986602 110.796149) (xy 231.00476 110.704865) (xy 231.00476 110.478335)
(xy 230.986603 110.387051) (xy 231.263097 110.387051) (xy 231.320031 110.5666) (xy 232.36976 110.5666) (xy 232.36976 109.516891)
(xy 232.41976 109.516891) (xy 232.41976 110.5666) (xy 233.469489 110.5666) (xy 233.497477 110.478335) (xy 233.78476 110.478335)
(xy 233.78476 110.704865) (xy 233.828954 110.927043) (xy 233.915644 111.136329) (xy 234.041497 111.324682) (xy 234.201678 111.484863)
(xy 234.390031 111.610716) (xy 234.599317 111.697406) (xy 234.821495 111.7416) (xy 235.048025 111.7416) (xy 235.270203 111.697406)
(xy 235.479489 111.610716) (xy 235.667842 111.484863) (xy 235.828023 111.324682) (xy 235.953876 111.136329) (xy 236.040566 110.927043)
(xy 236.08476 110.704865) (xy 236.08476 110.478335) (xy 236.32476 110.478335) (xy 236.32476 110.704865) (xy 236.368954 110.927043)
(xy 236.455644 111.136329) (xy 236.581497 111.324682) (xy 236.741678 111.484863) (xy 236.930031 111.610716) (xy 237.139317 111.697406)
(xy 237.361495 111.7416) (xy 237.588025 111.7416) (xy 237.810203 111.697406) (xy 238.019489 111.610716) (xy 238.207842 111.484863)
(xy 238.368023 111.324682) (xy 238.493876 111.136329) (xy 238.580566 110.927043) (xy 238.62476 110.704865) (xy 238.62476 110.478335)
(xy 238.86476 110.478335) (xy 238.86476 110.704865) (xy 238.908954 110.927043) (xy 238.995644 111.136329) (xy 239.121497 111.324682)
(xy 239.281678 111.484863) (xy 239.470031 111.610716) (xy 239.679317 111.697406) (xy 239.901495 111.7416) (xy 240.128025 111.7416)
(xy 240.350203 111.697406) (xy 240.559489 111.610716) (xy 240.747842 111.484863) (xy 240.908023 111.324682) (xy 241.033876 111.136329)
(xy 241.120566 110.927043) (xy 241.16476 110.704865) (xy 241.16476 110.478335) (xy 241.40476 110.478335) (xy 241.40476 110.704865)
(xy 241.448954 110.927043) (xy 241.535644 111.136329) (xy 241.661497 111.324682) (xy 241.821678 111.484863) (xy 242.010031 111.610716)
(xy 242.219317 111.697406) (xy 242.441495 111.7416) (xy 242.668025 111.7416) (xy 242.890203 111.697406) (xy 243.099489 111.610716)
(xy 243.287842 111.484863) (xy 243.448023 111.324682) (xy 243.573876 111.136329) (xy 243.660566 110.927043) (xy 243.70476 110.704865)
(xy 243.70476 110.478335) (xy 243.660566 110.256157) (xy 243.573876 110.046871) (xy 243.448023 109.858518) (xy 243.287842 109.698337)
(xy 243.099489 109.572484) (xy 242.890203 109.485794) (xy 242.668025 109.4416) (xy 242.441495 109.4416) (xy 242.219317 109.485794)
(xy 242.010031 109.572484) (xy 241.821678 109.698337) (xy 241.661497 109.858518) (xy 241.535644 110.046871) (xy 241.448954 110.256157)
(xy 241.40476 110.478335) (xy 241.16476 110.478335) (xy 241.120566 110.256157) (xy 241.033876 110.046871) (xy 240.908023 109.858518)
(xy 240.747842 109.698337) (xy 240.559489 109.572484) (xy 240.350203 109.485794) (xy 240.128025 109.4416) (xy 239.901495 109.4416)
(xy 239.679317 109.485794) (xy 239.470031 109.572484) (xy 239.281678 109.698337) (xy 239.121497 109.858518) (xy 238.995644 110.046871)
(xy 238.908954 110.256157) (xy 238.86476 110.478335) (xy 238.62476 110.478335) (xy 238.580566 110.256157) (xy 238.493876 110.046871)
(xy 238.368023 109.858518) (xy 238.207842 109.698337) (xy 238.019489 109.572484) (xy 237.810203 109.485794) (xy 237.588025 109.4416)
(xy 237.361495 109.4416) (xy 237.139317 109.485794) (xy 236.930031 109.572484) (xy 236.741678 109.698337) (xy 236.581497 109.858518)
(xy 236.455644 110.046871) (xy 236.368954 110.256157) (xy 236.32476 110.478335) (xy 236.08476 110.478335) (xy 236.040566 110.256157)
(xy 235.953876 110.046871) (xy 235.828023 109.858518) (xy 235.667842 109.698337) (xy 235.479489 109.572484) (xy 235.270203 109.485794)
(xy 235.048025 109.4416) (xy 234.821495 109.4416) (xy 234.599317 109.485794) (xy 234.390031 109.572484) (xy 234.201678 109.698337)
(xy 234.041497 109.858518) (xy 233.915644 110.046871) (xy 233.828954 110.256157) (xy 233.78476 110.478335) (xy 233.497477 110.478335)
(xy 233.526423 110.387051) (xy 233.464773 110.170205) (xy 233.362003 109.969553) (xy 233.222062 109.792806) (xy 233.050329 109.646756)
(xy 232.853403 109.537016) (xy 232.638851 109.467803) (xy 232.599309 109.459938) (xy 232.41976 109.516891) (xy 232.36976 109.516891)
(xy 232.190211 109.459938) (xy 232.150669 109.467803) (xy 231.936117 109.537016) (xy 231.739191 109.646756) (xy 231.567458 109.792806)
(xy 231.427517 109.969553) (xy 231.324747 110.170205) (xy 231.263097 110.387051) (xy 230.986603 110.387051) (xy 230.960566 110.256157)
(xy 230.873876 110.046871) (xy 230.748023 109.858518) (xy 230.587842 109.698337) (xy 230.399489 109.572484) (xy 230.190203 109.485794)
(xy 229.968025 109.4416) (xy 229.741495 109.4416) (xy 229.519317 109.485794) (xy 229.310031 109.572484) (xy 229.121678 109.698337)
(xy 228.961497 109.858518) (xy 228.835644 110.046871) (xy 228.748954 110.256157) (xy 228.70476 110.478335) (xy 226.068451 110.478335)
(xy 226.068451 109.894) (xy 226.062659 109.83519) (xy 226.045504 109.77864) (xy 226.017647 109.726523) (xy 225.980158 109.680842)
(xy 225.934477 109.643353) (xy 225.88236 109.615496) (xy 225.82581 109.598341) (xy 225.767 109.592549) (xy 224.067 109.592549)
(xy 224.00819 109.598341) (xy 223.95164 109.615496) (xy 223.899523 109.643353) (xy 223.853842 109.680842) (xy 223.816353 109.726523)
(xy 223.788496 109.77864) (xy 223.771341 109.83519) (xy 223.765549 109.894) (xy 220.601572 109.894) (xy 220.577863 109.858518)
(xy 220.417682 109.698337) (xy 220.229329 109.572484) (xy 220.020043 109.485794) (xy 219.797865 109.4416) (xy 219.571335 109.4416)
(xy 219.349157 109.485794) (xy 219.139871 109.572484) (xy 218.951518 109.698337) (xy 218.791337 109.858518) (xy 218.665484 110.046871)
(xy 218.578794 110.256157) (xy 218.5346 110.478335) (xy 218.2946 110.478335) (xy 218.250406 110.256157) (xy 218.163716 110.046871)
(xy 218.037863 109.858518) (xy 217.877682 109.698337) (xy 217.689329 109.572484) (xy 217.480043 109.485794) (xy 217.257865 109.4416)
(xy 217.031335 109.4416) (xy 216.809157 109.485794) (xy 216.599871 109.572484) (xy 216.411518 109.698337) (xy 216.251337 109.858518)
(xy 216.125484 110.046871) (xy 216.038794 110.256157) (xy 215.9946 110.478335) (xy 215.7546 110.478335) (xy 215.710406 110.256157)
(xy 215.623716 110.046871) (xy 215.497863 109.858518) (xy 215.337682 109.698337) (xy 215.149329 109.572484) (xy 214.940043 109.485794)
(xy 214.717865 109.4416) (xy 214.491335 109.4416) (xy 214.269157 109.485794) (xy 214.059871 109.572484) (xy 213.871518 109.698337)
(xy 213.711337 109.858518) (xy 213.585484 110.046871) (xy 213.498794 110.256157) (xy 213.4546 110.478335) (xy 213.2146 110.478335)
(xy 213.170406 110.256157) (xy 213.083716 110.046871) (xy 212.957863 109.858518) (xy 212.797682 109.698337) (xy 212.609329 109.572484)
(xy 212.400043 109.485794) (xy 212.177865 109.4416) (xy 211.951335 109.4416) (xy 211.729157 109.485794) (xy 211.519871 109.572484)
(xy 211.331518 109.698337) (xy 211.171337 109.858518) (xy 211.045484 110.046871) (xy 210.958794 110.256157) (xy 210.9146 110.478335)
(xy 210.627317 110.478335) (xy 210.656263 110.387051) (xy 210.594613 110.170205) (xy 210.491843 109.969553) (xy 210.351902 109.792806)
(xy 210.180169 109.646756) (xy 209.983243 109.537016) (xy 209.768691 109.467803) (xy 209.729149 109.459938) (xy 209.5496 109.516891)
(xy 209.4996 109.516891) (xy 209.320051 109.459938) (xy 209.280509 109.467803) (xy 209.065957 109.537016) (xy 208.869031 109.646756)
(xy 208.697298 109.792806) (xy 208.557357 109.969553) (xy 208.454587 110.170205) (xy 208.392937 110.387051) (xy 208.116443 110.387051)
(xy 208.090406 110.256157) (xy 208.003716 110.046871) (xy 207.877863 109.858518) (xy 207.717682 109.698337) (xy 207.529329 109.572484)
(xy 207.320043 109.485794) (xy 207.097865 109.4416) (xy 206.871335 109.4416) (xy 206.649157 109.485794) (xy 206.439871 109.572484)
(xy 206.251518 109.698337) (xy 206.091337 109.858518) (xy 205.965484 110.046871) (xy 205.878794 110.256157) (xy 205.8346 110.478335)
(xy 203.100648 110.478335) (xy 202.706832 110.4) (xy 202.293168 110.4) (xy 201.887453 110.480702) (xy 201.505277 110.639004)
(xy 201.161328 110.868823) (xy 200.868823 111.161328) (xy 200.639004 111.505277) (xy 200.480702 111.887453) (xy 200.403763 112.274252)
(xy 200.375005 112.00064) (xy 200.375 111.999267) (xy 200.375 107.938335) (xy 205.8346 107.938335) (xy 205.8346 108.164865)
(xy 205.878794 108.387043) (xy 205.965484 108.596329) (xy 206.091337 108.784682) (xy 206.251518 108.944863) (xy 206.439871 109.070716)
(xy 206.649157 109.157406) (xy 206.871335 109.2016) (xy 207.097865 109.2016) (xy 207.320043 109.157406) (xy 207.529329 109.070716)
(xy 207.717682 108.944863) (xy 207.877863 108.784682) (xy 208.003716 108.596329) (xy 208.090406 108.387043) (xy 208.116442 108.256149)
(xy 208.392937 108.256149) (xy 208.454587 108.472995) (xy 208.557357 108.673647) (xy 208.697298 108.850394) (xy 208.869031 108.996444)
(xy 209.065957 109.106184) (xy 209.280509 109.175397) (xy 209.320051 109.183262) (xy 209.4996 109.126309) (xy 209.4996 108.0766)
(xy 209.5496 108.0766) (xy 209.5496 109.126309) (xy 209.729149 109.183262) (xy 209.768691 109.175397) (xy 209.983243 109.106184)
(xy 210.180169 108.996444) (xy 210.351902 108.850394) (xy 210.491843 108.673647) (xy 210.594613 108.472995) (xy 210.656263 108.256149)
(xy 210.599329 108.0766) (xy 209.5496 108.0766) (xy 209.4996 108.0766) (xy 208.449871 108.0766) (xy 208.392937 108.256149)
(xy 208.116442 108.256149) (xy 208.1346 108.164865) (xy 208.1346 107.938335) (xy 208.116443 107.847051) (xy 208.392937 107.847051)
(xy 208.449871 108.0266) (xy 209.4996 108.0266) (xy 209.4996 106.976891) (xy 209.5496 106.976891) (xy 209.5496 108.0266)
(xy 210.599329 108.0266) (xy 210.627317 107.938335) (xy 210.9146 107.938335) (xy 210.9146 108.164865) (xy 210.958794 108.387043)
(xy 211.045484 108.596329) (xy 211.171337 108.784682) (xy 211.331518 108.944863) (xy 211.519871 109.070716) (xy 211.729157 109.157406)
(xy 211.951335 109.2016) (xy 212.177865 109.2016) (xy 212.400043 109.157406) (xy 212.609329 109.070716) (xy 212.797682 108.944863)
(xy 212.957863 108.784682) (xy 213.083716 108.596329) (xy 213.170406 108.387043) (xy 213.2146 108.164865) (xy 213.2146 107.938335)
(xy 213.4546 107.938335) (xy 213.4546 108.164865) (xy 213.498794 108.387043) (xy 213.585484 108.596329) (xy 213.711337 108.784682)
(xy 213.871518 108.944863) (xy 214.059871 109.070716) (xy 214.269157 109.157406) (xy 214.491335 109.2016) (xy 214.717865 109.2016)
(xy 214.940043 109.157406) (xy 215.149329 109.070716) (xy 215.337682 108.944863) (xy 215.497863 108.784682) (xy 215.623716 108.596329)
(xy 215.710406 108.387043) (xy 215.7546 108.164865) (xy 215.7546 107.938335) (xy 215.9946 107.938335) (xy 215.9946 108.164865)
(xy 216.038794 108.387043) (xy 216.125484 108.596329) (xy 216.251337 108.784682) (xy 216.411518 108.944863) (xy 216.599871 109.070716)
(xy 216.809157 109.157406) (xy 217.031335 109.2016) (xy 217.257865 109.2016) (xy 217.480043 109.157406) (xy 217.689329 109.070716)
(xy 217.877682 108.944863) (xy 218.037863 108.784682) (xy 218.163716 108.596329) (xy 218.250406 108.387043) (xy 218.2946 108.164865)
(xy 218.2946 107.938335) (xy 218.250406 107.716157) (xy 218.163716 107.506871) (xy 218.037863 107.318518) (xy 217.920945 107.2016)
(xy 218.533149 107.2016) (xy 218.533149 108.9016) (xy 218.538941 108.96041) (xy 218.556096 109.01696) (xy 218.583953 109.069077)
(xy 218.621442 109.114758) (xy 218.667123 109.152247) (xy 218.71924 109.180104) (xy 218.77579 109.197259) (xy 218.8346 109.203051)
(xy 220.5346 109.203051) (xy 220.59341 109.197259) (xy 220.64996 109.180104) (xy 220.702077 109.152247) (xy 220.747758 109.114758)
(xy 220.785247 109.069077) (xy 220.813104 109.01696) (xy 220.830259 108.96041) (xy 220.836051 108.9016) (xy 220.836051 107.938335)
(xy 228.70476 107.938335) (xy 228.70476 108.164865) (xy 228.748954 108.387043) (xy 228.835644 108.596329) (xy 228.961497 108.784682)
(xy 229.121678 108.944863) (xy 229.310031 109.070716) (xy 229.519317 109.157406) (xy 229.741495 109.2016) (xy 229.968025 109.2016)
(xy 230.190203 109.157406) (xy 230.399489 109.070716) (xy 230.587842 108.944863) (xy 230.748023 108.784682) (xy 230.873876 108.596329)
(xy 230.960566 108.387043) (xy 230.986602 108.256149) (xy 231.263097 108.256149) (xy 231.324747 108.472995) (xy 231.427517 108.673647)
(xy 231.567458 108.850394) (xy 231.739191 108.996444) (xy 231.936117 109.106184) (xy 232.150669 109.175397) (xy 232.190211 109.183262)
(xy 232.36976 109.126309) (xy 232.36976 108.0766) (xy 232.41976 108.0766) (xy 232.41976 109.126309) (xy 232.599309 109.183262)
(xy 232.638851 109.175397) (xy 232.853403 109.106184) (xy 233.050329 108.996444) (xy 233.222062 108.850394) (xy 233.362003 108.673647)
(xy 233.464773 108.472995) (xy 233.526423 108.256149) (xy 233.469489 108.0766) (xy 232.41976 108.0766) (xy 232.36976 108.0766)
(xy 231.320031 108.0766) (xy 231.263097 108.256149) (xy 230.986602 108.256149) (xy 231.00476 108.164865) (xy 231.00476 107.938335)
(xy 230.986603 107.847051) (xy 231.263097 107.847051) (xy 231.320031 108.0266) (xy 232.36976 108.0266) (xy 232.36976 106.976891)
(xy 232.41976 106.976891) (xy 232.41976 108.0266) (xy 233.469489 108.0266) (xy 233.497477 107.938335) (xy 233.78476 107.938335)
(xy 233.78476 108.164865) (xy 233.828954 108.387043) (xy 233.915644 108.596329) (xy 234.041497 108.784682) (xy 234.201678 108.944863)
(xy 234.390031 109.070716) (xy 234.599317 109.157406) (xy 234.821495 109.2016) (xy 235.048025 109.2016) (xy 235.270203 109.157406)
(xy 235.479489 109.070716) (xy 235.667842 108.944863) (xy 235.828023 108.784682) (xy 235.953876 108.596329) (xy 236.040566 108.387043)
(xy 236.08476 108.164865) (xy 236.08476 107.938335) (xy 236.32476 107.938335) (xy 236.32476 108.164865) (xy 236.368954 108.387043)
(xy 236.455644 108.596329) (xy 236.581497 108.784682) (xy 236.741678 108.944863) (xy 236.930031 109.070716) (xy 237.139317 109.157406)
(xy 237.361495 109.2016) (xy 237.588025 109.2016) (xy 237.810203 109.157406) (xy 238.019489 109.070716) (xy 238.207842 108.944863)
(xy 238.368023 108.784682) (xy 238.493876 108.596329) (xy 238.580566 108.387043) (xy 238.62476 108.164865) (xy 238.62476 107.938335)
(xy 238.86476 107.938335) (xy 238.86476 108.164865) (xy 238.908954 108.387043) (xy 238.995644 108.596329) (xy 239.121497 108.784682)
(xy 239.281678 108.944863) (xy 239.470031 109.070716) (xy 239.679317 109.157406) (xy 239.901495 109.2016) (xy 240.128025 109.2016)
(xy 240.350203 109.157406) (xy 240.559489 109.070716) (xy 240.747842 108.944863) (xy 240.908023 108.784682) (xy 241.033876 108.596329)
(xy 241.120566 108.387043) (xy 241.16476 108.164865) (xy 241.16476 107.938335) (xy 241.120566 107.716157) (xy 241.033876 107.506871)
(xy 240.908023 107.318518) (xy 240.791105 107.2016) (xy 241.403309 107.2016) (xy 241.403309 108.9016) (xy 241.409101 108.96041)
(xy 241.426256 109.01696) (xy 241.454113 109.069077) (xy 241.491602 109.114758) (xy 241.537283 109.152247) (xy 241.5894 109.180104)
(xy 241.64595 109.197259) (xy 241.70476 109.203051) (xy 243.40476 109.203051) (xy 243.46357 109.197259) (xy 243.52012 109.180104)
(xy 243.572237 109.152247) (xy 243.617918 109.114758) (xy 243.655407 109.069077) (xy 243.683264 109.01696) (xy 243.700419 108.96041)
(xy 243.706211 108.9016) (xy 243.706211 107.202617) (xy 246.582738 107.202617) (xy 246.682085 107.380657) (xy 246.896951 107.500912)
(xy 247.131149 107.576937) (xy 247.375678 107.605812) (xy 247.621143 107.586426) (xy 247.858108 107.519526) (xy 248.077469 107.40768)
(xy 248.117915 107.380657) (xy 248.217262 107.202617) (xy 247.4 106.385355) (xy 246.582738 107.202617) (xy 243.706211 107.202617)
(xy 243.706211 107.2016) (xy 243.700419 107.14279) (xy 243.683264 107.08624) (xy 243.655407 107.034123) (xy 243.617918 106.988442)
(xy 243.572237 106.950953) (xy 243.52012 106.923096) (xy 243.46357 106.905941) (xy 243.40476 106.900149) (xy 242.996112 106.900149)
(xy 243.177469 106.80768) (xy 243.217915 106.780657) (xy 243.317262 106.602617) (xy 242.5 105.785355) (xy 241.682738 106.602617)
(xy 241.782085 106.780657) (xy 241.995588 106.900149) (xy 241.70476 106.900149) (xy 241.64595 106.905941) (xy 241.5894 106.923096)
(xy 241.537283 106.950953) (xy 241.491602 106.988442) (xy 241.454113 107.034123) (xy 241.426256 107.08624) (xy 241.409101 107.14279)
(xy 241.403309 107.2016) (xy 240.791105 107.2016) (xy 240.747842 107.158337) (xy 240.559489 107.032484) (xy 240.350203 106.945794)
(xy 240.128025 106.9016) (xy 239.901495 106.9016) (xy 239.679317 106.945794) (xy 239.470031 107.032484) (xy 239.281678 107.158337)
(xy 239.121497 107.318518) (xy 238.995644 107.506871) (xy 238.908954 107.716157) (xy 238.86476 107.938335) (xy 238.62476 107.938335)
(xy 238.580566 107.716157) (xy 238.493876 107.506871) (xy 238.368023 107.318518) (xy 238.207842 107.158337) (xy 238.019489 107.032484)
(xy 237.810203 106.945794) (xy 237.588025 106.9016) (xy 237.361495 106.9016) (xy 237.139317 106.945794) (xy 236.930031 107.032484)
(xy 236.741678 107.158337) (xy 236.581497 107.318518) (xy 236.455644 107.506871) (xy 236.368954 107.716157) (xy 236.32476 107.938335)
(xy 236.08476 107.938335) (xy 236.040566 107.716157) (xy 235.953876 107.506871) (xy 235.828023 107.318518) (xy 235.667842 107.158337)
(xy 235.479489 107.032484) (xy 235.270203 106.945794) (xy 235.048025 106.9016) (xy 234.821495 106.9016) (xy 234.599317 106.945794)
(xy 234.390031 107.032484) (xy 234.201678 107.158337) (xy 234.041497 107.318518) (xy 233.915644 107.506871) (xy 233.828954 107.716157)
(xy 233.78476 107.938335) (xy 233.497477 107.938335) (xy 233.526423 107.847051) (xy 233.464773 107.630205) (xy 233.362003 107.429553)
(xy 233.222062 107.252806) (xy 233.050329 107.106756) (xy 232.853403 106.997016) (xy 232.638851 106.927803) (xy 232.599309 106.919938)
(xy 232.41976 106.976891) (xy 232.36976 106.976891) (xy 232.190211 106.919938) (xy 232.150669 106.927803) (xy 231.936117 106.997016)
(xy 231.739191 107.106756) (xy 231.567458 107.252806) (xy 231.427517 107.429553) (xy 231.324747 107.630205) (xy 231.263097 107.847051)
(xy 230.986603 107.847051) (xy 230.960566 107.716157) (xy 230.873876 107.506871) (xy 230.748023 107.318518) (xy 230.587842 107.158337)
(xy 230.399489 107.032484) (xy 230.190203 106.945794) (xy 229.968025 106.9016) (xy 229.741495 106.9016) (xy 229.519317 106.945794)
(xy 229.310031 107.032484) (xy 229.121678 107.158337) (xy 228.961497 107.318518) (xy 228.835644 107.506871) (xy 228.748954 107.716157)
(xy 228.70476 107.938335) (xy 220.836051 107.938335) (xy 220.836051 107.2016) (xy 220.830259 107.14279) (xy 220.813104 107.08624)
(xy 220.785247 107.034123) (xy 220.747758 106.988442) (xy 220.702077 106.950953) (xy 220.64996 106.923096) (xy 220.59341 106.905941)
(xy 220.5346 106.900149) (xy 218.8346 106.900149) (xy 218.77579 106.905941) (xy 218.71924 106.923096) (xy 218.667123 106.950953)
(xy 218.621442 106.988442) (xy 218.583953 107.034123) (xy 218.556096 107.08624) (xy 218.538941 107.14279) (xy 218.533149 107.2016)
(xy 217.920945 107.2016) (xy 217.877682 107.158337) (xy 217.689329 107.032484) (xy 217.480043 106.945794) (xy 217.257865 106.9016)
(xy 217.031335 106.9016) (xy 216.809157 106.945794) (xy 216.599871 107.032484) (xy 216.411518 107.158337) (xy 216.251337 107.318518)
(xy 216.125484 107.506871) (xy 216.038794 107.716157) (xy 215.9946 107.938335) (xy 215.7546 107.938335) (xy 215.710406 107.716157)
(xy 215.623716 107.506871) (xy 215.497863 107.318518) (xy 215.337682 107.158337) (xy 215.149329 107.032484) (xy 214.940043 106.945794)
(xy 214.717865 106.9016) (xy 214.491335 106.9016) (xy 214.269157 106.945794) (xy 214.059871 107.032484) (xy 213.871518 107.158337)
(xy 213.711337 107.318518) (xy 213.585484 107.506871) (xy 213.498794 107.716157) (xy 213.4546 107.938335) (xy 213.2146 107.938335)
(xy 213.170406 107.716157) (xy 213.083716 107.506871) (xy 212.957863 107.318518) (xy 212.797682 107.158337) (xy 212.609329 107.032484)
(xy 212.400043 106.945794) (xy 212.177865 106.9016) (xy 211.951335 106.9016) (xy 211.729157 106.945794) (xy 211.519871 107.032484)
(xy 211.331518 107.158337) (xy 211.171337 107.318518) (xy 211.045484 107.506871) (xy 210.958794 107.716157) (xy 210.9146 107.938335)
(xy 210.627317 107.938335) (xy 210.656263 107.847051) (xy 210.594613 107.630205) (xy 210.491843 107.429553) (xy 210.351902 107.252806)
(xy 210.180169 107.106756) (xy 209.983243 106.997016) (xy 209.768691 106.927803) (xy 209.729149 106.919938) (xy 209.5496 106.976891)
(xy 209.4996 106.976891) (xy 209.320051 106.919938) (xy 209.280509 106.927803) (xy 209.065957 106.997016) (xy 208.869031 107.106756)
(xy 208.697298 107.252806) (xy 208.557357 107.429553) (xy 208.454587 107.630205) (xy 208.392937 107.847051) (xy 208.116443 107.847051)
(xy 208.090406 107.716157) (xy 208.003716 107.506871) (xy 207.877863 107.318518) (xy 207.717682 107.158337) (xy 207.529329 107.032484)
(xy 207.320043 106.945794) (xy 207.097865 106.9016) (xy 206.871335 106.9016) (xy 206.649157 106.945794) (xy 206.439871 107.032484)
(xy 206.251518 107.158337) (xy 206.091337 107.318518) (xy 205.965484 107.506871) (xy 205.878794 107.716157) (xy 205.8346 107.938335)
(xy 200.375 107.938335) (xy 200.375 106.468292) (xy 215.935 106.468292) (xy 215.935 106.571708) (xy 215.955176 106.673137)
(xy 215.994751 106.768681) (xy 216.052206 106.854668) (xy 216.125332 106.927794) (xy 216.211319 106.985249) (xy 216.306863 107.024824)
(xy 216.408292 107.045) (xy 216.511708 107.045) (xy 216.613137 107.024824) (xy 216.708681 106.985249) (xy 216.794668 106.927794)
(xy 216.867794 106.854668) (xy 216.925249 106.768681) (xy 216.964824 106.673137) (xy 216.985 106.571708) (xy 216.985 106.468292)
(xy 216.964824 106.366863) (xy 216.925249 106.271319) (xy 216.867794 106.185332) (xy 216.794668 106.112206) (xy 216.785794 106.106277)
(xy 216.793137 106.104816) (xy 216.888681 106.065241) (xy 216.97391 106.008292) (xy 217.865 106.008292) (xy 217.865 106.111708)
(xy 217.885176 106.213137) (xy 217.924751 106.308681) (xy 217.982206 106.394668) (xy 218.055332 106.467794) (xy 218.141319 106.525249)
(xy 218.236863 106.564824) (xy 218.338292 106.585) (xy 218.441708 106.585) (xy 218.543137 106.564824) (xy 218.638681 106.525249)
(xy 218.724668 106.467794) (xy 218.797794 106.394668) (xy 218.855249 106.308681) (xy 218.894824 106.213137) (xy 218.897776 106.198292)
(xy 220.885 106.198292) (xy 220.885 106.301708) (xy 220.905176 106.403137) (xy 220.944751 106.498681) (xy 221.002206 106.584668)
(xy 221.075332 106.657794) (xy 221.161319 106.715249) (xy 221.256863 106.754824) (xy 221.358292 106.775) (xy 221.461708 106.775)
(xy 221.563137 106.754824) (xy 221.658681 106.715249) (xy 221.744668 106.657794) (xy 221.817794 106.584668) (xy 221.875249 106.498681)
(xy 221.914824 106.403137) (xy 221.935 106.301708) (xy 221.935 106.198292) (xy 221.914824 106.096863) (xy 221.875249 106.001319)
(xy 221.817794 105.915332) (xy 221.744668 105.842206) (xy 221.658681 105.784751) (xy 221.563137 105.745176) (xy 221.465117 105.725678)
(xy 241.244188 105.725678) (xy 241.263574 105.971143) (xy 241.330474 106.208108) (xy 241.44232 106.427469) (xy 241.469343 106.467915)
(xy 241.647383 106.567262) (xy 242.464645 105.75) (xy 242.535355 105.75) (xy 243.352617 106.567262) (xy 243.530657 106.467915)
(xy 243.610263 106.325678) (xy 246.144188 106.325678) (xy 246.163574 106.571143) (xy 246.230474 106.808108) (xy 246.34232 107.027469)
(xy 246.369343 107.067915) (xy 246.547383 107.167262) (xy 247.364645 106.35) (xy 247.435355 106.35) (xy 248.252617 107.167262)
(xy 248.430657 107.067915) (xy 248.550912 106.853049) (xy 248.626937 106.618851) (xy 248.655812 106.374322) (xy 248.636426 106.128857)
(xy 248.569526 105.891892) (xy 248.45768 105.672531) (xy 248.430657 105.632085) (xy 248.252617 105.532738) (xy 247.435355 106.35)
(xy 247.364645 106.35) (xy 246.547383 105.532738) (xy 246.369343 105.632085) (xy 246.249088 105.846951) (xy 246.173063 106.081149)
(xy 246.144188 106.325678) (xy 243.610263 106.325678) (xy 243.650912 106.253049) (xy 243.726937 106.018851) (xy 243.755812 105.774322)
(xy 243.736426 105.528857) (xy 243.727541 105.497383) (xy 246.582738 105.497383) (xy 247.4 106.314645) (xy 248.217262 105.497383)
(xy 248.117915 105.319343) (xy 247.903049 105.199088) (xy 247.668851 105.123063) (xy 247.424322 105.094188) (xy 247.178857 105.113574)
(xy 246.941892 105.180474) (xy 246.722531 105.29232) (xy 246.682085 105.319343) (xy 246.582738 105.497383) (xy 243.727541 105.497383)
(xy 243.669526 105.291892) (xy 243.55768 105.072531) (xy 243.530657 105.032085) (xy 243.352617 104.932738) (xy 242.535355 105.75)
(xy 242.464645 105.75) (xy 241.647383 104.932738) (xy 241.469343 105.032085) (xy 241.349088 105.246951) (xy 241.273063 105.481149)
(xy 241.244188 105.725678) (xy 221.465117 105.725678) (xy 221.461708 105.725) (xy 221.358292 105.725) (xy 221.256863 105.745176)
(xy 221.161319 105.784751) (xy 221.075332 105.842206) (xy 221.002206 105.915332) (xy 220.944751 106.001319) (xy 220.905176 106.096863)
(xy 220.885 106.198292) (xy 218.897776 106.198292) (xy 218.915 106.111708) (xy 218.915 106.008292) (xy 218.894824 105.906863)
(xy 218.855249 105.811319) (xy 218.797794 105.725332) (xy 218.724668 105.652206) (xy 218.638681 105.594751) (xy 218.543137 105.555176)
(xy 218.441708 105.535) (xy 218.338292 105.535) (xy 218.236863 105.555176) (xy 218.141319 105.594751) (xy 218.055332 105.652206)
(xy 217.982206 105.725332) (xy 217.924751 105.811319) (xy 217.885176 105.906863) (xy 217.865 106.008292) (xy 216.97391 106.008292)
(xy 216.974668 106.007786) (xy 217.047794 105.93466) (xy 217.105249 105.848673) (xy 217.144824 105.753129) (xy 217.161051 105.671552)
(xy 217.178292 105.674982) (xy 217.281708 105.674982) (xy 217.383137 105.654806) (xy 217.478681 105.615231) (xy 217.564668 105.557776)
(xy 217.637794 105.48465) (xy 217.695249 105.398663) (xy 217.734824 105.303119) (xy 217.755 105.20169) (xy 217.755 105.098274)
(xy 217.743549 105.040709) (xy 217.773137 105.034824) (xy 217.868681 104.995249) (xy 217.954668 104.937794) (xy 218.027794 104.864668)
(xy 218.085249 104.778681) (xy 218.124824 104.683137) (xy 218.141701 104.598292) (xy 218.595033 104.598292) (xy 218.595033 104.701708)
(xy 218.615209 104.803137) (xy 218.654784 104.898681) (xy 218.712239 104.984668) (xy 218.785365 105.057794) (xy 218.871352 105.115249)
(xy 218.966896 105.154824) (xy 219.068325 105.175) (xy 219.171741 105.175) (xy 219.27317 105.154824) (xy 219.368714 105.115249)
(xy 219.454701 105.057794) (xy 219.527827 104.984668) (xy 219.585282 104.898681) (xy 219.624857 104.803137) (xy 219.645033 104.701708)
(xy 219.645033 104.598292) (xy 219.624857 104.496863) (xy 219.585282 104.401319) (xy 219.527827 104.315332) (xy 219.454701 104.242206)
(xy 219.368714 104.184751) (xy 219.27317 104.145176) (xy 219.171741 104.125) (xy 219.068325 104.125) (xy 218.966896 104.145176)
(xy 218.871352 104.184751) (xy 218.785365 104.242206) (xy 218.712239 104.315332) (xy 218.654784 104.401319) (xy 218.615209 104.496863)
(xy 218.595033 104.598292) (xy 218.141701 104.598292) (xy 218.145 104.581708) (xy 218.145 104.478292) (xy 218.124824 104.376863)
(xy 218.085249 104.281319) (xy 218.027794 104.195332) (xy 217.954668 104.122206) (xy 217.868681 104.064751) (xy 217.773137 104.025176)
(xy 217.671708 104.005) (xy 217.568292 104.005) (xy 217.466863 104.025176) (xy 217.371319 104.064751) (xy 217.285332 104.122206)
(xy 217.212206 104.195332) (xy 217.154751 104.281319) (xy 217.115176 104.376863) (xy 217.095 104.478292) (xy 217.095 104.581708)
(xy 217.106451 104.639273) (xy 217.076863 104.645158) (xy 216.981319 104.684733) (xy 216.895332 104.742188) (xy 216.822206 104.815314)
(xy 216.764751 104.901301) (xy 216.725176 104.996845) (xy 216.708949 105.078422) (xy 216.691708 105.074992) (xy 216.588292 105.074992)
(xy 216.486863 105.095168) (xy 216.391319 105.134743) (xy 216.305332 105.192198) (xy 216.232206 105.265324) (xy 216.174751 105.351311)
(xy 216.135176 105.446855) (xy 216.115 105.548284) (xy 216.115 105.6517) (xy 216.135176 105.753129) (xy 216.174751 105.848673)
(xy 216.232206 105.93466) (xy 216.305332 106.007786) (xy 216.314206 106.013715) (xy 216.306863 106.015176) (xy 216.211319 106.054751)
(xy 216.125332 106.112206) (xy 216.052206 106.185332) (xy 215.994751 106.271319) (xy 215.955176 106.366863) (xy 215.935 106.468292)
(xy 200.375 106.468292) (xy 200.375 103.228292) (xy 204.745 103.228292) (xy 204.745 103.331708) (xy 204.765176 103.433137)
(xy 204.804751 103.528681) (xy 204.862206 103.614668) (xy 204.935332 103.687794) (xy 205.021319 103.745249) (xy 205.116863 103.784824)
(xy 205.218292 103.805) (xy 205.321708 103.805) (xy 205.423137 103.784824) (xy 205.518681 103.745249) (xy 205.604668 103.687794)
(xy 205.677794 103.614668) (xy 205.715463 103.558292) (xy 220.805 103.558292) (xy 220.805 103.661708) (xy 220.825176 103.763137)
(xy 220.864751 103.858681) (xy 220.922206 103.944668) (xy 220.995332 104.017794) (xy 221.081319 104.075249) (xy 221.176863 104.114824)
(xy 221.278292 104.135) (xy 221.381708 104.135) (xy 221.483137 104.114824) (xy 221.578681 104.075249) (xy 221.664668 104.017794)
(xy 221.737794 103.944668) (xy 221.795249 103.858681) (xy 221.834824 103.763137) (xy 221.855 103.661708) (xy 221.855 103.558292)
(xy 221.834824 103.456863) (xy 221.795249 103.361319) (xy 221.737794 103.275332) (xy 221.664668 103.202206) (xy 221.658811 103.198292)
(xy 231.924924 103.198292) (xy 231.924924 103.301708) (xy 231.9451 103.403137) (xy 231.984675 103.498681) (xy 232.04213 103.584668)
(xy 232.115256 103.657794) (xy 232.201243 103.715249) (xy 232.262286 103.740533) (xy 232.242753 103.78769) (xy 232.222577 103.889119)
(xy 232.222577 103.992535) (xy 232.242753 104.093964) (xy 232.282328 104.189508) (xy 232.339783 104.275495) (xy 232.364721 104.300433)
(xy 232.331294 104.381134) (xy 232.311118 104.482563) (xy 232.311118 104.585979) (xy 232.331112 104.686494) (xy 232.301684 104.706157)
(xy 232.228558 104.779283) (xy 232.171103 104.86527) (xy 232.131528 104.960814) (xy 232.111352 105.062243) (xy 232.111352 105.165659)
(xy 232.131528 105.267088) (xy 232.171103 105.362632) (xy 232.228558 105.448619) (xy 232.301684 105.521745) (xy 232.387671 105.5792)
(xy 232.483215 105.618775) (xy 232.584644 105.638951) (xy 232.68806 105.638951) (xy 232.789489 105.618775) (xy 232.885033 105.5792)
(xy 232.97102 105.521745) (xy 233.044146 105.448619) (xy 233.101601 105.362632) (xy 233.141176 105.267088) (xy 233.161352 105.165659)
(xy 233.161352 105.062243) (xy 233.141358 104.961728) (xy 233.170786 104.942065) (xy 233.215468 104.897383) (xy 241.682738 104.897383)
(xy 242.5 105.714645) (xy 243.317262 104.897383) (xy 243.217915 104.719343) (xy 243.003049 104.599088) (xy 242.768851 104.523063)
(xy 242.524322 104.494188) (xy 242.278857 104.513574) (xy 242.041892 104.580474) (xy 241.822531 104.69232) (xy 241.782085 104.719343)
(xy 241.682738 104.897383) (xy 233.215468 104.897383) (xy 233.243912 104.868939) (xy 233.301367 104.782952) (xy 233.340942 104.687408)
(xy 233.361118 104.585979) (xy 233.361118 104.482563) (xy 233.340942 104.381134) (xy 233.301367 104.28559) (xy 233.243912 104.199603)
(xy 233.218974 104.174665) (xy 233.252401 104.093964) (xy 233.272577 103.992535) (xy 233.272577 103.889119) (xy 233.252401 103.78769)
(xy 233.212826 103.692146) (xy 233.155371 103.606159) (xy 233.097504 103.548292) (xy 236.275 103.548292) (xy 236.275 103.651708)
(xy 236.295176 103.753137) (xy 236.334751 103.848681) (xy 236.392206 103.934668) (xy 236.465332 104.007794) (xy 236.551319 104.065249)
(xy 236.646863 104.104824) (xy 236.748292 104.125) (xy 236.851708 104.125) (xy 236.953137 104.104824) (xy 237.048681 104.065249)
(xy 237.134668 104.007794) (xy 237.207794 103.934668) (xy 237.265249 103.848681) (xy 237.304824 103.753137) (xy 237.325 103.651708)
(xy 237.325 103.548292) (xy 237.304824 103.446863) (xy 237.265249 103.351319) (xy 237.207794 103.265332) (xy 237.134668 103.192206)
(xy 237.048681 103.134751) (xy 236.953137 103.095176) (xy 236.851708 103.075) (xy 236.748292 103.075) (xy 236.646863 103.095176)
(xy 236.551319 103.134751) (xy 236.465332 103.192206) (xy 236.392206 103.265332) (xy 236.334751 103.351319) (xy 236.295176 103.446863)
(xy 236.275 103.548292) (xy 233.097504 103.548292) (xy 233.082245 103.533033) (xy 232.996258 103.475578) (xy 232.935215 103.450294)
(xy 232.954748 103.403137) (xy 232.974924 103.301708) (xy 232.974924 103.198292) (xy 232.954748 103.096863) (xy 232.915173 103.001319)
(xy 232.857718 102.915332) (xy 232.784592 102.842206) (xy 232.698605 102.784751) (xy 232.603061 102.745176) (xy 232.501632 102.725)
(xy 232.398216 102.725) (xy 232.296787 102.745176) (xy 232.201243 102.784751) (xy 232.115256 102.842206) (xy 232.04213 102.915332)
(xy 231.984675 103.001319) (xy 231.9451 103.096863) (xy 231.924924 103.198292) (xy 221.658811 103.198292) (xy 221.578681 103.144751)
(xy 221.483137 103.105176) (xy 221.381708 103.085) (xy 221.278292 103.085) (xy 221.176863 103.105176) (xy 221.081319 103.144751)
(xy 220.995332 103.202206) (xy 220.922206 103.275332) (xy 220.864751 103.361319) (xy 220.825176 103.456863) (xy 220.805 103.558292)
(xy 205.715463 103.558292) (xy 205.735249 103.528681) (xy 205.774824 103.433137) (xy 205.795 103.331708) (xy 205.795 103.228292)
(xy 205.774824 103.126863) (xy 205.735249 103.031319) (xy 205.677794 102.945332) (xy 205.604668 102.872206) (xy 205.518681 102.814751)
(xy 205.423137 102.775176) (xy 205.321708 102.755) (xy 205.218292 102.755) (xy 205.116863 102.775176) (xy 205.021319 102.814751)
(xy 204.935332 102.872206) (xy 204.862206 102.945332) (xy 204.804751 103.031319) (xy 204.765176 103.126863) (xy 204.745 103.228292)
(xy 200.375 103.228292) (xy 200.375 102.598292) (xy 239.74997 102.598292) (xy 239.74997 102.701708) (xy 239.770146 102.803137)
(xy 239.809721 102.898681) (xy 239.867176 102.984668) (xy 239.940302 103.057794) (xy 240.026289 103.115249) (xy 240.121833 103.154824)
(xy 240.223262 103.175) (xy 240.326678 103.175) (xy 240.428107 103.154824) (xy 240.523651 103.115249) (xy 240.609638 103.057794)
(xy 240.682764 102.984668) (xy 240.740219 102.898681) (xy 240.779794 102.803137) (xy 240.79997 102.701708) (xy 240.79997 102.598292)
(xy 240.779794 102.496863) (xy 240.740219 102.401319) (xy 240.682764 102.315332) (xy 240.609638 102.242206) (xy 240.523651 102.184751)
(xy 240.428107 102.145176) (xy 240.326678 102.125) (xy 240.223262 102.125) (xy 240.121833 102.145176) (xy 240.026289 102.184751)
(xy 239.940302 102.242206) (xy 239.867176 102.315332) (xy 239.809721 102.401319) (xy 239.770146 102.496863) (xy 239.74997 102.598292)
(xy 200.375 102.598292) (xy 200.375 101.428581) (xy 200.400288 101.479226) (xy 200.508426 101.618718) (xy 200.6417 101.734433)
(xy 200.794988 101.821924) (xy 200.962399 101.877829) (xy 201.1375 101.9) (xy 201.4875 101.9) (xy 201.4875 101.025)
(xy 201.5375 101.025) (xy 201.5375 101.9) (xy 201.8875 101.9) (xy 202.062601 101.877829) (xy 202.230012 101.821924)
(xy 202.3833 101.734433) (xy 202.516574 101.618718) (xy 202.624712 101.479226) (xy 202.703559 101.321318) (xy 202.715594 101.278292)
(xy 221.805 101.278292) (xy 221.805 101.381708) (xy 221.825176 101.483137) (xy 221.864751 101.578681) (xy 221.922206 101.664668)
(xy 221.995332 101.737794) (xy 222.081319 101.795249) (xy 222.176863 101.834824) (xy 222.278292 101.855) (xy 222.381708 101.855)
(xy 222.483137 101.834824) (xy 222.578681 101.795249) (xy 222.664668 101.737794) (xy 222.737794 101.664668) (xy 222.795249 101.578681)
(xy 222.834824 101.483137) (xy 222.855 101.381708) (xy 222.855 101.278292) (xy 222.834824 101.176863) (xy 222.795249 101.081319)
(xy 222.769299 101.042483) (xy 222.805249 100.988681) (xy 222.844824 100.893137) (xy 222.865 100.791708) (xy 222.865 100.688292)
(xy 222.844824 100.586863) (xy 222.805249 100.491319) (xy 222.747794 100.405332) (xy 222.674668 100.332206) (xy 222.588681 100.274751)
(xy 222.493137 100.235176) (xy 222.391708 100.215) (xy 222.288292 100.215) (xy 222.186863 100.235176) (xy 222.091319 100.274751)
(xy 222.005332 100.332206) (xy 221.932206 100.405332) (xy 221.874751 100.491319) (xy 221.835176 100.586863) (xy 221.815 100.688292)
(xy 221.815 100.791708) (xy 221.835176 100.893137) (xy 221.874751 100.988681) (xy 221.900701 101.027517) (xy 221.864751 101.081319)
(xy 221.825176 101.176863) (xy 221.805 101.278292) (xy 202.715594 101.278292) (xy 202.747166 101.165429) (xy 202.687121 101.025)
(xy 201.5375 101.025) (xy 201.4875 101.025) (xy 201.4675 101.025) (xy 201.4675 100.975) (xy 201.4875 100.975)
(xy 201.4875 100.1) (xy 201.5375 100.1) (xy 201.5375 100.975) (xy 202.687121 100.975) (xy 202.747166 100.834571)
(xy 202.707482 100.692705) (xy 203.55515 100.692705) (xy 203.627508 100.847704) (xy 203.804128 100.945542) (xy 203.996441 101.007044)
(xy 204.197057 101.029845) (xy 204.398268 101.01307) (xy 204.592339 100.957362) (xy 204.771812 100.864864) (xy 204.797492 100.847704)
(xy 204.86985 100.692705) (xy 204.2125 100.035355) (xy 203.55515 100.692705) (xy 202.707482 100.692705) (xy 202.703559 100.678682)
(xy 202.624712 100.520774) (xy 202.516574 100.381282) (xy 202.3833 100.265567) (xy 202.230012 100.178076) (xy 202.062601 100.122171)
(xy 201.8875 100.1) (xy 201.5375 100.1) (xy 201.4875 100.1) (xy 201.1375 100.1) (xy 200.962399 100.122171)
(xy 200.794988 100.178076) (xy 200.6417 100.265567) (xy 200.508426 100.381282) (xy 200.400288 100.520774) (xy 200.375 100.571419)
(xy 200.375 99.984557) (xy 203.182655 99.984557) (xy 203.19943 100.185768) (xy 203.255138 100.379839) (xy 203.347636 100.559312)
(xy 203.364796 100.584992) (xy 203.519795 100.65735) (xy 204.177145 100) (xy 204.247855 100) (xy 204.905205 100.65735)
(xy 205.060204 100.584992) (xy 205.158042 100.408372) (xy 205.219544 100.216059) (xy 205.227246 100.148292) (xy 230.725 100.148292)
(xy 230.725 100.251708) (xy 230.745176 100.353137) (xy 230.784751 100.448681) (xy 230.842206 100.534668) (xy 230.915332 100.607794)
(xy 230.978497 100.65) (xy 230.915332 100.692206) (xy 230.842206 100.765332) (xy 230.784751 100.851319) (xy 230.745176 100.946863)
(xy 230.725 101.048292) (xy 230.725 101.151708) (xy 230.745176 101.253137) (xy 230.784751 101.348681) (xy 230.842206 101.434668)
(xy 230.915332 101.507794) (xy 231.001319 101.565249) (xy 231.096863 101.604824) (xy 231.198292 101.625) (xy 231.301708 101.625)
(xy 231.403137 101.604824) (xy 231.498681 101.565249) (xy 231.584668 101.507794) (xy 231.657794 101.434668) (xy 231.695463 101.378292)
(xy 237.285 101.378292) (xy 237.285 101.481708) (xy 237.305176 101.583137) (xy 237.344751 101.678681) (xy 237.402206 101.764668)
(xy 237.475332 101.837794) (xy 237.561319 101.895249) (xy 237.656863 101.934824) (xy 237.758292 101.955) (xy 237.861708 101.955)
(xy 237.963137 101.934824) (xy 238.058681 101.895249) (xy 238.144668 101.837794) (xy 238.217794 101.764668) (xy 238.275249 101.678681)
(xy 238.314824 101.583137) (xy 238.335 101.481708) (xy 238.335 101.378292) (xy 238.314824 101.276863) (xy 238.307391 101.258917)
(xy 238.990574 101.258917) (xy 238.990574 101.362333) (xy 239.01075 101.463762) (xy 239.050325 101.559306) (xy 239.10778 101.645293)
(xy 239.180906 101.718419) (xy 239.266893 101.775874) (xy 239.362437 101.815449) (xy 239.463866 101.835625) (xy 239.567282 101.835625)
(xy 239.668711 101.815449) (xy 239.764255 101.775874) (xy 239.841137 101.724503) (xy 239.873674 101.746243) (xy 239.969218 101.785818)
(xy 240.070647 101.805994) (xy 240.174063 101.805994) (xy 240.275492 101.785818) (xy 240.371036 101.746243) (xy 240.457023 101.688788)
(xy 240.530149 101.615662) (xy 240.587604 101.529675) (xy 240.627179 101.434131) (xy 240.647355 101.332702) (xy 240.647355 101.229286)
(xy 240.627179 101.127857) (xy 240.587604 101.032313) (xy 240.530149 100.946326) (xy 240.457023 100.8732) (xy 240.371036 100.815745)
(xy 240.275492 100.77617) (xy 240.174063 100.755994) (xy 240.070647 100.755994) (xy 239.969218 100.77617) (xy 239.873674 100.815745)
(xy 239.796792 100.867116) (xy 239.764255 100.845376) (xy 239.668711 100.805801) (xy 239.567282 100.785625) (xy 239.463866 100.785625)
(xy 239.362437 100.805801) (xy 239.266893 100.845376) (xy 239.180906 100.902831) (xy 239.10778 100.975957) (xy 239.050325 101.061944)
(xy 239.01075 101.157488) (xy 238.990574 101.258917) (xy 238.307391 101.258917) (xy 238.275249 101.181319) (xy 238.217794 101.095332)
(xy 238.144668 101.022206) (xy 238.058681 100.964751) (xy 237.963137 100.925176) (xy 237.861708 100.905) (xy 237.758292 100.905)
(xy 237.656863 100.925176) (xy 237.561319 100.964751) (xy 237.475332 101.022206) (xy 237.402206 101.095332) (xy 237.344751 101.181319)
(xy 237.305176 101.276863) (xy 237.285 101.378292) (xy 231.695463 101.378292) (xy 231.715249 101.348681) (xy 231.754824 101.253137)
(xy 231.775 101.151708) (xy 231.775 101.048292) (xy 231.754824 100.946863) (xy 231.715249 100.851319) (xy 231.657794 100.765332)
(xy 231.584668 100.692206) (xy 231.521503 100.65) (xy 231.584668 100.607794) (xy 231.657794 100.534668) (xy 231.715249 100.448681)
(xy 231.754824 100.353137) (xy 231.775 100.251708) (xy 231.775 100.148292) (xy 231.754824 100.046863) (xy 231.715249 99.951319)
(xy 231.657794 99.865332) (xy 231.584668 99.792206) (xy 231.498681 99.734751) (xy 231.403137 99.695176) (xy 231.301708 99.675)
(xy 231.198292 99.675) (xy 231.096863 99.695176) (xy 231.001319 99.734751) (xy 230.915332 99.792206) (xy 230.842206 99.865332)
(xy 230.784751 99.951319) (xy 230.745176 100.046863) (xy 230.725 100.148292) (xy 205.227246 100.148292) (xy 205.242345 100.015443)
(xy 205.22557 99.814232) (xy 205.169862 99.620161) (xy 205.077364 99.440688) (xy 205.060204 99.415008) (xy 204.905205 99.34265)
(xy 204.247855 100) (xy 204.177145 100) (xy 203.519795 99.34265) (xy 203.364796 99.415008) (xy 203.266958 99.591628)
(xy 203.205456 99.783941) (xy 203.182655 99.984557) (xy 200.375 99.984557) (xy 200.375 99.307295) (xy 203.55515 99.307295)
(xy 204.2125 99.964645) (xy 204.86985 99.307295) (xy 204.797492 99.152296) (xy 204.620872 99.054458) (xy 204.428559 98.992956)
(xy 204.227943 98.970155) (xy 204.026732 98.98693) (xy 203.832661 99.042638) (xy 203.653188 99.135136) (xy 203.627508 99.152296)
(xy 203.55515 99.307295) (xy 200.375 99.307295) (xy 200.375 98.7483) (xy 208.575 98.7483) (xy 208.575 98.851716)
(xy 208.595176 98.953145) (xy 208.634751 99.048689) (xy 208.692206 99.134676) (xy 208.765332 99.207802) (xy 208.851319 99.265257)
(xy 208.946863 99.304832) (xy 209.048292 99.325008) (xy 209.151708 99.325008) (xy 209.253137 99.304832) (xy 209.348681 99.265257)
(xy 209.434668 99.207802) (xy 209.507794 99.134676) (xy 209.565249 99.048689) (xy 209.604824 98.953145) (xy 209.625 98.851716)
(xy 209.625 98.7483) (xy 209.604824 98.646871) (xy 209.565249 98.551327) (xy 209.507794 98.46534) (xy 209.434668 98.392214)
(xy 209.348681 98.334759) (xy 209.253137 98.295184) (xy 209.151708 98.275008) (xy 209.048292 98.275008) (xy 208.946863 98.295184)
(xy 208.851319 98.334759) (xy 208.765332 98.392214) (xy 208.692206 98.46534) (xy 208.634751 98.551327) (xy 208.595176 98.646871)
(xy 208.575 98.7483) (xy 200.375 98.7483) (xy 200.375 98.258292) (xy 221.075 98.258292) (xy 221.075 98.361708)
(xy 221.095176 98.463137) (xy 221.134751 98.558681) (xy 221.16236 98.6) (xy 221.134751 98.641319) (xy 221.095176 98.736863)
(xy 221.075 98.838292) (xy 221.075 98.941708) (xy 221.095176 99.043137) (xy 221.134751 99.138681) (xy 221.192206 99.224668)
(xy 221.265332 99.297794) (xy 221.351319 99.355249) (xy 221.446863 99.394824) (xy 221.548292 99.415) (xy 221.651708 99.415)
(xy 221.753137 99.394824) (xy 221.848681 99.355249) (xy 221.934668 99.297794) (xy 222.007794 99.224668) (xy 222.065249 99.138681)
(xy 222.104824 99.043137) (xy 222.125 98.941708) (xy 222.125 98.838292) (xy 222.104824 98.736863) (xy 222.065249 98.641319)
(xy 222.03764 98.6) (xy 222.065249 98.558681) (xy 222.104824 98.463137) (xy 222.125 98.361708) (xy 222.125 98.258292)
(xy 222.104824 98.156863) (xy 222.065249 98.061319) (xy 222.007794 97.975332) (xy 221.934668 97.902206) (xy 221.848681 97.844751)
(xy 221.753137 97.805176) (xy 221.651708 97.785) (xy 221.548292 97.785) (xy 221.446863 97.805176) (xy 221.351319 97.844751)
(xy 221.265332 97.902206) (xy 221.192206 97.975332) (xy 221.134751 98.061319) (xy 221.095176 98.156863) (xy 221.075 98.258292)
(xy 200.375 98.258292) (xy 200.375 96.393231) (xy 205.169939 96.393231) (xy 205.169939 96.496647) (xy 205.190115 96.598076)
(xy 205.22969 96.69362) (xy 205.287145 96.779607) (xy 205.360271 96.852733) (xy 205.446258 96.910188) (xy 205.541802 96.949763)
(xy 205.590542 96.959458) (xy 205.600237 97.008198) (xy 205.639812 97.103742) (xy 205.697267 97.189729) (xy 205.770393 97.262855)
(xy 205.85638 97.32031) (xy 205.951924 97.359885) (xy 206.053353 97.380061) (xy 206.156769 97.380061) (xy 206.258198 97.359885)
(xy 206.353742 97.32031) (xy 206.439729 97.262855) (xy 206.512855 97.189729) (xy 206.57031 97.103742) (xy 206.609885 97.008198)
(xy 206.630061 96.906769) (xy 206.630061 96.803353) (xy 206.609885 96.701924) (xy 206.57031 96.60638) (xy 206.512855 96.520393)
(xy 206.490754 96.498292) (xy 226.075 96.498292) (xy 226.075 96.601708) (xy 226.095176 96.703137) (xy 226.134751 96.798681)
(xy 226.192206 96.884668) (xy 226.265332 96.957794) (xy 226.351319 97.015249) (xy 226.446863 97.054824) (xy 226.548292 97.075)
(xy 226.651708 97.075) (xy 226.753137 97.054824) (xy 226.848681 97.015249) (xy 226.934668 96.957794) (xy 227.007794 96.884668)
(xy 227.065249 96.798681) (xy 227.104824 96.703137) (xy 227.125 96.601708) (xy 227.125 96.548292) (xy 227.525 96.548292)
(xy 227.525 96.651708) (xy 227.545176 96.753137) (xy 227.584751 96.848681) (xy 227.642206 96.934668) (xy 227.715332 97.007794)
(xy 227.801319 97.065249) (xy 227.896863 97.104824) (xy 227.97672 97.120709) (xy 227.945176 97.196863) (xy 227.925 97.298292)
(xy 227.925 97.401708) (xy 227.945176 97.503137) (xy 227.984751 97.598681) (xy 228.042206 97.684668) (xy 228.115332 97.757794)
(xy 228.201319 97.815249) (xy 228.296863 97.854824) (xy 228.350276 97.865449) (xy 228.384751 97.948681) (xy 228.442206 98.034668)
(xy 228.515332 98.107794) (xy 228.601319 98.165249) (xy 228.696863 98.204824) (xy 228.798292 98.225) (xy 228.879633 98.225)
(xy 228.895176 98.303137) (xy 228.934751 98.398681) (xy 228.992206 98.484668) (xy 229.065332 98.557794) (xy 229.151319 98.615249)
(xy 229.246863 98.654824) (xy 229.348292 98.675) (xy 229.40422 98.675) (xy 229.395168 98.696855) (xy 229.374992 98.798284)
(xy 229.374992 98.9017) (xy 229.395168 99.003129) (xy 229.434743 99.098673) (xy 229.492198 99.18466) (xy 229.565324 99.257786)
(xy 229.651311 99.315241) (xy 229.746855 99.354816) (xy 229.800273 99.365442) (xy 229.834751 99.448681) (xy 229.892206 99.534668)
(xy 229.965332 99.607794) (xy 230.051319 99.665249) (xy 230.146863 99.704824) (xy 230.248292 99.725) (xy 230.351708 99.725)
(xy 230.453137 99.704824) (xy 230.548681 99.665249) (xy 230.634668 99.607794) (xy 230.707794 99.534668) (xy 230.765249 99.448681)
(xy 230.804824 99.353137) (xy 230.825 99.251708) (xy 230.825 99.148292) (xy 230.804824 99.046863) (xy 230.765249 98.951319)
(xy 230.707794 98.865332) (xy 230.634668 98.792206) (xy 230.548681 98.734751) (xy 230.453137 98.695176) (xy 230.399719 98.68455)
(xy 230.365241 98.601311) (xy 230.307786 98.515324) (xy 230.23466 98.442198) (xy 230.148673 98.384743) (xy 230.053129 98.345168)
(xy 229.9517 98.324992) (xy 229.895772 98.324992) (xy 229.904824 98.303137) (xy 229.925 98.201708) (xy 229.925 98.098292)
(xy 229.904824 97.996863) (xy 229.865249 97.901319) (xy 229.807794 97.815332) (xy 229.734668 97.742206) (xy 229.648681 97.684751)
(xy 229.553137 97.645176) (xy 229.451708 97.625) (xy 229.370367 97.625) (xy 229.354824 97.546863) (xy 229.315249 97.451319)
(xy 229.257794 97.365332) (xy 229.184668 97.292206) (xy 229.098681 97.234751) (xy 229.003137 97.195176) (xy 228.949724 97.184551)
(xy 228.915249 97.101319) (xy 228.879818 97.048292) (xy 233.425 97.048292) (xy 233.425 97.151708) (xy 233.445176 97.253137)
(xy 233.484751 97.348681) (xy 233.542206 97.434668) (xy 233.615332 97.507794) (xy 233.701319 97.565249) (xy 233.796863 97.604824)
(xy 233.898292 97.625) (xy 234.001708 97.625) (xy 234.103137 97.604824) (xy 234.198681 97.565249) (xy 234.284668 97.507794)
(xy 234.357794 97.434668) (xy 234.415249 97.348681) (xy 234.454824 97.253137) (xy 234.475 97.151708) (xy 234.475 97.048292)
(xy 234.454824 96.946863) (xy 234.415249 96.851319) (xy 234.357794 96.765332) (xy 234.284668 96.692206) (xy 234.198681 96.634751)
(xy 234.103137 96.595176) (xy 234.001708 96.575) (xy 233.898292 96.575) (xy 233.796863 96.595176) (xy 233.701319 96.634751)
(xy 233.615332 96.692206) (xy 233.542206 96.765332) (xy 233.484751 96.851319) (xy 233.445176 96.946863) (xy 233.425 97.048292)
(xy 228.879818 97.048292) (xy 228.857794 97.015332) (xy 228.784668 96.942206) (xy 228.698681 96.884751) (xy 228.603137 96.845176)
(xy 228.52328 96.829291) (xy 228.554824 96.753137) (xy 228.575 96.651708) (xy 228.575 96.548292) (xy 228.554824 96.446863)
(xy 228.515249 96.351319) (xy 228.457794 96.265332) (xy 228.384668 96.192206) (xy 228.298681 96.134751) (xy 228.203137 96.095176)
(xy 228.101708 96.075) (xy 227.998292 96.075) (xy 227.896863 96.095176) (xy 227.801319 96.134751) (xy 227.715332 96.192206)
(xy 227.642206 96.265332) (xy 227.584751 96.351319) (xy 227.545176 96.446863) (xy 227.525 96.548292) (xy 227.125 96.548292)
(xy 227.125 96.498292) (xy 227.104824 96.396863) (xy 227.065249 96.301319) (xy 227.007794 96.215332) (xy 226.934668 96.142206)
(xy 226.848681 96.084751) (xy 226.753137 96.045176) (xy 226.651708 96.025) (xy 226.548292 96.025) (xy 226.446863 96.045176)
(xy 226.351319 96.084751) (xy 226.265332 96.142206) (xy 226.192206 96.215332) (xy 226.134751 96.301319) (xy 226.095176 96.396863)
(xy 226.075 96.498292) (xy 206.490754 96.498292) (xy 206.439729 96.447267) (xy 206.353742 96.389812) (xy 206.258198 96.350237)
(xy 206.209458 96.340542) (xy 206.199763 96.291802) (xy 206.160188 96.196258) (xy 206.102733 96.110271) (xy 206.029607 96.037145)
(xy 205.94362 95.97969) (xy 205.848076 95.940115) (xy 205.746647 95.919939) (xy 205.643231 95.919939) (xy 205.541802 95.940115)
(xy 205.446258 95.97969) (xy 205.360271 96.037145) (xy 205.287145 96.110271) (xy 205.22969 96.196258) (xy 205.190115 96.291802)
(xy 205.169939 96.393231) (xy 200.375 96.393231) (xy 200.375 95.692705) (xy 203.55515 95.692705) (xy 203.627508 95.847704)
(xy 203.804128 95.945542) (xy 203.996441 96.007044) (xy 204.197057 96.029845) (xy 204.398268 96.01307) (xy 204.592339 95.957362)
(xy 204.771812 95.864864) (xy 204.797492 95.847704) (xy 204.86985 95.692705) (xy 204.2125 95.035355) (xy 203.55515 95.692705)
(xy 200.375 95.692705) (xy 200.375 94.984557) (xy 203.182655 94.984557) (xy 203.19943 95.185768) (xy 203.255138 95.379839)
(xy 203.347636 95.559312) (xy 203.364796 95.584992) (xy 203.519795 95.65735) (xy 204.177145 95) (xy 204.247855 95)
(xy 204.905205 95.65735) (xy 205.060204 95.584992) (xy 205.158042 95.408372) (xy 205.193245 95.298292) (xy 208.575 95.298292)
(xy 208.575 95.401708) (xy 208.595176 95.503137) (xy 208.634751 95.598681) (xy 208.692206 95.684668) (xy 208.765332 95.757794)
(xy 208.851319 95.815249) (xy 208.946863 95.854824) (xy 209.048292 95.875) (xy 209.151708 95.875) (xy 209.253137 95.854824)
(xy 209.348681 95.815249) (xy 209.434668 95.757794) (xy 209.507794 95.684668) (xy 209.532099 95.648292) (xy 212.525 95.648292)
(xy 212.525 95.751708) (xy 212.545176 95.853137) (xy 212.584751 95.948681) (xy 212.642206 96.034668) (xy 212.715332 96.107794)
(xy 212.801319 96.165249) (xy 212.896863 96.204824) (xy 212.998292 96.225) (xy 213.101708 96.225) (xy 213.203137 96.204824)
(xy 213.298681 96.165249) (xy 213.384668 96.107794) (xy 213.45 96.042462) (xy 213.515332 96.107794) (xy 213.601319 96.165249)
(xy 213.696863 96.204824) (xy 213.798292 96.225) (xy 213.901708 96.225) (xy 214.003137 96.204824) (xy 214.098681 96.165249)
(xy 214.184668 96.107794) (xy 214.257794 96.034668) (xy 214.315249 95.948681) (xy 214.354824 95.853137) (xy 214.375 95.751708)
(xy 214.375 95.648292) (xy 214.354824 95.546863) (xy 214.315249 95.451319) (xy 214.257794 95.365332) (xy 214.184668 95.292206)
(xy 214.098681 95.234751) (xy 214.003137 95.195176) (xy 213.901708 95.175) (xy 213.798292 95.175) (xy 213.696863 95.195176)
(xy 213.601319 95.234751) (xy 213.515332 95.292206) (xy 213.45 95.357538) (xy 213.384668 95.292206) (xy 213.298681 95.234751)
(xy 213.203137 95.195176) (xy 213.101708 95.175) (xy 212.998292 95.175) (xy 212.896863 95.195176) (xy 212.801319 95.234751)
(xy 212.715332 95.292206) (xy 212.642206 95.365332) (xy 212.584751 95.451319) (xy 212.545176 95.546863) (xy 212.525 95.648292)
(xy 209.532099 95.648292) (xy 209.565249 95.598681) (xy 209.604824 95.503137) (xy 209.625 95.401708) (xy 209.625 95.298292)
(xy 209.604824 95.196863) (xy 209.565249 95.101319) (xy 209.529818 95.048292) (xy 232.925 95.048292) (xy 232.925 95.151708)
(xy 232.945176 95.253137) (xy 232.984751 95.348681) (xy 233.042206 95.434668) (xy 233.115332 95.507794) (xy 233.201319 95.565249)
(xy 233.296863 95.604824) (xy 233.398292 95.625) (xy 233.501708 95.625) (xy 233.603137 95.604824) (xy 233.698681 95.565249)
(xy 233.784668 95.507794) (xy 233.857794 95.434668) (xy 233.915249 95.348681) (xy 233.954824 95.253137) (xy 233.975 95.151708)
(xy 233.975 95.048292) (xy 233.954824 94.946863) (xy 233.915249 94.851319) (xy 233.857794 94.765332) (xy 233.784668 94.692206)
(xy 233.698681 94.634751) (xy 233.603137 94.595176) (xy 233.501708 94.575) (xy 233.398292 94.575) (xy 233.296863 94.595176)
(xy 233.201319 94.634751) (xy 233.115332 94.692206) (xy 233.042206 94.765332) (xy 232.984751 94.851319) (xy 232.945176 94.946863)
(xy 232.925 95.048292) (xy 209.529818 95.048292) (xy 209.507794 95.015332) (xy 209.434668 94.942206) (xy 209.348681 94.884751)
(xy 209.253137 94.845176) (xy 209.151708 94.825) (xy 209.048292 94.825) (xy 208.946863 94.845176) (xy 208.851319 94.884751)
(xy 208.765332 94.942206) (xy 208.692206 95.015332) (xy 208.634751 95.101319) (xy 208.595176 95.196863) (xy 208.575 95.298292)
(xy 205.193245 95.298292) (xy 205.219544 95.216059) (xy 205.242345 95.015443) (xy 205.22557 94.814232) (xy 205.169862 94.620161)
(xy 205.077364 94.440688) (xy 205.060204 94.415008) (xy 204.905205 94.34265) (xy 204.247855 95) (xy 204.177145 95)
(xy 203.519795 94.34265) (xy 203.364796 94.415008) (xy 203.266958 94.591628) (xy 203.205456 94.783941) (xy 203.182655 94.984557)
(xy 200.375 94.984557) (xy 200.375 94.428581) (xy 200.400288 94.479226) (xy 200.508426 94.618718) (xy 200.6417 94.734433)
(xy 200.794988 94.821924) (xy 200.962399 94.877829) (xy 201.1375 94.9) (xy 201.4875 94.9) (xy 201.4875 94.025)
(xy 201.5375 94.025) (xy 201.5375 94.9) (xy 201.8875 94.9) (xy 202.062601 94.877829) (xy 202.230012 94.821924)
(xy 202.3833 94.734433) (xy 202.516574 94.618718) (xy 202.624712 94.479226) (xy 202.703559 94.321318) (xy 202.707481 94.307295)
(xy 203.55515 94.307295) (xy 204.2125 94.964645) (xy 204.86985 94.307295) (xy 204.797492 94.152296) (xy 204.620872 94.054458)
(xy 204.428559 93.992956) (xy 204.227943 93.970155) (xy 204.026732 93.98693) (xy 203.832661 94.042638) (xy 203.653188 94.135136)
(xy 203.627508 94.152296) (xy 203.55515 94.307295) (xy 202.707481 94.307295) (xy 202.747166 94.165429) (xy 202.687121 94.025)
(xy 201.5375 94.025) (xy 201.4875 94.025) (xy 201.4675 94.025) (xy 201.4675 93.975) (xy 201.4875 93.975)
(xy 201.4875 93.1) (xy 201.5375 93.1) (xy 201.5375 93.975) (xy 202.687121 93.975) (xy 202.747166 93.834571)
(xy 202.703559 93.678682) (xy 202.638453 93.548292) (xy 230.375 93.548292) (xy 230.375 93.651708) (xy 230.395176 93.753137)
(xy 230.434751 93.848681) (xy 230.492206 93.934668) (xy 230.565332 94.007794) (xy 230.651319 94.065249) (xy 230.746863 94.104824)
(xy 230.848292 94.125) (xy 230.951708 94.125) (xy 231.053137 94.104824) (xy 231.148681 94.065249) (xy 231.234668 94.007794)
(xy 231.307794 93.934668) (xy 231.365249 93.848681) (xy 231.404824 93.753137) (xy 231.425 93.651708) (xy 231.425 93.62769)
(xy 231.455114 93.657804) (xy 231.541101 93.715259) (xy 231.636645 93.754834) (xy 231.725 93.772409) (xy 231.725 93.801708)
(xy 231.745176 93.903137) (xy 231.784751 93.998681) (xy 231.842206 94.084668) (xy 231.915332 94.157794) (xy 232.001319 94.215249)
(xy 232.096863 94.254824) (xy 232.198292 94.275) (xy 232.25312 94.275) (xy 232.255924 94.289097) (xy 232.295499 94.384641)
(xy 232.352954 94.470628) (xy 232.42608 94.543754) (xy 232.512067 94.601209) (xy 232.607611 94.640784) (xy 232.70904 94.66096)
(xy 232.812456 94.66096) (xy 232.913885 94.640784) (xy 233.009429 94.601209) (xy 233.095416 94.543754) (xy 233.168542 94.470628)
(xy 233.225997 94.384641) (xy 233.265572 94.289097) (xy 233.285748 94.187668) (xy 233.285748 94.084252) (xy 233.265572 93.982823)
(xy 233.225997 93.887279) (xy 233.168542 93.801292) (xy 233.095416 93.728166) (xy 233.009429 93.670711) (xy 232.913885 93.631136)
(xy 232.812456 93.61096) (xy 232.757628 93.61096) (xy 232.754824 93.596863) (xy 232.715249 93.501319) (xy 232.657794 93.415332)
(xy 232.584668 93.342206) (xy 232.498681 93.284751) (xy 232.403137 93.245176) (xy 232.314782 93.227601) (xy 232.314782 93.198302)
(xy 232.294606 93.096873) (xy 232.255031 93.001329) (xy 232.197576 92.915342) (xy 232.12445 92.842216) (xy 232.038463 92.784761)
(xy 231.942919 92.745186) (xy 231.84149 92.72501) (xy 231.738074 92.72501) (xy 231.636645 92.745186) (xy 231.541101 92.784761)
(xy 231.455114 92.842216) (xy 231.381988 92.915342) (xy 231.324533 93.001329) (xy 231.284958 93.096873) (xy 231.264782 93.198302)
(xy 231.264782 93.22232) (xy 231.234668 93.192206) (xy 231.148681 93.134751) (xy 231.053137 93.095176) (xy 230.951708 93.075)
(xy 230.848292 93.075) (xy 230.746863 93.095176) (xy 230.651319 93.134751) (xy 230.565332 93.192206) (xy 230.492206 93.265332)
(xy 230.434751 93.351319) (xy 230.395176 93.446863) (xy 230.375 93.548292) (xy 202.638453 93.548292) (xy 202.624712 93.520774)
(xy 202.516574 93.381282) (xy 202.3833 93.265567) (xy 202.230012 93.178076) (xy 202.062601 93.122171) (xy 201.8875 93.1)
(xy 201.5375 93.1) (xy 201.4875 93.1) (xy 201.1375 93.1) (xy 200.962399 93.122171) (xy 200.794988 93.178076)
(xy 200.6417 93.265567) (xy 200.508426 93.381282) (xy 200.400288 93.520774) (xy 200.375 93.571419) (xy 200.375 91.598292)
(xy 205.575 91.598292) (xy 205.575 91.701708) (xy 205.595176 91.803137) (xy 205.634751 91.898681) (xy 205.692206 91.984668)
(xy 205.765332 92.057794) (xy 205.851319 92.115249) (xy 205.946863 92.154824) (xy 206.048292 92.175) (xy 206.151708 92.175)
(xy 206.253137 92.154824) (xy 206.348681 92.115249) (xy 206.3918 92.086437) (xy 227.839132 92.086437) (xy 227.839132 92.189853)
(xy 227.859308 92.291282) (xy 227.898883 92.386826) (xy 227.956338 92.472813) (xy 228.029464 92.545939) (xy 228.115451 92.603394)
(xy 228.210995 92.642969) (xy 228.312424 92.663145) (xy 228.41584 92.663145) (xy 228.517269 92.642969) (xy 228.612813 92.603394)
(xy 228.665602 92.568121) (xy 228.715459 92.601435) (xy 228.811003 92.64101) (xy 228.912432 92.661186) (xy 229.015848 92.661186)
(xy 229.117277 92.64101) (xy 229.212821 92.601435) (xy 229.298808 92.54398) (xy 229.371934 92.470854) (xy 229.429389 92.384867)
(xy 229.464983 92.298935) (xy 229.494166 92.298935) (xy 229.595595 92.278759) (xy 229.691139 92.239184) (xy 229.777126 92.181729)
(xy 229.850252 92.108603) (xy 229.854251 92.102617) (xy 241.682738 92.102617) (xy 241.782085 92.280657) (xy 241.996951 92.400912)
(xy 242.231149 92.476937) (xy 242.475678 92.505812) (xy 242.721143 92.486426) (xy 242.958108 92.419526) (xy 243.177469 92.30768)
(xy 243.217915 92.280657) (xy 243.317262 92.102617) (xy 242.5 91.285355) (xy 241.682738 92.102617) (xy 229.854251 92.102617)
(xy 229.907707 92.022616) (xy 229.947282 91.927072) (xy 229.966451 91.830707) (xy 229.989472 91.826128) (xy 230.085016 91.786553)
(xy 230.171003 91.729098) (xy 230.244129 91.655972) (xy 230.301584 91.569985) (xy 230.341159 91.474441) (xy 230.361335 91.373012)
(xy 230.361335 91.269596) (xy 230.352599 91.225678) (xy 241.244188 91.225678) (xy 241.263574 91.471143) (xy 241.330474 91.708108)
(xy 241.44232 91.927469) (xy 241.469343 91.967915) (xy 241.647383 92.067262) (xy 242.464645 91.25) (xy 242.535355 91.25)
(xy 243.352617 92.067262) (xy 243.530657 91.967915) (xy 243.650912 91.753049) (xy 243.726937 91.518851) (xy 243.728853 91.502617)
(xy 246.582738 91.502617) (xy 246.682085 91.680657) (xy 246.896951 91.800912) (xy 247.131149 91.876937) (xy 247.375678 91.905812)
(xy 247.621143 91.886426) (xy 247.858108 91.819526) (xy 248.077469 91.70768) (xy 248.117915 91.680657) (xy 248.217262 91.502617)
(xy 247.4 90.685355) (xy 246.582738 91.502617) (xy 243.728853 91.502617) (xy 243.755812 91.274322) (xy 243.736426 91.028857)
(xy 243.669526 90.791892) (xy 243.584779 90.625678) (xy 246.144188 90.625678) (xy 246.163574 90.871143) (xy 246.230474 91.108108)
(xy 246.34232 91.327469) (xy 246.369343 91.367915) (xy 246.547383 91.467262) (xy 247.364645 90.65) (xy 247.435355 90.65)
(xy 248.252617 91.467262) (xy 248.430657 91.367915) (xy 248.550912 91.153049) (xy 248.626937 90.918851) (xy 248.655812 90.674322)
(xy 248.636426 90.428857) (xy 248.569526 90.191892) (xy 248.45768 89.972531) (xy 248.430657 89.932085) (xy 248.252617 89.832738)
(xy 247.435355 90.65) (xy 247.364645 90.65) (xy 246.547383 89.832738) (xy 246.369343 89.932085) (xy 246.249088 90.146951)
(xy 246.173063 90.381149) (xy 246.144188 90.625678) (xy 243.584779 90.625678) (xy 243.55768 90.572531) (xy 243.530657 90.532085)
(xy 243.352617 90.432738) (xy 242.535355 91.25) (xy 242.464645 91.25) (xy 241.647383 90.432738) (xy 241.469343 90.532085)
(xy 241.349088 90.746951) (xy 241.273063 90.981149) (xy 241.244188 91.225678) (xy 230.352599 91.225678) (xy 230.341159 91.168167)
(xy 230.301584 91.072623) (xy 230.244129 90.986636) (xy 230.171003 90.91351) (xy 230.085016 90.856055) (xy 229.989472 90.81648)
(xy 229.888043 90.796304) (xy 229.784627 90.796304) (xy 229.683198 90.81648) (xy 229.587654 90.856055) (xy 229.501667 90.91351)
(xy 229.428541 90.986636) (xy 229.371086 91.072623) (xy 229.331511 91.168167) (xy 229.312342 91.264532) (xy 229.289321 91.269111)
(xy 229.193777 91.308686) (xy 229.10779 91.366141) (xy 229.034664 91.439267) (xy 228.977209 91.525254) (xy 228.941615 91.611186)
(xy 228.912432 91.611186) (xy 228.811003 91.631362) (xy 228.715459 91.670937) (xy 228.66267 91.70621) (xy 228.612813 91.672896)
(xy 228.517269 91.633321) (xy 228.41584 91.613145) (xy 228.312424 91.613145) (xy 228.210995 91.633321) (xy 228.115451 91.672896)
(xy 228.029464 91.730351) (xy 227.956338 91.803477) (xy 227.898883 91.889464) (xy 227.859308 91.985008) (xy 227.839132 92.086437)
(xy 206.3918 92.086437) (xy 206.434668 92.057794) (xy 206.507794 91.984668) (xy 206.565249 91.898681) (xy 206.604824 91.803137)
(xy 206.625 91.701708) (xy 206.625 91.598292) (xy 206.604824 91.496863) (xy 206.565249 91.401319) (xy 206.507794 91.315332)
(xy 206.434668 91.242206) (xy 206.348681 91.184751) (xy 206.253137 91.145176) (xy 206.151708 91.125) (xy 206.048292 91.125)
(xy 205.946863 91.145176) (xy 205.851319 91.184751) (xy 205.765332 91.242206) (xy 205.692206 91.315332) (xy 205.634751 91.401319)
(xy 205.595176 91.496863) (xy 205.575 91.598292) (xy 200.375 91.598292) (xy 200.375 90.898288) (xy 214.375 90.898288)
(xy 214.375 91.001704) (xy 214.395176 91.103133) (xy 214.434751 91.198677) (xy 214.492206 91.284664) (xy 214.565332 91.35779)
(xy 214.651319 91.415245) (xy 214.746863 91.45482) (xy 214.848292 91.474996) (xy 214.951708 91.474996) (xy 215.053137 91.45482)
(xy 215.148681 91.415245) (xy 215.234668 91.35779) (xy 215.307794 91.284664) (xy 215.365249 91.198677) (xy 215.404824 91.103133)
(xy 215.425 91.001704) (xy 215.425 90.898288) (xy 215.404824 90.796859) (xy 215.365249 90.701315) (xy 215.307794 90.615328)
(xy 215.234668 90.542202) (xy 215.148681 90.484747) (xy 215.053137 90.445172) (xy 214.951708 90.424996) (xy 214.848292 90.424996)
(xy 214.746863 90.445172) (xy 214.651319 90.484747) (xy 214.565332 90.542202) (xy 214.492206 90.615328) (xy 214.434751 90.701315)
(xy 214.395176 90.796859) (xy 214.375 90.898288) (xy 200.375 90.898288) (xy 200.375 90.048292) (xy 210.675 90.048292)
(xy 210.675 90.151708) (xy 210.695176 90.253137) (xy 210.734751 90.348681) (xy 210.792206 90.434668) (xy 210.865332 90.507794)
(xy 210.951319 90.565249) (xy 211.046863 90.604824) (xy 211.148292 90.625) (xy 211.251708 90.625) (xy 211.353137 90.604824)
(xy 211.448681 90.565249) (xy 211.534668 90.507794) (xy 211.607794 90.434668) (xy 211.665249 90.348681) (xy 211.704824 90.253137)
(xy 211.725 90.151708) (xy 211.725 90.048292) (xy 213.125 90.048292) (xy 213.125 90.151708) (xy 213.145176 90.253137)
(xy 213.184751 90.348681) (xy 213.242206 90.434668) (xy 213.315332 90.507794) (xy 213.401319 90.565249) (xy 213.496863 90.604824)
(xy 213.598292 90.625) (xy 213.701708 90.625) (xy 213.803137 90.604824) (xy 213.898681 90.565249) (xy 213.984668 90.507794)
(xy 214.057794 90.434668) (xy 214.082707 90.397383) (xy 241.682738 90.397383) (xy 242.5 91.214645) (xy 243.317262 90.397383)
(xy 243.217915 90.219343) (xy 243.003049 90.099088) (xy 242.768851 90.023063) (xy 242.524322 89.994188) (xy 242.278857 90.013574)
(xy 242.041892 90.080474) (xy 241.822531 90.19232) (xy 241.782085 90.219343) (xy 241.682738 90.397383) (xy 214.082707 90.397383)
(xy 214.115249 90.348681) (xy 214.154824 90.253137) (xy 214.175 90.151708) (xy 214.175 90.048292) (xy 214.154824 89.946863)
(xy 214.115249 89.851319) (xy 214.057794 89.765332) (xy 213.984668 89.692206) (xy 213.898681 89.634751) (xy 213.803137 89.595176)
(xy 213.701708 89.575) (xy 213.598292 89.575) (xy 213.496863 89.595176) (xy 213.401319 89.634751) (xy 213.315332 89.692206)
(xy 213.242206 89.765332) (xy 213.184751 89.851319) (xy 213.145176 89.946863) (xy 213.125 90.048292) (xy 211.725 90.048292)
(xy 211.704824 89.946863) (xy 211.665249 89.851319) (xy 211.607794 89.765332) (xy 211.534668 89.692206) (xy 211.448681 89.634751)
(xy 211.353137 89.595176) (xy 211.251708 89.575) (xy 211.148292 89.575) (xy 211.046863 89.595176) (xy 210.951319 89.634751)
(xy 210.865332 89.692206) (xy 210.792206 89.765332) (xy 210.734751 89.851319) (xy 210.695176 89.946863) (xy 210.675 90.048292)
(xy 200.375 90.048292) (xy 200.375 88.018338) (xy 200.403713 87.7255) (xy 200.480702 88.112547) (xy 200.639004 88.494723)
(xy 200.868823 88.838672) (xy 201.161328 89.131177) (xy 201.505277 89.360996) (xy 201.887453 89.519298) (xy 202.293168 89.6)
(xy 202.706832 89.6) (xy 203.112547 89.519298) (xy 203.494723 89.360996) (xy 203.838672 89.131177) (xy 204.131177 88.838672)
(xy 204.360996 88.494723) (xy 204.519298 88.112547) (xy 204.6 87.706832) (xy 204.6 87.293168) (xy 204.519298 86.887453)
(xy 204.360996 86.505277) (xy 204.131177 86.161328) (xy 203.838672 85.868823) (xy 203.494723 85.639004) (xy 203.112547 85.480702)
(xy 202.725748 85.403763) (xy 202.99936 85.375005) (xy 203.000733 85.375) (xy 232.773084 85.375)
)
)
)
(zone (net 1) (net_name +3V3) (layer In2.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2)
(fill yes (arc_segments 16) (thermal_gap 0.2) (thermal_bridge_width 0.25))
(polygon
(pts
(xy 199 83.75) (xy 251 83.75) (xy 251 116) (xy 199 116)
)
)
(filled_polygon
(pts
(xy 232.727523 85.399353) (xy 232.681842 85.436842) (xy 232.644353 85.482523) (xy 232.616496 85.53464) (xy 232.599341 85.59119)
(xy 232.593549 85.65) (xy 232.593549 87.35) (xy 232.599341 87.40881) (xy 232.616496 87.46536) (xy 232.644353 87.517477)
(xy 232.681842 87.563158) (xy 232.727523 87.600647) (xy 232.77964 87.628504) (xy 232.83619 87.645659) (xy 232.895 87.651451)
(xy 234.595 87.651451) (xy 234.65381 87.645659) (xy 234.71036 87.628504) (xy 234.762477 87.600647) (xy 234.808158 87.563158)
(xy 234.845647 87.517477) (xy 234.873504 87.46536) (xy 234.890659 87.40881) (xy 234.896451 87.35) (xy 234.896451 85.65)
(xy 234.890659 85.59119) (xy 234.873504 85.53464) (xy 234.845647 85.482523) (xy 234.808158 85.436842) (xy 234.762477 85.399353)
(xy 234.716916 85.375) (xy 236.046052 85.375) (xy 235.949557 85.394194) (xy 235.740271 85.480884) (xy 235.551918 85.606737)
(xy 235.391737 85.766918) (xy 235.265884 85.955271) (xy 235.179194 86.164557) (xy 235.135 86.386735) (xy 235.135 86.613265)
(xy 235.179194 86.835443) (xy 235.265884 87.044729) (xy 235.391737 87.233082) (xy 235.551918 87.393263) (xy 235.740271 87.519116)
(xy 235.949557 87.605806) (xy 236.171735 87.65) (xy 236.398265 87.65) (xy 236.620443 87.605806) (xy 236.829729 87.519116)
(xy 237.018082 87.393263) (xy 237.178263 87.233082) (xy 237.304116 87.044729) (xy 237.390806 86.835443) (xy 237.435 86.613265)
(xy 237.435 86.386735) (xy 237.390806 86.164557) (xy 237.304116 85.955271) (xy 237.178263 85.766918) (xy 237.018082 85.606737)
(xy 236.829729 85.480884) (xy 236.620443 85.394194) (xy 236.523948 85.375) (xy 238.586052 85.375) (xy 238.489557 85.394194)
(xy 238.280271 85.480884) (xy 238.091918 85.606737) (xy 237.931737 85.766918) (xy 237.805884 85.955271) (xy 237.719194 86.164557)
(xy 237.675 86.386735) (xy 237.675 86.613265) (xy 237.719194 86.835443) (xy 237.805884 87.044729) (xy 237.931737 87.233082)
(xy 238.091918 87.393263) (xy 238.280271 87.519116) (xy 238.489557 87.605806) (xy 238.711735 87.65) (xy 238.938265 87.65)
(xy 239.160443 87.605806) (xy 239.369729 87.519116) (xy 239.558082 87.393263) (xy 239.718263 87.233082) (xy 239.844116 87.044729)
(xy 239.930806 86.835443) (xy 239.975 86.613265) (xy 239.975 86.386735) (xy 239.930806 86.164557) (xy 239.844116 85.955271)
(xy 239.718263 85.766918) (xy 239.558082 85.606737) (xy 239.369729 85.480884) (xy 239.160443 85.394194) (xy 239.063948 85.375)
(xy 241.126052 85.375) (xy 241.029557 85.394194) (xy 240.820271 85.480884) (xy 240.631918 85.606737) (xy 240.471737 85.766918)
(xy 240.345884 85.955271) (xy 240.259194 86.164557) (xy 240.215 86.386735) (xy 240.215 86.613265) (xy 240.259194 86.835443)
(xy 240.345884 87.044729) (xy 240.471737 87.233082) (xy 240.631918 87.393263) (xy 240.820271 87.519116) (xy 241.029557 87.605806)
(xy 241.251735 87.65) (xy 241.478265 87.65) (xy 241.700443 87.605806) (xy 241.909729 87.519116) (xy 242.098082 87.393263)
(xy 242.258263 87.233082) (xy 242.384116 87.044729) (xy 242.470806 86.835443) (xy 242.515 86.613265) (xy 242.515 86.386735)
(xy 242.470806 86.164557) (xy 242.384116 85.955271) (xy 242.258263 85.766918) (xy 242.098082 85.606737) (xy 241.909729 85.480884)
(xy 241.700443 85.394194) (xy 241.603948 85.375) (xy 243.666052 85.375) (xy 243.569557 85.394194) (xy 243.360271 85.480884)
(xy 243.171918 85.606737) (xy 243.011737 85.766918) (xy 242.885884 85.955271) (xy 242.799194 86.164557) (xy 242.755 86.386735)
(xy 242.755 86.613265) (xy 242.799194 86.835443) (xy 242.885884 87.044729) (xy 243.011737 87.233082) (xy 243.171918 87.393263)
(xy 243.360271 87.519116) (xy 243.569557 87.605806) (xy 243.791735 87.65) (xy 244.018265 87.65) (xy 244.240443 87.605806)
(xy 244.449729 87.519116) (xy 244.638082 87.393263) (xy 244.798263 87.233082) (xy 244.924116 87.044729) (xy 245.010806 86.835443)
(xy 245.055 86.613265) (xy 245.055 86.386735) (xy 245.010806 86.164557) (xy 244.924116 85.955271) (xy 244.798263 85.766918)
(xy 244.638082 85.606737) (xy 244.449729 85.480884) (xy 244.240443 85.394194) (xy 244.143948 85.375) (xy 245.989579 85.375)
(xy 245.975 85.448292) (xy 245.975 85.551708) (xy 245.995176 85.653137) (xy 246.034751 85.748681) (xy 246.092206 85.834668)
(xy 246.143845 85.886307) (xy 245.868823 86.161328) (xy 245.639004 86.505277) (xy 245.480702 86.887453) (xy 245.4 87.293168)
(xy 245.4 87.706832) (xy 245.480702 88.112547) (xy 245.639004 88.494723) (xy 245.868823 88.838672) (xy 246.161328 89.131177)
(xy 246.505277 89.360996) (xy 246.875402 89.514306) (xy 246.807903 89.542265) (xy 246.603172 89.679062) (xy 246.429062 89.853172)
(xy 246.292265 90.057903) (xy 246.198037 90.285389) (xy 246.15 90.526886) (xy 246.15 90.773114) (xy 246.198037 91.014611)
(xy 246.292265 91.242097) (xy 246.429062 91.446828) (xy 246.603172 91.620938) (xy 246.807903 91.757735) (xy 247.035389 91.851963)
(xy 247.276886 91.9) (xy 247.523114 91.9) (xy 247.764611 91.851963) (xy 247.992097 91.757735) (xy 248.196828 91.620938)
(xy 248.370938 91.446828) (xy 248.507735 91.242097) (xy 248.601963 91.014611) (xy 248.65 90.773114) (xy 248.65 90.526886)
(xy 248.601963 90.285389) (xy 248.507735 90.057903) (xy 248.370938 89.853172) (xy 248.196828 89.679062) (xy 247.993241 89.543029)
(xy 248.112547 89.519298) (xy 248.494723 89.360996) (xy 248.838672 89.131177) (xy 249.113694 88.856156) (xy 249.165332 88.907794)
(xy 249.251319 88.965249) (xy 249.346863 89.004824) (xy 249.448292 89.025) (xy 249.551708 89.025) (xy 249.625 89.010421)
(xy 249.625001 110.989579) (xy 249.551708 110.975) (xy 249.448292 110.975) (xy 249.346863 110.995176) (xy 249.251319 111.034751)
(xy 249.165332 111.092206) (xy 249.113694 111.143845) (xy 248.838672 110.868823) (xy 248.494723 110.639004) (xy 248.112547 110.480702)
(xy 247.706832 110.4) (xy 247.293168 110.4) (xy 246.887453 110.480702) (xy 246.505277 110.639004) (xy 246.161328 110.868823)
(xy 245.868823 111.161328) (xy 245.650054 111.488739) (xy 245.65387 111.449998) (xy 245.65 111.410707) (xy 245.65 106.226886)
(xy 246.15 106.226886) (xy 246.15 106.473114) (xy 246.198037 106.714611) (xy 246.292265 106.942097) (xy 246.429062 107.146828)
(xy 246.603172 107.320938) (xy 246.807903 107.457735) (xy 247.035389 107.551963) (xy 247.276886 107.6) (xy 247.523114 107.6)
(xy 247.764611 107.551963) (xy 247.992097 107.457735) (xy 248.196828 107.320938) (xy 248.370938 107.146828) (xy 248.507735 106.942097)
(xy 248.601963 106.714611) (xy 248.65 106.473114) (xy 248.65 106.226886) (xy 248.601963 105.985389) (xy 248.507735 105.757903)
(xy 248.370938 105.553172) (xy 248.196828 105.379062) (xy 247.992097 105.242265) (xy 247.764611 105.148037) (xy 247.523114 105.1)
(xy 247.276886 105.1) (xy 247.035389 105.148037) (xy 246.807903 105.242265) (xy 246.603172 105.379062) (xy 246.429062 105.553172)
(xy 246.292265 105.757903) (xy 246.198037 105.985389) (xy 246.15 106.226886) (xy 245.65 106.226886) (xy 245.65 104.439291)
(xy 245.65387 104.4) (xy 245.65 104.360707) (xy 245.638424 104.243173) (xy 245.592679 104.092372) (xy 245.518393 103.953393)
(xy 245.465644 103.889119) (xy 245.418422 103.831578) (xy 245.387897 103.806527) (xy 243.693473 102.112103) (xy 243.668422 102.081578)
(xy 243.546606 101.981607) (xy 243.485787 101.949098) (xy 243.504824 101.903137) (xy 243.525 101.801708) (xy 243.525 101.698292)
(xy 243.504824 101.596863) (xy 243.465249 101.501319) (xy 243.407794 101.415332) (xy 243.334668 101.342206) (xy 243.248681 101.284751)
(xy 243.153137 101.245176) (xy 243.051708 101.225) (xy 242.948292 101.225) (xy 242.846863 101.245176) (xy 242.751319 101.284751)
(xy 242.665332 101.342206) (xy 242.592206 101.415332) (xy 242.534751 101.501319) (xy 242.495176 101.596863) (xy 242.475 101.698292)
(xy 242.475 101.801708) (xy 242.484606 101.85) (xy 241.015394 101.85) (xy 241.025 101.801708) (xy 241.025 101.698292)
(xy 241.004824 101.596863) (xy 240.965249 101.501319) (xy 240.907794 101.415332) (xy 240.834668 101.342206) (xy 240.748681 101.284751)
(xy 240.653137 101.245176) (xy 240.647355 101.244026) (xy 240.647355 101.229286) (xy 240.627179 101.127857) (xy 240.587604 101.032313)
(xy 240.530149 100.946326) (xy 240.457023 100.8732) (xy 240.371036 100.815745) (xy 240.275492 100.77617) (xy 240.174063 100.755994)
(xy 240.070647 100.755994) (xy 239.969218 100.77617) (xy 239.873674 100.815745) (xy 239.796792 100.867116) (xy 239.764255 100.845376)
(xy 239.668711 100.805801) (xy 239.567282 100.785625) (xy 239.463866 100.785625) (xy 239.362437 100.805801) (xy 239.266893 100.845376)
(xy 239.180906 100.902831) (xy 239.10778 100.975957) (xy 239.050325 101.061944) (xy 239.01075 101.157488) (xy 238.990574 101.258917)
(xy 238.990574 101.362333) (xy 239.01075 101.463762) (xy 239.050325 101.559306) (xy 239.10778 101.645293) (xy 239.180906 101.718419)
(xy 239.266893 101.775874) (xy 239.362437 101.815449) (xy 239.463866 101.835625) (xy 239.567282 101.835625) (xy 239.668711 101.815449)
(xy 239.764255 101.775874) (xy 239.841137 101.724503) (xy 239.873674 101.746243) (xy 239.969218 101.785818) (xy 239.975 101.786968)
(xy 239.975 101.801708) (xy 239.994377 101.89912) (xy 239.967342 101.907321) (xy 239.828364 101.981607) (xy 239.706548 102.081578)
(xy 239.606577 102.203394) (xy 239.532291 102.342372) (xy 239.486546 102.493173) (xy 239.4711 102.65) (xy 239.486546 102.806827)
(xy 239.532291 102.957628) (xy 239.606577 103.096606) (xy 239.706548 103.218422) (xy 239.828364 103.318393) (xy 239.967342 103.392679)
(xy 240.118143 103.438424) (xy 240.235677 103.45) (xy 242.76863 103.45) (xy 244.050001 104.731371) (xy 244.05 111.118628)
(xy 241.718628 113.45) (xy 228.78137 113.45) (xy 226.127519 110.796149) (xy 228.723097 110.796149) (xy 228.784747 111.012995)
(xy 228.887517 111.213647) (xy 229.027458 111.390394) (xy 229.199191 111.536444) (xy 229.396117 111.646184) (xy 229.610669 111.715397)
(xy 229.650211 111.723262) (xy 229.82976 111.666309) (xy 229.82976 110.6166) (xy 229.87976 110.6166) (xy 229.87976 111.666309)
(xy 230.059309 111.723262) (xy 230.098851 111.715397) (xy 230.313403 111.646184) (xy 230.510329 111.536444) (xy 230.682062 111.390394)
(xy 230.822003 111.213647) (xy 230.924773 111.012995) (xy 230.986423 110.796149) (xy 230.929489 110.6166) (xy 229.87976 110.6166)
(xy 229.82976 110.6166) (xy 228.780031 110.6166) (xy 228.723097 110.796149) (xy 226.127519 110.796149) (xy 226.068451 110.737081)
(xy 226.068451 110.387051) (xy 228.723097 110.387051) (xy 228.780031 110.5666) (xy 229.82976 110.5666) (xy 229.82976 109.516891)
(xy 229.87976 109.516891) (xy 229.87976 110.5666) (xy 230.929489 110.5666) (xy 230.957477 110.478335) (xy 231.24476 110.478335)
(xy 231.24476 110.704865) (xy 231.288954 110.927043) (xy 231.375644 111.136329) (xy 231.501497 111.324682) (xy 231.661678 111.484863)
(xy 231.850031 111.610716) (xy 232.059317 111.697406) (xy 232.281495 111.7416) (xy 232.508025 111.7416) (xy 232.730203 111.697406)
(xy 232.939489 111.610716) (xy 233.127842 111.484863) (xy 233.288023 111.324682) (xy 233.413876 111.136329) (xy 233.500566 110.927043)
(xy 233.54476 110.704865) (xy 233.54476 110.478335) (xy 233.78476 110.478335) (xy 233.78476 110.704865) (xy 233.828954 110.927043)
(xy 233.915644 111.136329) (xy 234.041497 111.324682) (xy 234.201678 111.484863) (xy 234.390031 111.610716) (xy 234.599317 111.697406)
(xy 234.821495 111.7416) (xy 235.048025 111.7416) (xy 235.270203 111.697406) (xy 235.479489 111.610716) (xy 235.667842 111.484863)
(xy 235.712498 111.440207) (xy 235.742206 111.484668) (xy 235.815332 111.557794) (xy 235.901319 111.615249) (xy 235.996863 111.654824)
(xy 236.098292 111.675) (xy 236.201708 111.675) (xy 236.303137 111.654824) (xy 236.398681 111.615249) (xy 236.484668 111.557794)
(xy 236.557794 111.484668) (xy 236.615249 111.398681) (xy 236.627037 111.370222) (xy 236.741678 111.484863) (xy 236.930031 111.610716)
(xy 237.139317 111.697406) (xy 237.361495 111.7416) (xy 237.588025 111.7416) (xy 237.810203 111.697406) (xy 238.019489 111.610716)
(xy 238.074509 111.573953) (xy 238.084751 111.598681) (xy 238.142206 111.684668) (xy 238.215332 111.757794) (xy 238.301319 111.815249)
(xy 238.396863 111.854824) (xy 238.498292 111.875) (xy 238.601708 111.875) (xy 238.703137 111.854824) (xy 238.798681 111.815249)
(xy 238.884668 111.757794) (xy 238.957794 111.684668) (xy 239.015249 111.598681) (xy 239.054824 111.503137) (xy 239.075 111.401708)
(xy 239.075 111.298292) (xy 239.062765 111.236783) (xy 239.121497 111.324682) (xy 239.281678 111.484863) (xy 239.470031 111.610716)
(xy 239.679317 111.697406) (xy 239.901495 111.7416) (xy 240.075 111.7416) (xy 240.075 111.801708) (xy 240.095176 111.903137)
(xy 240.134751 111.998681) (xy 240.192206 112.084668) (xy 240.265332 112.157794) (xy 240.351319 112.215249) (xy 240.446863 112.254824)
(xy 240.548292 112.275) (xy 240.651708 112.275) (xy 240.753137 112.254824) (xy 240.848681 112.215249) (xy 240.934668 112.157794)
(xy 241.007794 112.084668) (xy 241.065249 111.998681) (xy 241.104824 111.903137) (xy 241.125 111.801708) (xy 241.125 111.698292)
(xy 241.104824 111.596863) (xy 241.065249 111.501319) (xy 241.007794 111.415332) (xy 240.934668 111.342206) (xy 240.908152 111.324489)
(xy 241.033876 111.136329) (xy 241.120566 110.927043) (xy 241.16476 110.704865) (xy 241.16476 110.478335) (xy 241.40476 110.478335)
(xy 241.40476 110.704865) (xy 241.448954 110.927043) (xy 241.535644 111.136329) (xy 241.661497 111.324682) (xy 241.821678 111.484863)
(xy 242.010031 111.610716) (xy 242.219317 111.697406) (xy 242.441495 111.7416) (xy 242.668025 111.7416) (xy 242.890203 111.697406)
(xy 243.099489 111.610716) (xy 243.287842 111.484863) (xy 243.448023 111.324682) (xy 243.573876 111.136329) (xy 243.660566 110.927043)
(xy 243.70476 110.704865) (xy 243.70476 110.478335) (xy 243.660566 110.256157) (xy 243.573876 110.046871) (xy 243.448023 109.858518)
(xy 243.287842 109.698337) (xy 243.099489 109.572484) (xy 242.890203 109.485794) (xy 242.668025 109.4416) (xy 242.441495 109.4416)
(xy 242.219317 109.485794) (xy 242.010031 109.572484) (xy 241.821678 109.698337) (xy 241.661497 109.858518) (xy 241.535644 110.046871)
(xy 241.448954 110.256157) (xy 241.40476 110.478335) (xy 241.16476 110.478335) (xy 241.120566 110.256157) (xy 241.033876 110.046871)
(xy 240.908023 109.858518) (xy 240.747842 109.698337) (xy 240.559489 109.572484) (xy 240.350203 109.485794) (xy 240.128025 109.4416)
(xy 239.901495 109.4416) (xy 239.679317 109.485794) (xy 239.470031 109.572484) (xy 239.281678 109.698337) (xy 239.121497 109.858518)
(xy 238.995644 110.046871) (xy 238.908954 110.256157) (xy 238.86476 110.478335) (xy 238.86476 110.704865) (xy 238.908954 110.927043)
(xy 238.936849 110.994387) (xy 238.884668 110.942206) (xy 238.798681 110.884751) (xy 238.703137 110.845176) (xy 238.601708 110.825)
(xy 238.600864 110.825) (xy 238.62476 110.704865) (xy 238.62476 110.478335) (xy 238.580566 110.256157) (xy 238.493876 110.046871)
(xy 238.368023 109.858518) (xy 238.207842 109.698337) (xy 238.019489 109.572484) (xy 237.810203 109.485794) (xy 237.588025 109.4416)
(xy 237.361495 109.4416) (xy 237.139317 109.485794) (xy 236.930031 109.572484) (xy 236.741678 109.698337) (xy 236.581497 109.858518)
(xy 236.455644 110.046871) (xy 236.368954 110.256157) (xy 236.32476 110.478335) (xy 236.32476 110.654132) (xy 236.303137 110.645176)
(xy 236.201708 110.625) (xy 236.098292 110.625) (xy 236.08476 110.627692) (xy 236.08476 110.478335) (xy 236.040566 110.256157)
(xy 235.953876 110.046871) (xy 235.828023 109.858518) (xy 235.667842 109.698337) (xy 235.479489 109.572484) (xy 235.270203 109.485794)
(xy 235.048025 109.4416) (xy 234.821495 109.4416) (xy 234.599317 109.485794) (xy 234.390031 109.572484) (xy 234.201678 109.698337)
(xy 234.041497 109.858518) (xy 233.915644 110.046871) (xy 233.828954 110.256157) (xy 233.78476 110.478335) (xy 233.54476 110.478335)
(xy 233.500566 110.256157) (xy 233.413876 110.046871) (xy 233.288023 109.858518) (xy 233.127842 109.698337) (xy 232.939489 109.572484)
(xy 232.730203 109.485794) (xy 232.508025 109.4416) (xy 232.281495 109.4416) (xy 232.059317 109.485794) (xy 231.850031 109.572484)
(xy 231.661678 109.698337) (xy 231.501497 109.858518) (xy 231.375644 110.046871) (xy 231.288954 110.256157) (xy 231.24476 110.478335)
(xy 230.957477 110.478335) (xy 230.986423 110.387051) (xy 230.924773 110.170205) (xy 230.822003 109.969553) (xy 230.682062 109.792806)
(xy 230.510329 109.646756) (xy 230.313403 109.537016) (xy 230.098851 109.467803) (xy 230.059309 109.459938) (xy 229.87976 109.516891)
(xy 229.82976 109.516891) (xy 229.650211 109.459938) (xy 229.610669 109.467803) (xy 229.396117 109.537016) (xy 229.199191 109.646756)
(xy 229.027458 109.792806) (xy 228.887517 109.969553) (xy 228.784747 110.170205) (xy 228.723097 110.387051) (xy 226.068451 110.387051)
(xy 226.068451 109.894) (xy 226.062659 109.83519) (xy 226.045504 109.77864) (xy 226.017647 109.726523) (xy 225.980158 109.680842)
(xy 225.934477 109.643353) (xy 225.88236 109.615496) (xy 225.82581 109.598341) (xy 225.767 109.592549) (xy 224.067 109.592549)
(xy 224.00819 109.598341) (xy 223.95164 109.615496) (xy 223.899523 109.643353) (xy 223.853842 109.680842) (xy 223.816353 109.726523)
(xy 223.788496 109.77864) (xy 223.771341 109.83519) (xy 223.765549 109.894) (xy 223.765549 110.764081) (xy 221.07963 113.45)
(xy 208.434371 113.45) (xy 206.680366 111.695995) (xy 206.740509 111.715397) (xy 206.780051 111.723262) (xy 206.9596 111.666309)
(xy 206.9596 110.6166) (xy 207.0096 110.6166) (xy 207.0096 111.666309) (xy 207.189149 111.723262) (xy 207.228691 111.715397)
(xy 207.443243 111.646184) (xy 207.640169 111.536444) (xy 207.811902 111.390394) (xy 207.951843 111.213647) (xy 208.054613 111.012995)
(xy 208.116263 110.796149) (xy 208.059329 110.6166) (xy 207.0096 110.6166) (xy 206.9596 110.6166) (xy 205.909871 110.6166)
(xy 205.852937 110.796149) (xy 205.881704 110.897333) (xy 205.371422 110.387051) (xy 205.852937 110.387051) (xy 205.909871 110.5666)
(xy 206.9596 110.5666) (xy 206.9596 109.516891) (xy 207.0096 109.516891) (xy 207.0096 110.5666) (xy 208.059329 110.5666)
(xy 208.087317 110.478335) (xy 208.3746 110.478335) (xy 208.3746 110.704865) (xy 208.418794 110.927043) (xy 208.505484 111.136329)
(xy 208.631337 111.324682) (xy 208.791518 111.484863) (xy 208.979871 111.610716) (xy 209.189157 111.697406) (xy 209.411335 111.7416)
(xy 209.637865 111.7416) (xy 209.860043 111.697406) (xy 210.069329 111.610716) (xy 210.257682 111.484863) (xy 210.417863 111.324682)
(xy 210.543716 111.136329) (xy 210.630406 110.927043) (xy 210.6746 110.704865) (xy 210.6746 110.478335) (xy 210.630406 110.256157)
(xy 210.543716 110.046871) (xy 210.417863 109.858518) (xy 210.257682 109.698337) (xy 210.069329 109.572484) (xy 209.860043 109.485794)
(xy 209.637865 109.4416) (xy 209.411335 109.4416) (xy 209.189157 109.485794) (xy 208.979871 109.572484) (xy 208.791518 109.698337)
(xy 208.631337 109.858518) (xy 208.505484 110.046871) (xy 208.418794 110.256157) (xy 208.3746 110.478335) (xy 208.087317 110.478335)
(xy 208.116263 110.387051) (xy 208.054613 110.170205) (xy 207.951843 109.969553) (xy 207.811902 109.792806) (xy 207.640169 109.646756)
(xy 207.443243 109.537016) (xy 207.228691 109.467803) (xy 207.189149 109.459938) (xy 207.0096 109.516891) (xy 206.9596 109.516891)
(xy 206.780051 109.459938) (xy 206.740509 109.467803) (xy 206.525957 109.537016) (xy 206.329031 109.646756) (xy 206.157298 109.792806)
(xy 206.017357 109.969553) (xy 205.914587 110.170205) (xy 205.852937 110.387051) (xy 205.371422 110.387051) (xy 203.24052 108.256149)
(xy 205.852937 108.256149) (xy 205.914587 108.472995) (xy 206.017357 108.673647) (xy 206.157298 108.850394) (xy 206.329031 108.996444)
(xy 206.525957 109.106184) (xy 206.740509 109.175397) (xy 206.780051 109.183262) (xy 206.9596 109.126309) (xy 206.9596 108.0766)
(xy 207.0096 108.0766) (xy 207.0096 109.126309) (xy 207.189149 109.183262) (xy 207.228691 109.175397) (xy 207.443243 109.106184)
(xy 207.640169 108.996444) (xy 207.811902 108.850394) (xy 207.951843 108.673647) (xy 208.054613 108.472995) (xy 208.116263 108.256149)
(xy 208.059329 108.0766) (xy 207.0096 108.0766) (xy 206.9596 108.0766) (xy 205.909871 108.0766) (xy 205.852937 108.256149)
(xy 203.24052 108.256149) (xy 202.831422 107.847051) (xy 205.852937 107.847051) (xy 205.909871 108.0266) (xy 206.9596 108.0266)
(xy 206.9596 106.976891) (xy 207.0096 106.976891) (xy 207.0096 108.0266) (xy 208.059329 108.0266) (xy 208.087317 107.938335)
(xy 208.3746 107.938335) (xy 208.3746 108.164865) (xy 208.418794 108.387043) (xy 208.505484 108.596329) (xy 208.631337 108.784682)
(xy 208.791518 108.944863) (xy 208.979871 109.070716) (xy 209.189157 109.157406) (xy 209.411335 109.2016) (xy 209.637865 109.2016)
(xy 209.860043 109.157406) (xy 210.069329 109.070716) (xy 210.257682 108.944863) (xy 210.417863 108.784682) (xy 210.543716 108.596329)
(xy 210.630406 108.387043) (xy 210.6746 108.164865) (xy 210.6746 107.938335) (xy 210.9146 107.938335) (xy 210.9146 108.164865)
(xy 210.958794 108.387043) (xy 211.045484 108.596329) (xy 211.171337 108.784682) (xy 211.331518 108.944863) (xy 211.519871 109.070716)
(xy 211.729157 109.157406) (xy 211.951335 109.2016) (xy 212.177865 109.2016) (xy 212.245 109.188246) (xy 212.245 109.191708)
(xy 212.265176 109.293137) (xy 212.304751 109.388681) (xy 212.362206 109.474668) (xy 212.3667 109.479162) (xy 212.177865 109.4416)
(xy 211.951335 109.4416) (xy 211.729157 109.485794) (xy 211.519871 109.572484) (xy 211.331518 109.698337) (xy 211.171337 109.858518)
(xy 211.045484 110.046871) (xy 210.958794 110.256157) (xy 210.9146 110.478335) (xy 210.9146 110.704865) (xy 210.958794 110.927043)
(xy 211.045484 111.136329) (xy 211.171337 111.324682) (xy 211.331518 111.484863) (xy 211.519871 111.610716) (xy 211.729157 111.697406)
(xy 211.951335 111.7416) (xy 212.177865 111.7416) (xy 212.400043 111.697406) (xy 212.609329 111.610716) (xy 212.797682 111.484863)
(xy 212.957863 111.324682) (xy 213.083716 111.136329) (xy 213.170406 110.927043) (xy 213.2146 110.704865) (xy 213.2146 110.478335)
(xy 213.170406 110.256157) (xy 213.083716 110.046871) (xy 212.957863 109.858518) (xy 212.797682 109.698337) (xy 212.747789 109.665)
(xy 212.821708 109.665) (xy 212.923137 109.644824) (xy 213.018681 109.605249) (xy 213.104668 109.547794) (xy 213.177794 109.474668)
(xy 213.235249 109.388681) (xy 213.274824 109.293137) (xy 213.295 109.191708) (xy 213.295 109.088292) (xy 213.274824 108.986863)
(xy 213.235249 108.891319) (xy 213.177794 108.805332) (xy 213.104668 108.732206) (xy 213.027416 108.680588) (xy 213.083716 108.596329)
(xy 213.170406 108.387043) (xy 213.2146 108.164865) (xy 213.2146 107.938335) (xy 213.4546 107.938335) (xy 213.4546 108.164865)
(xy 213.498794 108.387043) (xy 213.585484 108.596329) (xy 213.711337 108.784682) (xy 213.871518 108.944863) (xy 214.059871 109.070716)
(xy 214.269157 109.157406) (xy 214.491335 109.2016) (xy 214.717865 109.2016) (xy 214.775 109.190235) (xy 214.775 109.201708)
(xy 214.795176 109.303137) (xy 214.834751 109.398681) (xy 214.885741 109.474993) (xy 214.717865 109.4416) (xy 214.491335 109.4416)
(xy 214.269157 109.485794) (xy 214.059871 109.572484) (xy 213.871518 109.698337) (xy 213.711337 109.858518) (xy 213.585484 110.046871)
(xy 213.498794 110.256157) (xy 213.4546 110.478335) (xy 213.4546 110.704865) (xy 213.498794 110.927043) (xy 213.585484 111.136329)
(xy 213.711337 111.324682) (xy 213.871518 111.484863) (xy 214.059871 111.610716) (xy 214.269157 111.697406) (xy 214.491335 111.7416)
(xy 214.717865 111.7416) (xy 214.940043 111.697406) (xy 215.149329 111.610716) (xy 215.337682 111.484863) (xy 215.497863 111.324682)
(xy 215.623716 111.136329) (xy 215.710406 110.927043) (xy 215.7546 110.704865) (xy 215.7546 110.478335) (xy 215.710406 110.256157)
(xy 215.623716 110.046871) (xy 215.497863 109.858518) (xy 215.337682 109.698337) (xy 215.302756 109.675) (xy 215.351708 109.675)
(xy 215.453137 109.654824) (xy 215.548681 109.615249) (xy 215.634668 109.557794) (xy 215.707794 109.484668) (xy 215.765249 109.398681)
(xy 215.804824 109.303137) (xy 215.825 109.201708) (xy 215.825 109.098292) (xy 215.804824 108.996863) (xy 215.765249 108.901319)
(xy 215.707794 108.815332) (xy 215.634668 108.742206) (xy 215.55971 108.692121) (xy 215.623716 108.596329) (xy 215.710406 108.387043)
(xy 215.7546 108.164865) (xy 215.7546 107.938335) (xy 215.9946 107.938335) (xy 215.9946 108.164865) (xy 216.038794 108.387043)
(xy 216.125484 108.596329) (xy 216.251337 108.784682) (xy 216.411518 108.944863) (xy 216.599871 109.070716) (xy 216.809157 109.157406)
(xy 217.031335 109.2016) (xy 217.257865 109.2016) (xy 217.358936 109.181496) (xy 217.375176 109.263137) (xy 217.414751 109.358681)
(xy 217.472206 109.444668) (xy 217.536871 109.509333) (xy 217.480043 109.485794) (xy 217.257865 109.4416) (xy 217.031335 109.4416)
(xy 216.809157 109.485794) (xy 216.599871 109.572484) (xy 216.411518 109.698337) (xy 216.251337 109.858518) (xy 216.125484 110.046871)
(xy 216.038794 110.256157) (xy 215.9946 110.478335) (xy 215.9946 110.704865) (xy 216.038794 110.927043) (xy 216.125484 111.136329)
(xy 216.251337 111.324682) (xy 216.411518 111.484863) (xy 216.599871 111.610716) (xy 216.809157 111.697406) (xy 217.031335 111.7416)
(xy 217.257865 111.7416) (xy 217.480043 111.697406) (xy 217.689329 111.610716) (xy 217.877682 111.484863) (xy 218.037863 111.324682)
(xy 218.163716 111.136329) (xy 218.250406 110.927043) (xy 218.2946 110.704865) (xy 218.2946 110.478335) (xy 218.250406 110.256157)
(xy 218.163716 110.046871) (xy 218.037863 109.858518) (xy 217.877682 109.698337) (xy 217.763646 109.622141) (xy 217.828292 109.635)
(xy 217.931708 109.635) (xy 218.033137 109.614824) (xy 218.128681 109.575249) (xy 218.214668 109.517794) (xy 218.287794 109.444668)
(xy 218.345249 109.358681) (xy 218.384824 109.263137) (xy 218.405 109.161708) (xy 218.405 109.058292) (xy 218.384824 108.956863)
(xy 218.345249 108.861319) (xy 218.287794 108.775332) (xy 218.214668 108.702206) (xy 218.130534 108.645989) (xy 218.163716 108.596329)
(xy 218.250406 108.387043) (xy 218.2946 108.164865) (xy 218.2946 107.938335) (xy 218.250406 107.716157) (xy 218.163716 107.506871)
(xy 218.037863 107.318518) (xy 217.920945 107.2016) (xy 218.533149 107.2016) (xy 218.533149 108.9016) (xy 218.538941 108.96041)
(xy 218.556096 109.01696) (xy 218.583953 109.069077) (xy 218.621442 109.114758) (xy 218.667123 109.152247) (xy 218.71924 109.180104)
(xy 218.77579 109.197259) (xy 218.8346 109.203051) (xy 219.701956 109.203051) (xy 219.685 109.288292) (xy 219.685 109.391708)
(xy 219.694924 109.4416) (xy 219.571335 109.4416) (xy 219.349157 109.485794) (xy 219.139871 109.572484) (xy 218.951518 109.698337)
(xy 218.791337 109.858518) (xy 218.665484 110.046871) (xy 218.578794 110.256157) (xy 218.5346 110.478335) (xy 218.5346 110.704865)
(xy 218.578794 110.927043) (xy 218.665484 111.136329) (xy 218.791337 111.324682) (xy 218.951518 111.484863) (xy 219.139871 111.610716)
(xy 219.349157 111.697406) (xy 219.571335 111.7416) (xy 219.797865 111.7416) (xy 220.020043 111.697406) (xy 220.229329 111.610716)
(xy 220.417682 111.484863) (xy 220.577863 111.324682) (xy 220.703716 111.136329) (xy 220.790406 110.927043) (xy 220.8346 110.704865)
(xy 220.8346 110.478335) (xy 220.790406 110.256157) (xy 220.703716 110.046871) (xy 220.577863 109.858518) (xy 220.498193 109.778848)
(xy 220.544668 109.747794) (xy 220.617794 109.674668) (xy 220.675249 109.588681) (xy 220.714824 109.493137) (xy 220.735 109.391708)
(xy 220.735 109.288292) (xy 220.714824 109.186863) (xy 220.700774 109.152943) (xy 220.702077 109.152247) (xy 220.747758 109.114758)
(xy 220.785247 109.069077) (xy 220.813104 109.01696) (xy 220.830259 108.96041) (xy 220.836051 108.9016) (xy 220.836051 108.256149)
(xy 228.723097 108.256149) (xy 228.784747 108.472995) (xy 228.887517 108.673647) (xy 229.027458 108.850394) (xy 229.199191 108.996444)
(xy 229.396117 109.106184) (xy 229.610669 109.175397) (xy 229.650211 109.183262) (xy 229.82976 109.126309) (xy 229.82976 108.0766)
(xy 229.87976 108.0766) (xy 229.87976 109.126309) (xy 230.059309 109.183262) (xy 230.098851 109.175397) (xy 230.313403 109.106184)
(xy 230.510329 108.996444) (xy 230.682062 108.850394) (xy 230.822003 108.673647) (xy 230.924773 108.472995) (xy 230.986423 108.256149)
(xy 230.929489 108.0766) (xy 229.87976 108.0766) (xy 229.82976 108.0766) (xy 228.780031 108.0766) (xy 228.723097 108.256149)
(xy 220.836051 108.256149) (xy 220.836051 107.847051) (xy 228.723097 107.847051) (xy 228.780031 108.0266) (xy 229.82976 108.0266)
(xy 229.82976 106.976891) (xy 229.87976 106.976891) (xy 229.87976 108.0266) (xy 230.929489 108.0266) (xy 230.957477 107.938335)
(xy 231.24476 107.938335) (xy 231.24476 108.164865) (xy 231.288954 108.387043) (xy 231.375644 108.596329) (xy 231.501497 108.784682)
(xy 231.661678 108.944863) (xy 231.850031 109.070716) (xy 232.059317 109.157406) (xy 232.281495 109.2016) (xy 232.508025 109.2016)
(xy 232.730203 109.157406) (xy 232.939489 109.070716) (xy 233.127842 108.944863) (xy 233.288023 108.784682) (xy 233.413876 108.596329)
(xy 233.500566 108.387043) (xy 233.54476 108.164865) (xy 233.54476 107.938335) (xy 233.78476 107.938335) (xy 233.78476 108.164865)
(xy 233.828954 108.387043) (xy 233.915644 108.596329) (xy 234.041497 108.784682) (xy 234.201678 108.944863) (xy 234.390031 109.070716)
(xy 234.599317 109.157406) (xy 234.821495 109.2016) (xy 235.048025 109.2016) (xy 235.270203 109.157406) (xy 235.479489 109.070716)
(xy 235.667842 108.944863) (xy 235.828023 108.784682) (xy 235.953876 108.596329) (xy 236.040566 108.387043) (xy 236.08476 108.164865)
(xy 236.08476 107.938335) (xy 236.32476 107.938335) (xy 236.32476 108.164865) (xy 236.368954 108.387043) (xy 236.455644 108.596329)
(xy 236.581497 108.784682) (xy 236.741678 108.944863) (xy 236.930031 109.070716) (xy 237.139317 109.157406) (xy 237.361495 109.2016)
(xy 237.588025 109.2016) (xy 237.810203 109.157406) (xy 238.019489 109.070716) (xy 238.207842 108.944863) (xy 238.368023 108.784682)
(xy 238.493876 108.596329) (xy 238.580566 108.387043) (xy 238.62476 108.164865) (xy 238.62476 108.040319) (xy 238.648292 108.045)
(xy 238.751708 108.045) (xy 238.853137 108.024824) (xy 238.86476 108.02001) (xy 238.86476 108.164865) (xy 238.908954 108.387043)
(xy 238.995644 108.596329) (xy 239.121497 108.784682) (xy 239.281678 108.944863) (xy 239.470031 109.070716) (xy 239.679317 109.157406)
(xy 239.901495 109.2016) (xy 240.128025 109.2016) (xy 240.350203 109.157406) (xy 240.559489 109.070716) (xy 240.747842 108.944863)
(xy 240.908023 108.784682) (xy 241.033876 108.596329) (xy 241.120566 108.387043) (xy 241.16476 108.164865) (xy 241.16476 107.938335)
(xy 241.140674 107.817249) (xy 241.203137 107.804824) (xy 241.298681 107.765249) (xy 241.384668 107.707794) (xy 241.403309 107.689153)
(xy 241.403309 108.9016) (xy 241.409101 108.96041) (xy 241.426256 109.01696) (xy 241.454113 109.069077) (xy 241.491602 109.114758)
(xy 241.537283 109.152247) (xy 241.5894 109.180104) (xy 241.64595 109.197259) (xy 241.70476 109.203051) (xy 243.40476 109.203051)
(xy 243.46357 109.197259) (xy 243.52012 109.180104) (xy 243.572237 109.152247) (xy 243.617918 109.114758) (xy 243.655407 109.069077)
(xy 243.683264 109.01696) (xy 243.700419 108.96041) (xy 243.706211 108.9016) (xy 243.706211 107.2016) (xy 243.700419 107.14279)
(xy 243.683264 107.08624) (xy 243.655407 107.034123) (xy 243.617918 106.988442) (xy 243.572237 106.950953) (xy 243.52012 106.923096)
(xy 243.46357 106.905941) (xy 243.40476 106.900149) (xy 242.989701 106.900149) (xy 243.092097 106.857735) (xy 243.296828 106.720938)
(xy 243.470938 106.546828) (xy 243.607735 106.342097) (xy 243.701963 106.114611) (xy 243.75 105.873114) (xy 243.75 105.626886)
(xy 243.701963 105.385389) (xy 243.607735 105.157903) (xy 243.470938 104.953172) (xy 243.296828 104.779062) (xy 243.092097 104.642265)
(xy 242.864611 104.548037) (xy 242.623114 104.5) (xy 242.376886 104.5) (xy 242.135389 104.548037) (xy 241.907903 104.642265)
(xy 241.703172 104.779062) (xy 241.529062 104.953172) (xy 241.392265 105.157903) (xy 241.298037 105.385389) (xy 241.25 105.626886)
(xy 241.25 105.873114) (xy 241.298037 106.114611) (xy 241.392265 106.342097) (xy 241.529062 106.546828) (xy 241.703172 106.720938)
(xy 241.907903 106.857735) (xy 242.010299 106.900149) (xy 241.70476 106.900149) (xy 241.64595 106.905941) (xy 241.5894 106.923096)
(xy 241.537283 106.950953) (xy 241.491602 106.988442) (xy 241.481478 107.000778) (xy 241.457794 106.965332) (xy 241.384668 106.892206)
(xy 241.298681 106.834751) (xy 241.203137 106.795176) (xy 241.101708 106.775) (xy 240.998292 106.775) (xy 240.896863 106.795176)
(xy 240.801319 106.834751) (xy 240.715332 106.892206) (xy 240.642206 106.965332) (xy 240.585654 107.049967) (xy 240.559489 107.032484)
(xy 240.350203 106.945794) (xy 240.128025 106.9016) (xy 239.901495 106.9016) (xy 239.679317 106.945794) (xy 239.470031 107.032484)
(xy 239.281678 107.158337) (xy 239.166259 107.273756) (xy 239.165249 107.271319) (xy 239.107794 107.185332) (xy 239.034668 107.112206)
(xy 238.948681 107.054751) (xy 238.853137 107.015176) (xy 238.751708 106.995) (xy 238.648292 106.995) (xy 238.546863 107.015176)
(xy 238.451319 107.054751) (xy 238.365332 107.112206) (xy 238.292206 107.185332) (xy 238.269227 107.219722) (xy 238.207842 107.158337)
(xy 238.019489 107.032484) (xy 237.810203 106.945794) (xy 237.588025 106.9016) (xy 237.361495 106.9016) (xy 237.139317 106.945794)
(xy 236.930031 107.032484) (xy 236.741678 107.158337) (xy 236.581497 107.318518) (xy 236.455644 107.506871) (xy 236.368954 107.716157)
(xy 236.32476 107.938335) (xy 236.08476 107.938335) (xy 236.040566 107.716157) (xy 235.953876 107.506871) (xy 235.828023 107.318518)
(xy 235.744283 107.234778) (xy 235.784668 107.207794) (xy 235.857794 107.134668) (xy 235.915249 107.048681) (xy 235.954824 106.953137)
(xy 235.975 106.851708) (xy 235.975 106.748292) (xy 235.954824 106.646863) (xy 235.915249 106.551319) (xy 235.857794 106.465332)
(xy 235.784668 106.392206) (xy 235.698681 106.334751) (xy 235.603137 106.295176) (xy 235.501708 106.275) (xy 235.398292 106.275)
(xy 235.296863 106.295176) (xy 235.201319 106.334751) (xy 235.115332 106.392206) (xy 235.042206 106.465332) (xy 234.984751 106.551319)
(xy 234.945176 106.646863) (xy 234.925 106.748292) (xy 234.925 106.851708) (xy 234.934924 106.9016) (xy 234.821495 106.9016)
(xy 234.599317 106.945794) (xy 234.390031 107.032484) (xy 234.201678 107.158337) (xy 234.041497 107.318518) (xy 233.915644 107.506871)
(xy 233.828954 107.716157) (xy 233.78476 107.938335) (xy 233.54476 107.938335) (xy 233.500566 107.716157) (xy 233.413876 107.506871)
(xy 233.288023 107.318518) (xy 233.127842 107.158337) (xy 232.939489 107.032484) (xy 232.730203 106.945794) (xy 232.508025 106.9016)
(xy 232.281495 106.9016) (xy 232.059317 106.945794) (xy 231.850031 107.032484) (xy 231.661678 107.158337) (xy 231.501497 107.318518)
(xy 231.375644 107.506871) (xy 231.288954 107.716157) (xy 231.24476 107.938335) (xy 230.957477 107.938335) (xy 230.986423 107.847051)
(xy 230.924773 107.630205) (xy 230.822003 107.429553) (xy 230.682062 107.252806) (xy 230.510329 107.106756) (xy 230.313403 106.997016)
(xy 230.098851 106.927803) (xy 230.059309 106.919938) (xy 229.87976 106.976891) (xy 229.82976 106.976891) (xy 229.650211 106.919938)
(xy 229.610669 106.927803) (xy 229.396117 106.997016) (xy 229.199191 107.106756) (xy 229.027458 107.252806) (xy 228.887517 107.429553)
(xy 228.784747 107.630205) (xy 228.723097 107.847051) (xy 220.836051 107.847051) (xy 220.836051 107.2016) (xy 220.830259 107.14279)
(xy 220.813104 107.08624) (xy 220.785247 107.034123) (xy 220.747758 106.988442) (xy 220.702077 106.950953) (xy 220.64996 106.923096)
(xy 220.59341 106.905941) (xy 220.5346 106.900149) (xy 218.8346 106.900149) (xy 218.77579 106.905941) (xy 218.71924 106.923096)
(xy 218.667123 106.950953) (xy 218.621442 106.988442) (xy 218.583953 107.034123) (xy 218.556096 107.08624) (xy 218.538941 107.14279)
(xy 218.533149 107.2016) (xy 217.920945 107.2016) (xy 217.877682 107.158337) (xy 217.689329 107.032484) (xy 217.480043 106.945794)
(xy 217.257865 106.9016) (xy 217.031335 106.9016) (xy 216.809157 106.945794) (xy 216.599871 107.032484) (xy 216.411518 107.158337)
(xy 216.251337 107.318518) (xy 216.125484 107.506871) (xy 216.038794 107.716157) (xy 215.9946 107.938335) (xy 215.7546 107.938335)
(xy 215.710406 107.716157) (xy 215.623716 107.506871) (xy 215.497863 107.318518) (xy 215.337682 107.158337) (xy 215.149329 107.032484)
(xy 214.940043 106.945794) (xy 214.717865 106.9016) (xy 214.491335 106.9016) (xy 214.269157 106.945794) (xy 214.059871 107.032484)
(xy 213.871518 107.158337) (xy 213.711337 107.318518) (xy 213.585484 107.506871) (xy 213.498794 107.716157) (xy 213.4546 107.938335)
(xy 213.2146 107.938335) (xy 213.170406 107.716157) (xy 213.083716 107.506871) (xy 212.957863 107.318518) (xy 212.797682 107.158337)
(xy 212.609329 107.032484) (xy 212.400043 106.945794) (xy 212.177865 106.9016) (xy 211.951335 106.9016) (xy 211.729157 106.945794)
(xy 211.519871 107.032484) (xy 211.331518 107.158337) (xy 211.171337 107.318518) (xy 211.045484 107.506871) (xy 210.958794 107.716157)
(xy 210.9146 107.938335) (xy 210.6746 107.938335) (xy 210.630406 107.716157) (xy 210.543716 107.506871) (xy 210.417863 107.318518)
(xy 210.257682 107.158337) (xy 210.069329 107.032484) (xy 209.860043 106.945794) (xy 209.637865 106.9016) (xy 209.411335 106.9016)
(xy 209.189157 106.945794) (xy 208.979871 107.032484) (xy 208.791518 107.158337) (xy 208.631337 107.318518) (xy 208.505484 107.506871)
(xy 208.418794 107.716157) (xy 208.3746 107.938335) (xy 208.087317 107.938335) (xy 208.116263 107.847051) (xy 208.054613 107.630205)
(xy 207.951843 107.429553) (xy 207.811902 107.252806) (xy 207.640169 107.106756) (xy 207.443243 106.997016) (xy 207.228691 106.927803)
(xy 207.189149 106.919938) (xy 207.0096 106.976891) (xy 206.9596 106.976891) (xy 206.780051 106.919938) (xy 206.740509 106.927803)
(xy 206.525957 106.997016) (xy 206.329031 107.106756) (xy 206.157298 107.252806) (xy 206.017357 107.429553) (xy 205.914587 107.630205)
(xy 205.852937 107.847051) (xy 202.831422 107.847051) (xy 201.841 106.85663) (xy 201.841 106.035372) (xy 202.37808 105.498292)
(xy 215.465 105.498292) (xy 215.465 105.601708) (xy 215.485176 105.703137) (xy 215.524751 105.798681) (xy 215.582206 105.884668)
(xy 215.655332 105.957794) (xy 215.741319 106.015249) (xy 215.836863 106.054824) (xy 215.938292 106.075) (xy 216.041708 106.075)
(xy 216.143137 106.054824) (xy 216.238681 106.015249) (xy 216.283109 105.985563) (xy 216.305332 106.007786) (xy 216.314206 106.013715)
(xy 216.306863 106.015176) (xy 216.211319 106.054751) (xy 216.125332 106.112206) (xy 216.052206 106.185332) (xy 215.994751 106.271319)
(xy 215.955176 106.366863) (xy 215.935 106.468292) (xy 215.935 106.571708) (xy 215.955176 106.673137) (xy 215.994751 106.768681)
(xy 216.052206 106.854668) (xy 216.125332 106.927794) (xy 216.211319 106.985249) (xy 216.306863 107.024824) (xy 216.408292 107.045)
(xy 216.511708 107.045) (xy 216.613137 107.024824) (xy 216.708681 106.985249) (xy 216.794668 106.927794) (xy 216.867794 106.854668)
(xy 216.925249 106.768681) (xy 216.964824 106.673137) (xy 216.985 106.571708) (xy 216.985 106.468292) (xy 216.964824 106.366863)
(xy 216.925249 106.271319) (xy 216.867794 106.185332) (xy 216.794668 106.112206) (xy 216.785794 106.106277) (xy 216.793137 106.104816)
(xy 216.888681 106.065241) (xy 216.97391 106.008292) (xy 217.865 106.008292) (xy 217.865 106.111708) (xy 217.885176 106.213137)
(xy 217.924751 106.308681) (xy 217.982206 106.394668) (xy 218.055332 106.467794) (xy 218.141319 106.525249) (xy 218.236863 106.564824)
(xy 218.338292 106.585) (xy 218.441708 106.585) (xy 218.543137 106.564824) (xy 218.638681 106.525249) (xy 218.724668 106.467794)
(xy 218.797794 106.394668) (xy 218.855249 106.308681) (xy 218.894824 106.213137) (xy 218.915 106.111708) (xy 218.915 106.108292)
(xy 220.065 106.108292) (xy 220.065 106.211708) (xy 220.085176 106.313137) (xy 220.124751 106.408681) (xy 220.182206 106.494668)
(xy 220.255332 106.567794) (xy 220.341319 106.625249) (xy 220.436863 106.664824) (xy 220.538292 106.685) (xy 220.641708 106.685)
(xy 220.743137 106.664824) (xy 220.838681 106.625249) (xy 220.924668 106.567794) (xy 220.997794 106.494668) (xy 221.055249 106.408681)
(xy 221.094824 106.313137) (xy 221.109711 106.238292) (xy 221.555 106.238292) (xy 221.555 106.341708) (xy 221.575176 106.443137)
(xy 221.614751 106.538681) (xy 221.672206 106.624668) (xy 221.745332 106.697794) (xy 221.831319 106.755249) (xy 221.926863 106.794824)
(xy 222.028292 106.815) (xy 222.131708 106.815) (xy 222.233137 106.794824) (xy 222.328681 106.755249) (xy 222.414668 106.697794)
(xy 222.487794 106.624668) (xy 222.545249 106.538681) (xy 222.584824 106.443137) (xy 222.605 106.341708) (xy 222.605 106.238292)
(xy 222.584824 106.136863) (xy 222.545249 106.041319) (xy 222.487794 105.955332) (xy 222.414668 105.882206) (xy 222.328681 105.824751)
(xy 222.233137 105.785176) (xy 222.131708 105.765) (xy 222.028292 105.765) (xy 221.926863 105.785176) (xy 221.831319 105.824751)
(xy 221.745332 105.882206) (xy 221.672206 105.955332) (xy 221.614751 106.041319) (xy 221.575176 106.136863) (xy 221.555 106.238292)
(xy 221.109711 106.238292) (xy 221.115 106.211708) (xy 221.115 106.108292) (xy 221.094824 106.006863) (xy 221.055249 105.911319)
(xy 220.997794 105.825332) (xy 220.924668 105.752206) (xy 220.838681 105.694751) (xy 220.743137 105.655176) (xy 220.641708 105.635)
(xy 220.538292 105.635) (xy 220.436863 105.655176) (xy 220.341319 105.694751) (xy 220.255332 105.752206) (xy 220.182206 105.825332)
(xy 220.124751 105.911319) (xy 220.085176 106.006863) (xy 220.065 106.108292) (xy 218.915 106.108292) (xy 218.915 106.008292)
(xy 218.894824 105.906863) (xy 218.855249 105.811319) (xy 218.797794 105.725332) (xy 218.724668 105.652206) (xy 218.638681 105.594751)
(xy 218.543137 105.555176) (xy 218.441708 105.535) (xy 218.338292 105.535) (xy 218.236863 105.555176) (xy 218.141319 105.594751)
(xy 218.055332 105.652206) (xy 217.982206 105.725332) (xy 217.924751 105.811319) (xy 217.885176 105.906863) (xy 217.865 106.008292)
(xy 216.97391 106.008292) (xy 216.974668 106.007786) (xy 217.047794 105.93466) (xy 217.105249 105.848673) (xy 217.144824 105.753129)
(xy 217.161051 105.671552) (xy 217.178292 105.674982) (xy 217.281708 105.674982) (xy 217.383137 105.654806) (xy 217.478681 105.615231)
(xy 217.564668 105.557776) (xy 217.637794 105.48465) (xy 217.695249 105.398663) (xy 217.734824 105.303119) (xy 217.755 105.20169)
(xy 217.755 105.098274) (xy 217.743549 105.040709) (xy 217.773137 105.034824) (xy 217.868681 104.995249) (xy 217.954668 104.937794)
(xy 218.027794 104.864668) (xy 218.085249 104.778681) (xy 218.124824 104.683137) (xy 218.141701 104.598292) (xy 218.595033 104.598292)
(xy 218.595033 104.701708) (xy 218.615209 104.803137) (xy 218.654784 104.898681) (xy 218.712239 104.984668) (xy 218.785365 105.057794)
(xy 218.871352 105.115249) (xy 218.966896 105.154824) (xy 219.068325 105.175) (xy 219.171741 105.175) (xy 219.27317 105.154824)
(xy 219.368714 105.115249) (xy 219.454701 105.057794) (xy 219.527827 104.984668) (xy 219.585282 104.898681) (xy 219.624857 104.803137)
(xy 219.635766 104.748292) (xy 222.615 104.748292) (xy 222.615 104.851708) (xy 222.635176 104.953137) (xy 222.674751 105.048681)
(xy 222.732206 105.134668) (xy 222.805332 105.207794) (xy 222.891319 105.265249) (xy 222.986863 105.304824) (xy 223.088292 105.325)
(xy 223.191708 105.325) (xy 223.293137 105.304824) (xy 223.388681 105.265249) (xy 223.474668 105.207794) (xy 223.547794 105.134668)
(xy 223.605249 105.048681) (xy 223.617836 105.018292) (xy 225.115 105.018292) (xy 225.115 105.121708) (xy 225.135176 105.223137)
(xy 225.174751 105.318681) (xy 225.232206 105.404668) (xy 225.305332 105.477794) (xy 225.391319 105.535249) (xy 225.486863 105.574824)
(xy 225.588292 105.595) (xy 225.691708 105.595) (xy 225.793137 105.574824) (xy 225.888681 105.535249) (xy 225.974668 105.477794)
(xy 226.047794 105.404668) (xy 226.105249 105.318681) (xy 226.144824 105.223137) (xy 226.165 105.121708) (xy 226.165 105.048292)
(xy 226.425 105.048292) (xy 226.425 105.151708) (xy 226.445176 105.253137) (xy 226.484751 105.348681) (xy 226.542206 105.434668)
(xy 226.615332 105.507794) (xy 226.701319 105.565249) (xy 226.796863 105.604824) (xy 226.898292 105.625) (xy 227.001708 105.625)
(xy 227.103137 105.604824) (xy 227.198681 105.565249) (xy 227.284668 105.507794) (xy 227.357794 105.434668) (xy 227.415249 105.348681)
(xy 227.454824 105.253137) (xy 227.475 105.151708) (xy 227.475 105.048292) (xy 227.454824 104.946863) (xy 227.415249 104.851319)
(xy 227.357794 104.765332) (xy 227.284668 104.692206) (xy 227.198681 104.634751) (xy 227.103137 104.595176) (xy 227.001708 104.575)
(xy 226.898292 104.575) (xy 226.796863 104.595176) (xy 226.701319 104.634751) (xy 226.615332 104.692206) (xy 226.542206 104.765332)
(xy 226.484751 104.851319) (xy 226.445176 104.946863) (xy 226.425 105.048292) (xy 226.165 105.048292) (xy 226.165 105.018292)
(xy 226.144824 104.916863) (xy 226.105249 104.821319) (xy 226.047794 104.735332) (xy 225.974668 104.662206) (xy 225.888681 104.604751)
(xy 225.793137 104.565176) (xy 225.691708 104.545) (xy 225.588292 104.545) (xy 225.486863 104.565176) (xy 225.391319 104.604751)
(xy 225.305332 104.662206) (xy 225.232206 104.735332) (xy 225.174751 104.821319) (xy 225.135176 104.916863) (xy 225.115 105.018292)
(xy 223.617836 105.018292) (xy 223.644824 104.953137) (xy 223.665 104.851708) (xy 223.665 104.748292) (xy 223.644824 104.646863)
(xy 223.605249 104.551319) (xy 223.547794 104.465332) (xy 223.474668 104.392206) (xy 223.388681 104.334751) (xy 223.293137 104.295176)
(xy 223.191708 104.275) (xy 223.088292 104.275) (xy 222.986863 104.295176) (xy 222.891319 104.334751) (xy 222.805332 104.392206)
(xy 222.732206 104.465332) (xy 222.674751 104.551319) (xy 222.635176 104.646863) (xy 222.615 104.748292) (xy 219.635766 104.748292)
(xy 219.645033 104.701708) (xy 219.645033 104.598292) (xy 219.624857 104.496863) (xy 219.585282 104.401319) (xy 219.527827 104.315332)
(xy 219.454701 104.242206) (xy 219.368714 104.184751) (xy 219.27317 104.145176) (xy 219.171741 104.125) (xy 219.068325 104.125)
(xy 218.966896 104.145176) (xy 218.871352 104.184751) (xy 218.785365 104.242206) (xy 218.712239 104.315332) (xy 218.654784 104.401319)
(xy 218.615209 104.496863) (xy 218.595033 104.598292) (xy 218.141701 104.598292) (xy 218.145 104.581708) (xy 218.145 104.478292)
(xy 218.124824 104.376863) (xy 218.085249 104.281319) (xy 218.027794 104.195332) (xy 217.954668 104.122206) (xy 217.868681 104.064751)
(xy 217.773137 104.025176) (xy 217.671708 104.005) (xy 217.568292 104.005) (xy 217.466863 104.025176) (xy 217.371319 104.064751)
(xy 217.285332 104.122206) (xy 217.212206 104.195332) (xy 217.154751 104.281319) (xy 217.115176 104.376863) (xy 217.095 104.478292)
(xy 217.095 104.581708) (xy 217.106451 104.639273) (xy 217.076863 104.645158) (xy 216.981319 104.684733) (xy 216.895332 104.742188)
(xy 216.822206 104.815314) (xy 216.764751 104.901301) (xy 216.725176 104.996845) (xy 216.708949 105.078422) (xy 216.691708 105.074992)
(xy 216.588292 105.074992) (xy 216.486863 105.095168) (xy 216.391319 105.134743) (xy 216.346891 105.164429) (xy 216.324668 105.142206)
(xy 216.238681 105.084751) (xy 216.143137 105.045176) (xy 216.041708 105.025) (xy 215.938292 105.025) (xy 215.836863 105.045176)
(xy 215.741319 105.084751) (xy 215.655332 105.142206) (xy 215.582206 105.215332) (xy 215.524751 105.301319) (xy 215.485176 105.396863)
(xy 215.465 105.498292) (xy 202.37808 105.498292) (xy 204.31808 103.558292) (xy 220.805 103.558292) (xy 220.805 103.661708)
(xy 220.825176 103.763137) (xy 220.864751 103.858681) (xy 220.922206 103.944668) (xy 220.995332 104.017794) (xy 221.081319 104.075249)
(xy 221.176863 104.114824) (xy 221.278292 104.135) (xy 221.381708 104.135) (xy 221.483137 104.114824) (xy 221.578681 104.075249)
(xy 221.664668 104.017794) (xy 221.737794 103.944668) (xy 221.795249 103.858681) (xy 221.834824 103.763137) (xy 221.855 103.661708)
(xy 221.855 103.558292) (xy 221.834824 103.456863) (xy 221.795249 103.361319) (xy 221.737794 103.275332) (xy 221.716782 103.25432)
(xy 221.738681 103.245249) (xy 221.824668 103.187794) (xy 221.87417 103.138292) (xy 222.615 103.138292) (xy 222.615 103.241708)
(xy 222.635176 103.343137) (xy 222.674751 103.438681) (xy 222.732206 103.524668) (xy 222.805332 103.597794) (xy 222.891319 103.655249)
(xy 222.986863 103.694824) (xy 223.088292 103.715) (xy 223.191708 103.715) (xy 223.293137 103.694824) (xy 223.388681 103.655249)
(xy 223.474668 103.597794) (xy 223.547794 103.524668) (xy 223.605249 103.438681) (xy 223.644824 103.343137) (xy 223.665 103.241708)
(xy 223.665 103.198292) (xy 231.924924 103.198292) (xy 231.924924 103.301708) (xy 231.9451 103.403137) (xy 231.984675 103.498681)
(xy 232.04213 103.584668) (xy 232.115256 103.657794) (xy 232.201243 103.715249) (xy 232.262286 103.740533) (xy 232.242753 103.78769)
(xy 232.222577 103.889119) (xy 232.222577 103.992535) (xy 232.242753 104.093964) (xy 232.282328 104.189508) (xy 232.339783 104.275495)
(xy 232.364721 104.300433) (xy 232.331294 104.381134) (xy 232.311118 104.482563) (xy 232.311118 104.585979) (xy 232.331112 104.686494)
(xy 232.301684 104.706157) (xy 232.228558 104.779283) (xy 232.171103 104.86527) (xy 232.131528 104.960814) (xy 232.111352 105.062243)
(xy 232.111352 105.165659) (xy 232.131528 105.267088) (xy 232.171103 105.362632) (xy 232.228558 105.448619) (xy 232.301684 105.521745)
(xy 232.387671 105.5792) (xy 232.483215 105.618775) (xy 232.584644 105.638951) (xy 232.68806 105.638951) (xy 232.789489 105.618775)
(xy 232.885033 105.5792) (xy 232.97102 105.521745) (xy 233.044146 105.448619) (xy 233.101601 105.362632) (xy 233.141176 105.267088)
(xy 233.161352 105.165659) (xy 233.161352 105.062243) (xy 233.141358 104.961728) (xy 233.170786 104.942065) (xy 233.243912 104.868939)
(xy 233.301367 104.782952) (xy 233.340942 104.687408) (xy 233.361118 104.585979) (xy 233.361118 104.482563) (xy 233.340942 104.381134)
(xy 233.301367 104.28559) (xy 233.243912 104.199603) (xy 233.218974 104.174665) (xy 233.252401 104.093964) (xy 233.272577 103.992535)
(xy 233.272577 103.889119) (xy 233.252401 103.78769) (xy 233.212826 103.692146) (xy 233.155371 103.606159) (xy 233.082245 103.533033)
(xy 232.996258 103.475578) (xy 232.935215 103.450294) (xy 232.954748 103.403137) (xy 232.974924 103.301708) (xy 232.974924 103.198292)
(xy 232.954748 103.096863) (xy 232.915173 103.001319) (xy 232.857718 102.915332) (xy 232.784592 102.842206) (xy 232.698605 102.784751)
(xy 232.603061 102.745176) (xy 232.501632 102.725) (xy 232.398216 102.725) (xy 232.296787 102.745176) (xy 232.201243 102.784751)
(xy 232.115256 102.842206) (xy 232.04213 102.915332) (xy 231.984675 103.001319) (xy 231.9451 103.096863) (xy 231.924924 103.198292)
(xy 223.665 103.198292) (xy 223.665 103.138292) (xy 223.644824 103.036863) (xy 223.605249 102.941319) (xy 223.547794 102.855332)
(xy 223.474668 102.782206) (xy 223.388681 102.724751) (xy 223.293137 102.685176) (xy 223.191708 102.665) (xy 223.088292 102.665)
(xy 222.986863 102.685176) (xy 222.891319 102.724751) (xy 222.805332 102.782206) (xy 222.732206 102.855332) (xy 222.674751 102.941319)
(xy 222.635176 103.036863) (xy 222.615 103.138292) (xy 221.87417 103.138292) (xy 221.897794 103.114668) (xy 221.955249 103.028681)
(xy 221.994824 102.933137) (xy 222.015 102.831708) (xy 222.015 102.728292) (xy 221.994824 102.626863) (xy 221.955249 102.531319)
(xy 221.897794 102.445332) (xy 221.824668 102.372206) (xy 221.738681 102.314751) (xy 221.643137 102.275176) (xy 221.541708 102.255)
(xy 221.438292 102.255) (xy 221.336863 102.275176) (xy 221.241319 102.314751) (xy 221.155332 102.372206) (xy 221.082206 102.445332)
(xy 221.024751 102.531319) (xy 220.985176 102.626863) (xy 220.965 102.728292) (xy 220.965 102.831708) (xy 220.985176 102.933137)
(xy 221.024751 103.028681) (xy 221.082206 103.114668) (xy 221.103218 103.13568) (xy 221.081319 103.144751) (xy 220.995332 103.202206)
(xy 220.922206 103.275332) (xy 220.864751 103.361319) (xy 220.825176 103.456863) (xy 220.805 103.558292) (xy 204.31808 103.558292)
(xy 206.14808 101.728292) (xy 230.145 101.728292) (xy 230.145 101.831708) (xy 230.165176 101.933137) (xy 230.204751 102.028681)
(xy 230.262206 102.114668) (xy 230.335332 102.187794) (xy 230.421319 102.245249) (xy 230.516863 102.284824) (xy 230.618292 102.305)
(xy 230.721708 102.305) (xy 230.823137 102.284824) (xy 230.918681 102.245249) (xy 231.004668 102.187794) (xy 231.077794 102.114668)
(xy 231.135249 102.028681) (xy 231.174824 101.933137) (xy 231.195 101.831708) (xy 231.195 101.748292) (xy 231.475 101.748292)
(xy 231.475 101.851708) (xy 231.495176 101.953137) (xy 231.534751 102.048681) (xy 231.592206 102.134668) (xy 231.665332 102.207794)
(xy 231.751319 102.265249) (xy 231.846863 102.304824) (xy 231.948292 102.325) (xy 232.051708 102.325) (xy 232.153137 102.304824)
(xy 232.248681 102.265249) (xy 232.334668 102.207794) (xy 232.407794 102.134668) (xy 232.465249 102.048681) (xy 232.504824 101.953137)
(xy 232.525 101.851708) (xy 232.525 101.748292) (xy 232.504824 101.646863) (xy 232.465249 101.551319) (xy 232.407794 101.465332)
(xy 232.334668 101.392206) (xy 232.248681 101.334751) (xy 232.153137 101.295176) (xy 232.051708 101.275) (xy 231.948292 101.275)
(xy 231.846863 101.295176) (xy 231.751319 101.334751) (xy 231.665332 101.392206) (xy 231.592206 101.465332) (xy 231.534751 101.551319)
(xy 231.495176 101.646863) (xy 231.475 101.748292) (xy 231.195 101.748292) (xy 231.195 101.728292) (xy 231.174824 101.626863)
(xy 231.135249 101.531319) (xy 231.077794 101.445332) (xy 231.004668 101.372206) (xy 230.918681 101.314751) (xy 230.823137 101.275176)
(xy 230.721708 101.255) (xy 230.618292 101.255) (xy 230.516863 101.275176) (xy 230.421319 101.314751) (xy 230.335332 101.372206)
(xy 230.262206 101.445332) (xy 230.204751 101.531319) (xy 230.165176 101.626863) (xy 230.145 101.728292) (xy 206.14808 101.728292)
(xy 206.72808 101.148292) (xy 222.615 101.148292) (xy 222.615 101.251708) (xy 222.635176 101.353137) (xy 222.674751 101.448681)
(xy 222.732206 101.534668) (xy 222.805332 101.607794) (xy 222.891319 101.665249) (xy 222.986863 101.704824) (xy 223.088292 101.725)
(xy 223.191708 101.725) (xy 223.293137 101.704824) (xy 223.388681 101.665249) (xy 223.474668 101.607794) (xy 223.547794 101.534668)
(xy 223.605249 101.448681) (xy 223.644824 101.353137) (xy 223.665 101.251708) (xy 223.665 101.148292) (xy 223.644824 101.046863)
(xy 223.605249 100.951319) (xy 223.549772 100.868292) (xy 225.115 100.868292) (xy 225.115 100.971708) (xy 225.135176 101.073137)
(xy 225.174751 101.168681) (xy 225.232206 101.254668) (xy 225.305332 101.327794) (xy 225.391319 101.385249) (xy 225.486863 101.424824)
(xy 225.588292 101.445) (xy 225.691708 101.445) (xy 225.793137 101.424824) (xy 225.888681 101.385249) (xy 225.974668 101.327794)
(xy 226.047794 101.254668) (xy 226.105249 101.168681) (xy 226.144824 101.073137) (xy 226.165 100.971708) (xy 226.165 100.868292)
(xy 226.144824 100.766863) (xy 226.105249 100.671319) (xy 226.047794 100.585332) (xy 225.974668 100.512206) (xy 225.953845 100.498292)
(xy 236.775 100.498292) (xy 236.775 100.601708) (xy 236.795176 100.703137) (xy 236.834751 100.798681) (xy 236.892206 100.884668)
(xy 236.965332 100.957794) (xy 237.051319 101.015249) (xy 237.146863 101.054824) (xy 237.248292 101.075) (xy 237.351708 101.075)
(xy 237.440126 101.057412) (xy 237.402206 101.095332) (xy 237.344751 101.181319) (xy 237.305176 101.276863) (xy 237.285 101.378292)
(xy 237.285 101.481708) (xy 237.305176 101.583137) (xy 237.344751 101.678681) (xy 237.402206 101.764668) (xy 237.475332 101.837794)
(xy 237.561319 101.895249) (xy 237.656863 101.934824) (xy 237.758292 101.955) (xy 237.861708 101.955) (xy 237.963137 101.934824)
(xy 238.058681 101.895249) (xy 238.144668 101.837794) (xy 238.217794 101.764668) (xy 238.275249 101.678681) (xy 238.314824 101.583137)
(xy 238.335 101.481708) (xy 238.335 101.378292) (xy 238.314824 101.276863) (xy 238.309307 101.263543) (xy 238.353137 101.254824)
(xy 238.448681 101.215249) (xy 238.534668 101.157794) (xy 238.607794 101.084668) (xy 238.665249 100.998681) (xy 238.704824 100.903137)
(xy 238.725 100.801708) (xy 238.725 100.698292) (xy 238.704824 100.596863) (xy 238.665249 100.501319) (xy 238.607794 100.415332)
(xy 238.534668 100.342206) (xy 238.448681 100.284751) (xy 238.353137 100.245176) (xy 238.251708 100.225) (xy 238.148292 100.225)
(xy 238.046863 100.245176) (xy 237.951319 100.284751) (xy 237.865332 100.342206) (xy 237.805795 100.401743) (xy 237.804824 100.396863)
(xy 237.765249 100.301319) (xy 237.707794 100.215332) (xy 237.634668 100.142206) (xy 237.548681 100.084751) (xy 237.453137 100.045176)
(xy 237.351708 100.025) (xy 237.248292 100.025) (xy 237.146863 100.045176) (xy 237.051319 100.084751) (xy 236.965332 100.142206)
(xy 236.892206 100.215332) (xy 236.834751 100.301319) (xy 236.795176 100.396863) (xy 236.775 100.498292) (xy 225.953845 100.498292)
(xy 225.888681 100.454751) (xy 225.793137 100.415176) (xy 225.691708 100.395) (xy 225.588292 100.395) (xy 225.486863 100.415176)
(xy 225.391319 100.454751) (xy 225.305332 100.512206) (xy 225.232206 100.585332) (xy 225.174751 100.671319) (xy 225.135176 100.766863)
(xy 225.115 100.868292) (xy 223.549772 100.868292) (xy 223.547794 100.865332) (xy 223.474668 100.792206) (xy 223.388681 100.734751)
(xy 223.293137 100.695176) (xy 223.191708 100.675) (xy 223.088292 100.675) (xy 222.986863 100.695176) (xy 222.891319 100.734751)
(xy 222.805332 100.792206) (xy 222.732206 100.865332) (xy 222.674751 100.951319) (xy 222.635176 101.046863) (xy 222.615 101.148292)
(xy 206.72808 101.148292) (xy 208.276365 99.600008) (xy 209.060707 99.600008) (xy 209.1 99.603878) (xy 209.139293 99.600008)
(xy 209.256827 99.588432) (xy 209.407628 99.542687) (xy 209.546606 99.468401) (xy 209.632034 99.398292) (xy 220.375 99.398292)
(xy 220.375 99.501708) (xy 220.395176 99.603137) (xy 220.434751 99.698681) (xy 220.492206 99.784668) (xy 220.565332 99.857794)
(xy 220.651319 99.915249) (xy 220.746863 99.954824) (xy 220.848292 99.975) (xy 220.951708 99.975) (xy 221.053137 99.954824)
(xy 221.148681 99.915249) (xy 221.234668 99.857794) (xy 221.307794 99.784668) (xy 221.332099 99.748292) (xy 223.825 99.748292)
(xy 223.825 99.851708) (xy 223.845176 99.953137) (xy 223.884751 100.048681) (xy 223.942206 100.134668) (xy 224.015332 100.207794)
(xy 224.101319 100.265249) (xy 224.196863 100.304824) (xy 224.298292 100.325) (xy 224.401708 100.325) (xy 224.503137 100.304824)
(xy 224.598681 100.265249) (xy 224.684668 100.207794) (xy 224.757794 100.134668) (xy 224.815249 100.048681) (xy 224.854824 99.953137)
(xy 224.875 99.851708) (xy 224.875 99.748292) (xy 224.854824 99.646863) (xy 224.815249 99.551319) (xy 224.757794 99.465332)
(xy 224.684668 99.392206) (xy 224.598681 99.334751) (xy 224.503137 99.295176) (xy 224.401708 99.275) (xy 224.298292 99.275)
(xy 224.196863 99.295176) (xy 224.101319 99.334751) (xy 224.015332 99.392206) (xy 223.942206 99.465332) (xy 223.884751 99.551319)
(xy 223.845176 99.646863) (xy 223.825 99.748292) (xy 221.332099 99.748292) (xy 221.365249 99.698681) (xy 221.404824 99.603137)
(xy 221.425 99.501708) (xy 221.425 99.398292) (xy 221.422285 99.384644) (xy 221.446863 99.394824) (xy 221.548292 99.415)
(xy 221.651708 99.415) (xy 221.753137 99.394824) (xy 221.848681 99.355249) (xy 221.934668 99.297794) (xy 222.007794 99.224668)
(xy 222.065249 99.138681) (xy 222.104824 99.043137) (xy 222.125 98.941708) (xy 222.125 98.838292) (xy 222.104824 98.736863)
(xy 222.065249 98.641319) (xy 222.03764 98.6) (xy 222.065249 98.558681) (xy 222.104824 98.463137) (xy 222.125 98.361708)
(xy 222.125 98.270367) (xy 222.148292 98.275) (xy 222.251708 98.275) (xy 222.353137 98.254824) (xy 222.448681 98.215249)
(xy 222.534668 98.157794) (xy 222.607794 98.084668) (xy 222.665249 97.998681) (xy 222.704824 97.903137) (xy 222.725 97.801708)
(xy 222.725 97.698292) (xy 223.625 97.698292) (xy 223.625 97.801708) (xy 223.645176 97.903137) (xy 223.684751 97.998681)
(xy 223.742206 98.084668) (xy 223.815332 98.157794) (xy 223.901319 98.215249) (xy 223.996863 98.254824) (xy 224.098292 98.275)
(xy 224.201708 98.275) (xy 224.303137 98.254824) (xy 224.398681 98.215249) (xy 224.484668 98.157794) (xy 224.557794 98.084668)
(xy 224.615249 97.998681) (xy 224.654824 97.903137) (xy 224.675 97.801708) (xy 224.675 97.698292) (xy 224.654824 97.596863)
(xy 224.615249 97.501319) (xy 224.557794 97.415332) (xy 224.484668 97.342206) (xy 224.398681 97.284751) (xy 224.31066 97.248292)
(xy 225.525 97.248292) (xy 225.525 97.351708) (xy 225.545176 97.453137) (xy 225.584751 97.548681) (xy 225.642206 97.634668)
(xy 225.715332 97.707794) (xy 225.801319 97.765249) (xy 225.896863 97.804824) (xy 225.998292 97.825) (xy 226.101708 97.825)
(xy 226.203137 97.804824) (xy 226.214783 97.8) (xy 227.25 97.8) (xy 227.255764 97.858527) (xy 227.272836 97.914805)
(xy 227.300559 97.966671) (xy 227.337868 98.012132) (xy 228.987868 99.662132) (xy 229.033329 99.699441) (xy 229.085195 99.727164)
(xy 229.141473 99.744236) (xy 229.2 99.75) (xy 230.75 99.75) (xy 230.808527 99.744236) (xy 230.864805 99.727164)
(xy 230.916671 99.699441) (xy 230.962132 99.662132) (xy 231.325972 99.298292) (xy 234.725 99.298292) (xy 234.725 99.401708)
(xy 234.745176 99.503137) (xy 234.784751 99.598681) (xy 234.842206 99.684668) (xy 234.915332 99.757794) (xy 235.001319 99.815249)
(xy 235.096863 99.854824) (xy 235.198292 99.875) (xy 235.301708 99.875) (xy 235.403137 99.854824) (xy 235.498681 99.815249)
(xy 235.584668 99.757794) (xy 235.657794 99.684668) (xy 235.715249 99.598681) (xy 235.73612 99.548292) (xy 239.2 99.548292)
(xy 239.2 99.651708) (xy 239.220176 99.753137) (xy 239.259751 99.848681) (xy 239.317206 99.934668) (xy 239.390332 100.007794)
(xy 239.476319 100.065249) (xy 239.571863 100.104824) (xy 239.673292 100.125) (xy 239.776708 100.125) (xy 239.878137 100.104824)
(xy 239.973681 100.065249) (xy 240.059668 100.007794) (xy 240.132794 99.934668) (xy 240.190249 99.848681) (xy 240.229824 99.753137)
(xy 240.25 99.651708) (xy 240.25 99.548292) (xy 240.229824 99.446863) (xy 240.190249 99.351319) (xy 240.132794 99.265332)
(xy 240.059668 99.192206) (xy 239.973681 99.134751) (xy 239.878137 99.095176) (xy 239.776708 99.075) (xy 239.673292 99.075)
(xy 239.571863 99.095176) (xy 239.476319 99.134751) (xy 239.390332 99.192206) (xy 239.317206 99.265332) (xy 239.259751 99.351319)
(xy 239.220176 99.446863) (xy 239.2 99.548292) (xy 235.73612 99.548292) (xy 235.754824 99.503137) (xy 235.775 99.401708)
(xy 235.775 99.298292) (xy 235.754824 99.196863) (xy 235.715249 99.101319) (xy 235.657794 99.015332) (xy 235.584668 98.942206)
(xy 235.498681 98.884751) (xy 235.403137 98.845176) (xy 235.301708 98.825) (xy 235.198292 98.825) (xy 235.096863 98.845176)
(xy 235.001319 98.884751) (xy 234.915332 98.942206) (xy 234.842206 99.015332) (xy 234.784751 99.101319) (xy 234.745176 99.196863)
(xy 234.725 99.298292) (xy 231.325972 99.298292) (xy 231.925972 98.698292) (xy 239.85 98.698292) (xy 239.85 98.801708)
(xy 239.870176 98.903137) (xy 239.909751 98.998681) (xy 239.967206 99.084668) (xy 240.040332 99.157794) (xy 240.126319 99.215249)
(xy 240.221863 99.254824) (xy 240.323292 99.275) (xy 240.426708 99.275) (xy 240.528137 99.254824) (xy 240.623681 99.215249)
(xy 240.709668 99.157794) (xy 240.782794 99.084668) (xy 240.840249 98.998681) (xy 240.879824 98.903137) (xy 240.9 98.801708)
(xy 240.9 98.698292) (xy 242.325 98.698292) (xy 242.325 98.801708) (xy 242.345176 98.903137) (xy 242.384751 98.998681)
(xy 242.442206 99.084668) (xy 242.515332 99.157794) (xy 242.601319 99.215249) (xy 242.696863 99.254824) (xy 242.798292 99.275)
(xy 242.901708 99.275) (xy 243.003137 99.254824) (xy 243.098681 99.215249) (xy 243.184668 99.157794) (xy 243.257794 99.084668)
(xy 243.315249 98.998681) (xy 243.354824 98.903137) (xy 243.375 98.801708) (xy 243.375 98.698292) (xy 243.354824 98.596863)
(xy 243.315249 98.501319) (xy 243.257794 98.415332) (xy 243.184668 98.342206) (xy 243.098681 98.284751) (xy 243.003137 98.245176)
(xy 242.901708 98.225) (xy 242.798292 98.225) (xy 242.696863 98.245176) (xy 242.601319 98.284751) (xy 242.515332 98.342206)
(xy 242.442206 98.415332) (xy 242.384751 98.501319) (xy 242.345176 98.596863) (xy 242.325 98.698292) (xy 240.9 98.698292)
(xy 240.879824 98.596863) (xy 240.840249 98.501319) (xy 240.782794 98.415332) (xy 240.709668 98.342206) (xy 240.623681 98.284751)
(xy 240.528137 98.245176) (xy 240.426708 98.225) (xy 240.323292 98.225) (xy 240.221863 98.245176) (xy 240.126319 98.284751)
(xy 240.040332 98.342206) (xy 239.967206 98.415332) (xy 239.909751 98.501319) (xy 239.870176 98.596863) (xy 239.85 98.698292)
(xy 231.925972 98.698292) (xy 233.212132 97.412132) (xy 233.249441 97.366671) (xy 233.277164 97.314805) (xy 233.294236 97.258527)
(xy 233.3 97.2) (xy 233.3 97.198292) (xy 239.85 97.198292) (xy 239.85 97.301708) (xy 239.870176 97.403137)
(xy 239.909751 97.498681) (xy 239.967206 97.584668) (xy 240.040332 97.657794) (xy 240.126319 97.715249) (xy 240.221863 97.754824)
(xy 240.323292 97.775) (xy 240.426708 97.775) (xy 240.528137 97.754824) (xy 240.623681 97.715249) (xy 240.709668 97.657794)
(xy 240.782794 97.584668) (xy 240.840249 97.498681) (xy 240.879824 97.403137) (xy 240.9 97.301708) (xy 240.9 97.198292)
(xy 242.325 97.198292) (xy 242.325 97.301708) (xy 242.345176 97.403137) (xy 242.384751 97.498681) (xy 242.442206 97.584668)
(xy 242.515332 97.657794) (xy 242.601319 97.715249) (xy 242.696863 97.754824) (xy 242.798292 97.775) (xy 242.901708 97.775)
(xy 243.003137 97.754824) (xy 243.098681 97.715249) (xy 243.184668 97.657794) (xy 243.257794 97.584668) (xy 243.315249 97.498681)
(xy 243.354824 97.403137) (xy 243.375 97.301708) (xy 243.375 97.198292) (xy 243.354824 97.096863) (xy 243.315249 97.001319)
(xy 243.257794 96.915332) (xy 243.184668 96.842206) (xy 243.098681 96.784751) (xy 243.003137 96.745176) (xy 242.901708 96.725)
(xy 242.798292 96.725) (xy 242.696863 96.745176) (xy 242.601319 96.784751) (xy 242.515332 96.842206) (xy 242.442206 96.915332)
(xy 242.384751 97.001319) (xy 242.345176 97.096863) (xy 242.325 97.198292) (xy 240.9 97.198292) (xy 240.879824 97.096863)
(xy 240.840249 97.001319) (xy 240.782794 96.915332) (xy 240.709668 96.842206) (xy 240.623681 96.784751) (xy 240.528137 96.745176)
(xy 240.426708 96.725) (xy 240.323292 96.725) (xy 240.221863 96.745176) (xy 240.126319 96.784751) (xy 240.040332 96.842206)
(xy 239.967206 96.915332) (xy 239.909751 97.001319) (xy 239.870176 97.096863) (xy 239.85 97.198292) (xy 233.3 97.198292)
(xy 233.3 95.698292) (xy 239.85 95.698292) (xy 239.85 95.801708) (xy 239.870176 95.903137) (xy 239.909751 95.998681)
(xy 239.967206 96.084668) (xy 240.040332 96.157794) (xy 240.126319 96.215249) (xy 240.221863 96.254824) (xy 240.323292 96.275)
(xy 240.426708 96.275) (xy 240.528137 96.254824) (xy 240.623681 96.215249) (xy 240.709668 96.157794) (xy 240.782794 96.084668)
(xy 240.840249 95.998681) (xy 240.879824 95.903137) (xy 240.9 95.801708) (xy 240.9 95.698292) (xy 242.325 95.698292)
(xy 242.325 95.801708) (xy 242.345176 95.903137) (xy 242.384751 95.998681) (xy 242.442206 96.084668) (xy 242.515332 96.157794)
(xy 242.601319 96.215249) (xy 242.696863 96.254824) (xy 242.798292 96.275) (xy 242.901708 96.275) (xy 243.003137 96.254824)
(xy 243.098681 96.215249) (xy 243.184668 96.157794) (xy 243.257794 96.084668) (xy 243.315249 95.998681) (xy 243.354824 95.903137)
(xy 243.375 95.801708) (xy 243.375 95.698292) (xy 243.354824 95.596863) (xy 243.315249 95.501319) (xy 243.257794 95.415332)
(xy 243.184668 95.342206) (xy 243.098681 95.284751) (xy 243.003137 95.245176) (xy 242.901708 95.225) (xy 242.798292 95.225)
(xy 242.696863 95.245176) (xy 242.601319 95.284751) (xy 242.515332 95.342206) (xy 242.442206 95.415332) (xy 242.384751 95.501319)
(xy 242.345176 95.596863) (xy 242.325 95.698292) (xy 240.9 95.698292) (xy 240.879824 95.596863) (xy 240.840249 95.501319)
(xy 240.782794 95.415332) (xy 240.709668 95.342206) (xy 240.623681 95.284751) (xy 240.528137 95.245176) (xy 240.426708 95.225)
(xy 240.323292 95.225) (xy 240.221863 95.245176) (xy 240.126319 95.284751) (xy 240.040332 95.342206) (xy 239.967206 95.415332)
(xy 239.909751 95.501319) (xy 239.870176 95.596863) (xy 239.85 95.698292) (xy 233.3 95.698292) (xy 233.3 95.274264)
(xy 233.762132 94.812132) (xy 233.799441 94.766671) (xy 233.827164 94.714805) (xy 233.844236 94.658527) (xy 233.85 94.6)
(xy 233.844236 94.541473) (xy 233.827164 94.485195) (xy 233.799441 94.433329) (xy 233.762132 94.387868) (xy 233.192556 93.818292)
(xy 234.695 93.818292) (xy 234.695 93.921708) (xy 234.715176 94.023137) (xy 234.754751 94.118681) (xy 234.812206 94.204668)
(xy 234.885332 94.277794) (xy 234.971319 94.335249) (xy 235.066863 94.374824) (xy 235.168292 94.395) (xy 235.271708 94.395)
(xy 235.373137 94.374824) (xy 235.468681 94.335249) (xy 235.554668 94.277794) (xy 235.627794 94.204668) (xy 235.685249 94.118681)
(xy 235.724824 94.023137) (xy 235.745 93.921708) (xy 235.745 93.818292) (xy 235.724824 93.716863) (xy 235.685249 93.621319)
(xy 235.627794 93.535332) (xy 235.554668 93.462206) (xy 235.468681 93.404751) (xy 235.373137 93.365176) (xy 235.271708 93.345)
(xy 235.168292 93.345) (xy 235.066863 93.365176) (xy 234.971319 93.404751) (xy 234.885332 93.462206) (xy 234.812206 93.535332)
(xy 234.754751 93.621319) (xy 234.715176 93.716863) (xy 234.695 93.818292) (xy 233.192556 93.818292) (xy 232.362132 92.987868)
(xy 232.316671 92.950559) (xy 232.264805 92.922836) (xy 232.208527 92.905764) (xy 232.185755 92.903521) (xy 232.12445 92.842216)
(xy 232.038463 92.784761) (xy 231.974561 92.758292) (xy 233.405 92.758292) (xy 233.405 92.861708) (xy 233.425176 92.963137)
(xy 233.464751 93.058681) (xy 233.522206 93.144668) (xy 233.595332 93.217794) (xy 233.681319 93.275249) (xy 233.776863 93.314824)
(xy 233.878292 93.335) (xy 233.981708 93.335) (xy 234.083137 93.314824) (xy 234.178681 93.275249) (xy 234.264668 93.217794)
(xy 234.337794 93.144668) (xy 234.395249 93.058681) (xy 234.434824 92.963137) (xy 234.455 92.861708) (xy 234.455 92.858292)
(xy 236.385 92.858292) (xy 236.385 92.961708) (xy 236.405176 93.063137) (xy 236.444751 93.158681) (xy 236.502206 93.244668)
(xy 236.575332 93.317794) (xy 236.661319 93.375249) (xy 236.756863 93.414824) (xy 236.858292 93.435) (xy 236.961708 93.435)
(xy 237.045702 93.418292) (xy 239.215 93.418292) (xy 239.215 93.521708) (xy 239.235176 93.623137) (xy 239.274751 93.718681)
(xy 239.332206 93.804668) (xy 239.405332 93.877794) (xy 239.491319 93.935249) (xy 239.586863 93.974824) (xy 239.688292 93.995)
(xy 239.791708 93.995) (xy 239.893137 93.974824) (xy 239.940587 93.95517) (xy 239.909751 94.001319) (xy 239.870176 94.096863)
(xy 239.85 94.198292) (xy 239.85 94.301708) (xy 239.870176 94.403137) (xy 239.909751 94.498681) (xy 239.967206 94.584668)
(xy 240.040332 94.657794) (xy 240.126319 94.715249) (xy 240.221863 94.754824) (xy 240.323292 94.775) (xy 240.426708 94.775)
(xy 240.528137 94.754824) (xy 240.623681 94.715249) (xy 240.709668 94.657794) (xy 240.782794 94.584668) (xy 240.840249 94.498681)
(xy 240.879824 94.403137) (xy 240.9 94.301708) (xy 240.9 94.198292) (xy 242.325 94.198292) (xy 242.325 94.301708)
(xy 242.345176 94.403137) (xy 242.384751 94.498681) (xy 242.442206 94.584668) (xy 242.515332 94.657794) (xy 242.601319 94.715249)
(xy 242.696863 94.754824) (xy 242.798292 94.775) (xy 242.901708 94.775) (xy 243.003137 94.754824) (xy 243.098681 94.715249)
(xy 243.184668 94.657794) (xy 243.257794 94.584668) (xy 243.315249 94.498681) (xy 243.354824 94.403137) (xy 243.375 94.301708)
(xy 243.375 94.198292) (xy 243.354824 94.096863) (xy 243.315249 94.001319) (xy 243.257794 93.915332) (xy 243.184668 93.842206)
(xy 243.098681 93.784751) (xy 243.003137 93.745176) (xy 242.901708 93.725) (xy 242.798292 93.725) (xy 242.696863 93.745176)
(xy 242.601319 93.784751) (xy 242.515332 93.842206) (xy 242.442206 93.915332) (xy 242.384751 94.001319) (xy 242.345176 94.096863)
(xy 242.325 94.198292) (xy 240.9 94.198292) (xy 240.879824 94.096863) (xy 240.840249 94.001319) (xy 240.782794 93.915332)
(xy 240.709668 93.842206) (xy 240.623681 93.784751) (xy 240.528137 93.745176) (xy 240.426708 93.725) (xy 240.323292 93.725)
(xy 240.221863 93.745176) (xy 240.174413 93.76483) (xy 240.205249 93.718681) (xy 240.244824 93.623137) (xy 240.265 93.521708)
(xy 240.265 93.418292) (xy 240.244824 93.316863) (xy 240.205249 93.221319) (xy 240.147794 93.135332) (xy 240.074668 93.062206)
(xy 239.988681 93.004751) (xy 239.893137 92.965176) (xy 239.791708 92.945) (xy 239.688292 92.945) (xy 239.586863 92.965176)
(xy 239.491319 93.004751) (xy 239.405332 93.062206) (xy 239.332206 93.135332) (xy 239.274751 93.221319) (xy 239.235176 93.316863)
(xy 239.215 93.418292) (xy 237.045702 93.418292) (xy 237.063137 93.414824) (xy 237.158681 93.375249) (xy 237.244668 93.317794)
(xy 237.317794 93.244668) (xy 237.375249 93.158681) (xy 237.414824 93.063137) (xy 237.435 92.961708) (xy 237.435 92.858292)
(xy 237.414824 92.756863) (xy 237.375249 92.661319) (xy 237.317794 92.575332) (xy 237.244668 92.502206) (xy 237.158681 92.444751)
(xy 237.063137 92.405176) (xy 236.961708 92.385) (xy 236.858292 92.385) (xy 236.756863 92.405176) (xy 236.661319 92.444751)
(xy 236.575332 92.502206) (xy 236.502206 92.575332) (xy 236.444751 92.661319) (xy 236.405176 92.756863) (xy 236.385 92.858292)
(xy 234.455 92.858292) (xy 234.455 92.758292) (xy 234.434824 92.656863) (xy 234.395249 92.561319) (xy 234.337794 92.475332)
(xy 234.264668 92.402206) (xy 234.178681 92.344751) (xy 234.083137 92.305176) (xy 233.981708 92.285) (xy 233.878292 92.285)
(xy 233.776863 92.305176) (xy 233.681319 92.344751) (xy 233.595332 92.402206) (xy 233.522206 92.475332) (xy 233.464751 92.561319)
(xy 233.425176 92.656863) (xy 233.405 92.758292) (xy 231.974561 92.758292) (xy 231.942919 92.745186) (xy 231.84149 92.72501)
(xy 231.738074 92.72501) (xy 231.636645 92.745186) (xy 231.541101 92.784761) (xy 231.455114 92.842216) (xy 231.381988 92.915342)
(xy 231.324533 93.001329) (xy 231.284958 93.096873) (xy 231.264782 93.198302) (xy 231.264782 93.301718) (xy 231.284958 93.403147)
(xy 231.324533 93.498691) (xy 231.365594 93.560142) (xy 229.837868 95.087868) (xy 229.800559 95.133329) (xy 229.772836 95.185195)
(xy 229.755764 95.241473) (xy 229.75 95.3) (xy 229.75 95.335217) (xy 229.745176 95.346863) (xy 229.725 95.448292)
(xy 229.725 95.551708) (xy 229.745176 95.653137) (xy 229.75 95.664783) (xy 229.75 96.075736) (xy 228.975736 96.85)
(xy 228.614783 96.85) (xy 228.603137 96.845176) (xy 228.501708 96.825) (xy 228.398292 96.825) (xy 228.296863 96.845176)
(xy 228.285217 96.85) (xy 228.2 96.85) (xy 228.141473 96.855764) (xy 228.085195 96.872836) (xy 228.033329 96.900559)
(xy 227.987868 96.937868) (xy 227.337868 97.587868) (xy 227.300559 97.633329) (xy 227.272836 97.685195) (xy 227.255764 97.741473)
(xy 227.25 97.8) (xy 226.214783 97.8) (xy 226.298681 97.765249) (xy 226.384668 97.707794) (xy 226.457794 97.634668)
(xy 226.515249 97.548681) (xy 226.554824 97.453137) (xy 226.575 97.351708) (xy 226.575 97.248292) (xy 226.554824 97.146863)
(xy 226.515249 97.051319) (xy 226.457794 96.965332) (xy 226.384668 96.892206) (xy 226.298681 96.834751) (xy 226.203137 96.795176)
(xy 226.101708 96.775) (xy 225.998292 96.775) (xy 225.896863 96.795176) (xy 225.801319 96.834751) (xy 225.715332 96.892206)
(xy 225.642206 96.965332) (xy 225.584751 97.051319) (xy 225.545176 97.146863) (xy 225.525 97.248292) (xy 224.31066 97.248292)
(xy 224.303137 97.245176) (xy 224.201708 97.225) (xy 224.098292 97.225) (xy 223.996863 97.245176) (xy 223.901319 97.284751)
(xy 223.815332 97.342206) (xy 223.742206 97.415332) (xy 223.684751 97.501319) (xy 223.645176 97.596863) (xy 223.625 97.698292)
(xy 222.725 97.698292) (xy 222.704824 97.596863) (xy 222.665249 97.501319) (xy 222.607794 97.415332) (xy 222.534668 97.342206)
(xy 222.448681 97.284751) (xy 222.353137 97.245176) (xy 222.251708 97.225) (xy 222.148292 97.225) (xy 222.046863 97.245176)
(xy 221.951319 97.284751) (xy 221.865332 97.342206) (xy 221.792206 97.415332) (xy 221.734751 97.501319) (xy 221.695176 97.596863)
(xy 221.675 97.698292) (xy 221.675 97.789633) (xy 221.651708 97.785) (xy 221.548292 97.785) (xy 221.446863 97.805176)
(xy 221.351319 97.844751) (xy 221.265332 97.902206) (xy 221.192206 97.975332) (xy 221.134751 98.061319) (xy 221.095176 98.156863)
(xy 221.075 98.258292) (xy 221.075 98.361708) (xy 221.095176 98.463137) (xy 221.134751 98.558681) (xy 221.16236 98.6)
(xy 221.134751 98.641319) (xy 221.095176 98.736863) (xy 221.075 98.838292) (xy 221.075 98.941708) (xy 221.077715 98.955356)
(xy 221.053137 98.945176) (xy 220.951708 98.925) (xy 220.848292 98.925) (xy 220.746863 98.945176) (xy 220.651319 98.984751)
(xy 220.565332 99.042206) (xy 220.492206 99.115332) (xy 220.434751 99.201319) (xy 220.395176 99.296863) (xy 220.375 99.398292)
(xy 209.632034 99.398292) (xy 209.668422 99.36843) (xy 209.768393 99.246614) (xy 209.842679 99.107636) (xy 209.888424 98.956835)
(xy 209.90387 98.800008) (xy 209.9 98.760715) (xy 209.9 97.098292) (xy 209.925 97.098292) (xy 209.925 97.201708)
(xy 209.945176 97.303137) (xy 209.984751 97.398681) (xy 210.042206 97.484668) (xy 210.115332 97.557794) (xy 210.201319 97.615249)
(xy 210.22486 97.625) (xy 210.201319 97.634751) (xy 210.115332 97.692206) (xy 210.042206 97.765332) (xy 209.984751 97.851319)
(xy 209.945176 97.946863) (xy 209.925 98.048292) (xy 209.925 98.151708) (xy 209.945176 98.253137) (xy 209.984751 98.348681)
(xy 210.042206 98.434668) (xy 210.115332 98.507794) (xy 210.201319 98.565249) (xy 210.296863 98.604824) (xy 210.398292 98.625)
(xy 210.501708 98.625) (xy 210.603137 98.604824) (xy 210.698681 98.565249) (xy 210.784668 98.507794) (xy 210.857794 98.434668)
(xy 210.915249 98.348681) (xy 210.954824 98.253137) (xy 210.975 98.151708) (xy 210.975 98.048292) (xy 210.954824 97.946863)
(xy 210.915249 97.851319) (xy 210.913227 97.848292) (xy 212.525 97.848292) (xy 212.525 97.951708) (xy 212.545176 98.053137)
(xy 212.584751 98.148681) (xy 212.642206 98.234668) (xy 212.715332 98.307794) (xy 212.801319 98.365249) (xy 212.896863 98.404824)
(xy 212.998292 98.425) (xy 213.101708 98.425) (xy 213.203137 98.404824) (xy 213.298681 98.365249) (xy 213.384668 98.307794)
(xy 213.45 98.242462) (xy 213.515332 98.307794) (xy 213.601319 98.365249) (xy 213.696863 98.404824) (xy 213.798292 98.425)
(xy 213.901708 98.425) (xy 214.003137 98.404824) (xy 214.098681 98.365249) (xy 214.124058 98.348292) (xy 216.225 98.348292)
(xy 216.225 98.451708) (xy 216.245176 98.553137) (xy 216.284751 98.648681) (xy 216.342206 98.734668) (xy 216.415332 98.807794)
(xy 216.501319 98.865249) (xy 216.596863 98.904824) (xy 216.698292 98.925) (xy 216.801708 98.925) (xy 216.903137 98.904824)
(xy 216.998681 98.865249) (xy 217.084668 98.807794) (xy 217.157794 98.734668) (xy 217.215249 98.648681) (xy 217.254824 98.553137)
(xy 217.275 98.451708) (xy 217.275 98.348292) (xy 217.254824 98.246863) (xy 217.215249 98.151319) (xy 217.157794 98.065332)
(xy 217.084668 97.992206) (xy 216.998681 97.934751) (xy 216.903137 97.895176) (xy 216.801708 97.875) (xy 216.698292 97.875)
(xy 216.596863 97.895176) (xy 216.501319 97.934751) (xy 216.415332 97.992206) (xy 216.342206 98.065332) (xy 216.284751 98.151319)
(xy 216.245176 98.246863) (xy 216.225 98.348292) (xy 214.124058 98.348292) (xy 214.184668 98.307794) (xy 214.257794 98.234668)
(xy 214.315249 98.148681) (xy 214.354824 98.053137) (xy 214.375 97.951708) (xy 214.375 97.848292) (xy 214.354824 97.746863)
(xy 214.315249 97.651319) (xy 214.257794 97.565332) (xy 214.184668 97.492206) (xy 214.098681 97.434751) (xy 214.003137 97.395176)
(xy 213.901708 97.375) (xy 213.798292 97.375) (xy 213.696863 97.395176) (xy 213.601319 97.434751) (xy 213.515332 97.492206)
(xy 213.45 97.557538) (xy 213.384668 97.492206) (xy 213.298681 97.434751) (xy 213.203137 97.395176) (xy 213.101708 97.375)
(xy 212.998292 97.375) (xy 212.896863 97.395176) (xy 212.801319 97.434751) (xy 212.715332 97.492206) (xy 212.642206 97.565332)
(xy 212.584751 97.651319) (xy 212.545176 97.746863) (xy 212.525 97.848292) (xy 210.913227 97.848292) (xy 210.857794 97.765332)
(xy 210.784668 97.692206) (xy 210.698681 97.634751) (xy 210.67514 97.625) (xy 210.698681 97.615249) (xy 210.784668 97.557794)
(xy 210.857794 97.484668) (xy 210.915249 97.398681) (xy 210.954824 97.303137) (xy 210.975 97.201708) (xy 210.975 97.148292)
(xy 217.575 97.148292) (xy 217.575 97.251708) (xy 217.595176 97.353137) (xy 217.634751 97.448681) (xy 217.692206 97.534668)
(xy 217.765332 97.607794) (xy 217.851319 97.665249) (xy 217.946863 97.704824) (xy 218.048292 97.725) (xy 218.151708 97.725)
(xy 218.253137 97.704824) (xy 218.348681 97.665249) (xy 218.434668 97.607794) (xy 218.507794 97.534668) (xy 218.565249 97.448681)
(xy 218.604824 97.353137) (xy 218.625 97.251708) (xy 218.625 97.148292) (xy 218.604824 97.046863) (xy 218.565249 96.951319)
(xy 218.507794 96.865332) (xy 218.434668 96.792206) (xy 218.348681 96.734751) (xy 218.253137 96.695176) (xy 218.151708 96.675)
(xy 218.048292 96.675) (xy 217.946863 96.695176) (xy 217.851319 96.734751) (xy 217.765332 96.792206) (xy 217.692206 96.865332)
(xy 217.634751 96.951319) (xy 217.595176 97.046863) (xy 217.575 97.148292) (xy 210.975 97.148292) (xy 210.975 97.098292)
(xy 210.954824 96.996863) (xy 210.915249 96.901319) (xy 210.857794 96.815332) (xy 210.784668 96.742206) (xy 210.698681 96.684751)
(xy 210.603137 96.645176) (xy 210.501708 96.625) (xy 210.398292 96.625) (xy 210.296863 96.645176) (xy 210.201319 96.684751)
(xy 210.115332 96.742206) (xy 210.042206 96.815332) (xy 209.984751 96.901319) (xy 209.945176 96.996863) (xy 209.925 97.098292)
(xy 209.9 97.098292) (xy 209.9 95.798292) (xy 225.375 95.798292) (xy 225.375 95.901708) (xy 225.395176 96.003137)
(xy 225.434751 96.098681) (xy 225.492206 96.184668) (xy 225.565332 96.257794) (xy 225.651319 96.315249) (xy 225.746863 96.354824)
(xy 225.848292 96.375) (xy 225.951708 96.375) (xy 226.053137 96.354824) (xy 226.148681 96.315249) (xy 226.234668 96.257794)
(xy 226.307794 96.184668) (xy 226.365249 96.098681) (xy 226.404824 96.003137) (xy 226.425 95.901708) (xy 226.425 95.798292)
(xy 226.404824 95.696863) (xy 226.365249 95.601319) (xy 226.307794 95.515332) (xy 226.234668 95.442206) (xy 226.148681 95.384751)
(xy 226.053137 95.345176) (xy 225.951708 95.325) (xy 225.848292 95.325) (xy 225.746863 95.345176) (xy 225.651319 95.384751)
(xy 225.565332 95.442206) (xy 225.492206 95.515332) (xy 225.434751 95.601319) (xy 225.395176 95.696863) (xy 225.375 95.798292)
(xy 209.9 95.798292) (xy 209.9 95.310707) (xy 209.888424 95.193173) (xy 209.842679 95.042372) (xy 209.768393 94.903394)
(xy 209.668422 94.781578) (xy 209.546605 94.681607) (xy 209.407627 94.607321) (xy 209.256826 94.561576) (xy 209.1 94.54613)
(xy 208.943173 94.561576) (xy 208.792372 94.607321) (xy 208.653394 94.681607) (xy 208.531578 94.781578) (xy 208.431607 94.903395)
(xy 208.357321 95.042373) (xy 208.311576 95.193174) (xy 208.3 95.310708) (xy 208.300001 98.000008) (xy 208.025 98.000008)
(xy 208.025 97.898292) (xy 208.004824 97.796863) (xy 207.965249 97.701319) (xy 207.907794 97.615332) (xy 207.834668 97.542206)
(xy 207.748681 97.484751) (xy 207.653137 97.445176) (xy 207.551708 97.425) (xy 207.448292 97.425) (xy 207.346863 97.445176)
(xy 207.251319 97.484751) (xy 207.165332 97.542206) (xy 207.092206 97.615332) (xy 207.034751 97.701319) (xy 206.995176 97.796863)
(xy 206.975 97.898292) (xy 206.975 98.001708) (xy 206.995176 98.103137) (xy 207.034751 98.198681) (xy 207.092206 98.284668)
(xy 207.165332 98.357794) (xy 207.219586 98.394045) (xy 205.10621 100.507421) (xy 205.120844 100.48552) (xy 205.19811 100.298982)
(xy 205.2375 100.100954) (xy 205.2375 99.899046) (xy 205.19811 99.701018) (xy 205.120844 99.51448) (xy 205.00867 99.3466)
(xy 204.8659 99.20383) (xy 204.69802 99.091656) (xy 204.511482 99.01439) (xy 204.313454 98.975) (xy 204.111546 98.975)
(xy 203.913518 99.01439) (xy 203.72698 99.091656) (xy 203.5591 99.20383) (xy 203.41633 99.3466) (xy 203.304156 99.51448)
(xy 203.22689 99.701018) (xy 203.1875 99.899046) (xy 203.1875 100.100954) (xy 203.22689 100.298982) (xy 203.304156 100.48552)
(xy 203.41633 100.6534) (xy 203.5591 100.79617) (xy 203.72698 100.908344) (xy 203.913518 100.98561) (xy 204.111546 101.025)
(xy 204.313454 101.025) (xy 204.511482 100.98561) (xy 204.69802 100.908344) (xy 204.719922 100.89371) (xy 200.503098 105.110534)
(xy 200.472579 105.13558) (xy 200.447532 105.1661) (xy 200.447531 105.166101) (xy 200.375 105.25448) (xy 200.375 101.435909)
(xy 200.410557 101.502432) (xy 200.523025 101.639475) (xy 200.660068 101.751943) (xy 200.816419 101.835514) (xy 200.986069 101.886977)
(xy 201.118293 101.9) (xy 201.906707 101.9) (xy 202.038931 101.886977) (xy 202.208581 101.835514) (xy 202.364932 101.751943)
(xy 202.501975 101.639475) (xy 202.614443 101.502432) (xy 202.698014 101.346081) (xy 202.749477 101.176431) (xy 202.766854 101)
(xy 202.749477 100.823569) (xy 202.698014 100.653919) (xy 202.614443 100.497568) (xy 202.501975 100.360525) (xy 202.364932 100.248057)
(xy 202.208581 100.164486) (xy 202.038931 100.113023) (xy 201.906707 100.1) (xy 201.118293 100.1) (xy 200.986069 100.113023)
(xy 200.816419 100.164486) (xy 200.660068 100.248057) (xy 200.523025 100.360525) (xy 200.410557 100.497568) (xy 200.375 100.564091)
(xy 200.375 96.393231) (xy 205.169939 96.393231) (xy 205.169939 96.496647) (xy 205.190115 96.598076) (xy 205.22969 96.69362)
(xy 205.287145 96.779607) (xy 205.360271 96.852733) (xy 205.446258 96.910188) (xy 205.541802 96.949763) (xy 205.590542 96.959458)
(xy 205.600237 97.008198) (xy 205.639812 97.103742) (xy 205.697267 97.189729) (xy 205.770393 97.262855) (xy 205.85638 97.32031)
(xy 205.951924 97.359885) (xy 206.053353 97.380061) (xy 206.156769 97.380061) (xy 206.24875 97.361764) (xy 206.284751 97.448681)
(xy 206.342206 97.534668) (xy 206.415332 97.607794) (xy 206.501319 97.665249) (xy 206.596863 97.704824) (xy 206.698292 97.725)
(xy 206.801708 97.725) (xy 206.903137 97.704824) (xy 206.998681 97.665249) (xy 207.084668 97.607794) (xy 207.157794 97.534668)
(xy 207.215249 97.448681) (xy 207.254824 97.353137) (xy 207.275 97.251708) (xy 207.275 97.148292) (xy 207.254824 97.046863)
(xy 207.215249 96.951319) (xy 207.157794 96.865332) (xy 207.084668 96.792206) (xy 206.998681 96.734751) (xy 206.903137 96.695176)
(xy 206.801708 96.675) (xy 206.698292 96.675) (xy 206.606311 96.693297) (xy 206.57031 96.60638) (xy 206.512855 96.520393)
(xy 206.439729 96.447267) (xy 206.353742 96.389812) (xy 206.258198 96.350237) (xy 206.209458 96.340542) (xy 206.199763 96.291802)
(xy 206.160188 96.196258) (xy 206.102733 96.110271) (xy 206.029607 96.037145) (xy 205.94362 95.97969) (xy 205.848076 95.940115)
(xy 205.746647 95.919939) (xy 205.643231 95.919939) (xy 205.541802 95.940115) (xy 205.446258 95.97969) (xy 205.360271 96.037145)
(xy 205.287145 96.110271) (xy 205.22969 96.196258) (xy 205.190115 96.291802) (xy 205.169939 96.393231) (xy 200.375 96.393231)
(xy 200.375 94.435909) (xy 200.410557 94.502432) (xy 200.523025 94.639475) (xy 200.660068 94.751943) (xy 200.816419 94.835514)
(xy 200.986069 94.886977) (xy 201.118293 94.9) (xy 201.906707 94.9) (xy 201.916393 94.899046) (xy 203.1875 94.899046)
(xy 203.1875 95.100954) (xy 203.22689 95.298982) (xy 203.304156 95.48552) (xy 203.41633 95.6534) (xy 203.5591 95.79617)
(xy 203.72698 95.908344) (xy 203.913518 95.98561) (xy 204.111546 96.025) (xy 204.313454 96.025) (xy 204.511482 95.98561)
(xy 204.69802 95.908344) (xy 204.8659 95.79617) (xy 205.00867 95.6534) (xy 205.120844 95.48552) (xy 205.19811 95.298982)
(xy 205.2375 95.100954) (xy 205.2375 94.899046) (xy 205.19811 94.701018) (xy 205.120844 94.51448) (xy 205.00867 94.3466)
(xy 204.8659 94.20383) (xy 204.69802 94.091656) (xy 204.511482 94.01439) (xy 204.313454 93.975) (xy 204.111546 93.975)
(xy 203.913518 94.01439) (xy 203.72698 94.091656) (xy 203.5591 94.20383) (xy 203.41633 94.3466) (xy 203.304156 94.51448)
(xy 203.22689 94.701018) (xy 203.1875 94.899046) (xy 201.916393 94.899046) (xy 202.038931 94.886977) (xy 202.208581 94.835514)
(xy 202.364932 94.751943) (xy 202.501975 94.639475) (xy 202.614443 94.502432) (xy 202.698014 94.346081) (xy 202.749477 94.176431)
(xy 202.766854 94) (xy 202.749477 93.823569) (xy 202.698014 93.653919) (xy 202.614443 93.497568) (xy 202.501975 93.360525)
(xy 202.364932 93.248057) (xy 202.208581 93.164486) (xy 202.038931 93.113023) (xy 201.906707 93.1) (xy 201.118293 93.1)
(xy 200.986069 93.113023) (xy 200.816419 93.164486) (xy 200.660068 93.248057) (xy 200.523025 93.360525) (xy 200.410557 93.497568)
(xy 200.375 93.564091) (xy 200.375 92.798292) (xy 217.345 92.798292) (xy 217.345 92.901708) (xy 217.365176 93.003137)
(xy 217.404751 93.098681) (xy 217.462206 93.184668) (xy 217.535332 93.257794) (xy 217.621319 93.315249) (xy 217.716863 93.354824)
(xy 217.818292 93.375) (xy 217.921708 93.375) (xy 218.023137 93.354824) (xy 218.118681 93.315249) (xy 218.204668 93.257794)
(xy 218.277794 93.184668) (xy 218.335249 93.098681) (xy 218.374824 93.003137) (xy 218.395 92.901708) (xy 218.395 92.798292)
(xy 218.374824 92.696863) (xy 218.335249 92.601319) (xy 218.279772 92.518292) (xy 226.915 92.518292) (xy 226.915 92.621708)
(xy 226.935176 92.723137) (xy 226.974751 92.818681) (xy 227.032206 92.904668) (xy 227.105332 92.977794) (xy 227.191319 93.035249)
(xy 227.286863 93.074824) (xy 227.388292 93.095) (xy 227.491708 93.095) (xy 227.593137 93.074824) (xy 227.688681 93.035249)
(xy 227.774668 92.977794) (xy 227.847794 92.904668) (xy 227.905249 92.818681) (xy 227.944824 92.723137) (xy 227.965 92.621708)
(xy 227.965 92.518292) (xy 227.95579 92.471993) (xy 227.956338 92.472813) (xy 228.029464 92.545939) (xy 228.115451 92.603394)
(xy 228.210995 92.642969) (xy 228.312424 92.663145) (xy 228.41584 92.663145) (xy 228.517269 92.642969) (xy 228.612813 92.603394)
(xy 228.665602 92.568121) (xy 228.715459 92.601435) (xy 228.811003 92.64101) (xy 228.912432 92.661186) (xy 229.015848 92.661186)
(xy 229.117277 92.64101) (xy 229.212821 92.601435) (xy 229.298808 92.54398) (xy 229.371934 92.470854) (xy 229.429389 92.384867)
(xy 229.464983 92.298935) (xy 229.494166 92.298935) (xy 229.595595 92.278759) (xy 229.691139 92.239184) (xy 229.777126 92.181729)
(xy 229.850252 92.108603) (xy 229.907707 92.022616) (xy 229.947282 91.927072) (xy 229.966451 91.830707) (xy 229.989472 91.826128)
(xy 230.085016 91.786553) (xy 230.171003 91.729098) (xy 230.231809 91.668292) (xy 234.975 91.668292) (xy 234.975 91.771708)
(xy 234.995176 91.873137) (xy 235.034751 91.968681) (xy 235.092206 92.054668) (xy 235.165332 92.127794) (xy 235.251319 92.185249)
(xy 235.346863 92.224824) (xy 235.448292 92.245) (xy 235.551708 92.245) (xy 235.653137 92.224824) (xy 235.717191 92.198292)
(xy 237.735 92.198292) (xy 237.735 92.301708) (xy 237.755176 92.403137) (xy 237.794751 92.498681) (xy 237.852206 92.584668)
(xy 237.925332 92.657794) (xy 238.011319 92.715249) (xy 238.106863 92.754824) (xy 238.208292 92.775) (xy 238.311708 92.775)
(xy 238.413137 92.754824) (xy 238.508681 92.715249) (xy 238.594668 92.657794) (xy 238.667794 92.584668) (xy 238.725249 92.498681)
(xy 238.764824 92.403137) (xy 238.785 92.301708) (xy 238.785 92.198292) (xy 238.764824 92.096863) (xy 238.725249 92.001319)
(xy 238.667794 91.915332) (xy 238.594668 91.842206) (xy 238.508681 91.784751) (xy 238.413137 91.745176) (xy 238.311708 91.725)
(xy 238.208292 91.725) (xy 238.106863 91.745176) (xy 238.011319 91.784751) (xy 237.925332 91.842206) (xy 237.852206 91.915332)
(xy 237.794751 92.001319) (xy 237.755176 92.096863) (xy 237.735 92.198292) (xy 235.717191 92.198292) (xy 235.748681 92.185249)
(xy 235.834668 92.127794) (xy 235.907794 92.054668) (xy 235.965249 91.968681) (xy 236.004824 91.873137) (xy 236.025 91.771708)
(xy 236.025 91.668292) (xy 236.004824 91.566863) (xy 235.965249 91.471319) (xy 235.907794 91.385332) (xy 235.834668 91.312206)
(xy 235.748681 91.254751) (xy 235.653137 91.215176) (xy 235.551708 91.195) (xy 235.448292 91.195) (xy 235.346863 91.215176)
(xy 235.251319 91.254751) (xy 235.165332 91.312206) (xy 235.092206 91.385332) (xy 235.034751 91.471319) (xy 234.995176 91.566863)
(xy 234.975 91.668292) (xy 230.231809 91.668292) (xy 230.244129 91.655972) (xy 230.301584 91.569985) (xy 230.341159 91.474441)
(xy 230.361335 91.373012) (xy 230.361335 91.269596) (xy 230.341159 91.168167) (xy 230.301584 91.072623) (xy 230.298691 91.068292)
(xy 236.775 91.068292) (xy 236.775 91.171708) (xy 236.795176 91.273137) (xy 236.834751 91.368681) (xy 236.892206 91.454668)
(xy 236.965332 91.527794) (xy 237.051319 91.585249) (xy 237.146863 91.624824) (xy 237.248292 91.645) (xy 237.351708 91.645)
(xy 237.453137 91.624824) (xy 237.548681 91.585249) (xy 237.634668 91.527794) (xy 237.707794 91.454668) (xy 237.765249 91.368681)
(xy 237.804824 91.273137) (xy 237.825 91.171708) (xy 237.825 91.126886) (xy 241.25 91.126886) (xy 241.25 91.373114)
(xy 241.298037 91.614611) (xy 241.392265 91.842097) (xy 241.529062 92.046828) (xy 241.703172 92.220938) (xy 241.907903 92.357735)
(xy 242.135389 92.451963) (xy 242.376886 92.5) (xy 242.623114 92.5) (xy 242.864611 92.451963) (xy 243.092097 92.357735)
(xy 243.296828 92.220938) (xy 243.470938 92.046828) (xy 243.607735 91.842097) (xy 243.701963 91.614611) (xy 243.75 91.373114)
(xy 243.75 91.126886) (xy 243.701963 90.885389) (xy 243.607735 90.657903) (xy 243.470938 90.453172) (xy 243.296828 90.279062)
(xy 243.092097 90.142265) (xy 242.864611 90.048037) (xy 242.623114 90) (xy 242.376886 90) (xy 242.135389 90.048037)
(xy 241.907903 90.142265) (xy 241.703172 90.279062) (xy 241.529062 90.453172) (xy 241.392265 90.657903) (xy 241.298037 90.885389)
(xy 241.25 91.126886) (xy 237.825 91.126886) (xy 237.825 91.068292) (xy 237.804824 90.966863) (xy 237.765249 90.871319)
(xy 237.707794 90.785332) (xy 237.634668 90.712206) (xy 237.548681 90.654751) (xy 237.453137 90.615176) (xy 237.351708 90.595)
(xy 237.248292 90.595) (xy 237.146863 90.615176) (xy 237.051319 90.654751) (xy 236.965332 90.712206) (xy 236.892206 90.785332)
(xy 236.834751 90.871319) (xy 236.795176 90.966863) (xy 236.775 91.068292) (xy 230.298691 91.068292) (xy 230.244129 90.986636)
(xy 230.171003 90.91351) (xy 230.085016 90.856055) (xy 229.989472 90.81648) (xy 229.888043 90.796304) (xy 229.784627 90.796304)
(xy 229.683198 90.81648) (xy 229.587654 90.856055) (xy 229.501667 90.91351) (xy 229.428541 90.986636) (xy 229.371086 91.072623)
(xy 229.331511 91.168167) (xy 229.312342 91.264532) (xy 229.289321 91.269111) (xy 229.285 91.270901) (xy 229.285 91.268292)
(xy 229.264824 91.166863) (xy 229.225249 91.071319) (xy 229.167794 90.985332) (xy 229.094668 90.912206) (xy 229.008681 90.854751)
(xy 228.913137 90.815176) (xy 228.811708 90.795) (xy 228.708292 90.795) (xy 228.606863 90.815176) (xy 228.511319 90.854751)
(xy 228.425332 90.912206) (xy 228.352206 90.985332) (xy 228.294751 91.071319) (xy 228.255176 91.166863) (xy 228.235 91.268292)
(xy 228.235 91.371708) (xy 228.255176 91.473137) (xy 228.294751 91.568681) (xy 228.324461 91.613145) (xy 228.312424 91.613145)
(xy 228.210995 91.633321) (xy 228.115451 91.672896) (xy 228.029464 91.730351) (xy 227.956338 91.803477) (xy 227.898883 91.889464)
(xy 227.859308 91.985008) (xy 227.839132 92.086437) (xy 227.839132 92.189853) (xy 227.848342 92.236152) (xy 227.847794 92.235332)
(xy 227.774668 92.162206) (xy 227.688681 92.104751) (xy 227.593137 92.065176) (xy 227.491708 92.045) (xy 227.388292 92.045)
(xy 227.286863 92.065176) (xy 227.191319 92.104751) (xy 227.105332 92.162206) (xy 227.032206 92.235332) (xy 226.974751 92.321319)
(xy 226.935176 92.416863) (xy 226.915 92.518292) (xy 218.279772 92.518292) (xy 218.277794 92.515332) (xy 218.204668 92.442206)
(xy 218.118681 92.384751) (xy 218.023137 92.345176) (xy 217.921708 92.325) (xy 217.818292 92.325) (xy 217.716863 92.345176)
(xy 217.621319 92.384751) (xy 217.535332 92.442206) (xy 217.462206 92.515332) (xy 217.404751 92.601319) (xy 217.365176 92.696863)
(xy 217.345 92.798292) (xy 200.375 92.798292) (xy 200.375 91.598292) (xy 205.575 91.598292) (xy 205.575 91.701708)
(xy 205.595176 91.803137) (xy 205.634751 91.898681) (xy 205.692206 91.984668) (xy 205.765332 92.057794) (xy 205.851319 92.115249)
(xy 205.946863 92.154824) (xy 206.048292 92.175) (xy 206.151708 92.175) (xy 206.253137 92.154824) (xy 206.348681 92.115249)
(xy 206.434668 92.057794) (xy 206.507794 91.984668) (xy 206.565249 91.898681) (xy 206.604824 91.803137) (xy 206.625 91.701708)
(xy 206.625 91.598292) (xy 206.604824 91.496863) (xy 206.565249 91.401319) (xy 206.507794 91.315332) (xy 206.434668 91.242206)
(xy 206.348681 91.184751) (xy 206.253137 91.145176) (xy 206.151708 91.125) (xy 206.048292 91.125) (xy 205.946863 91.145176)
(xy 205.851319 91.184751) (xy 205.765332 91.242206) (xy 205.692206 91.315332) (xy 205.634751 91.401319) (xy 205.595176 91.496863)
(xy 205.575 91.598292) (xy 200.375 91.598292) (xy 200.375 90.898288) (xy 214.375 90.898288) (xy 214.375 91.001704)
(xy 214.395176 91.103133) (xy 214.434751 91.198677) (xy 214.492206 91.284664) (xy 214.565332 91.35779) (xy 214.651319 91.415245)
(xy 214.746863 91.45482) (xy 214.848292 91.474996) (xy 214.951708 91.474996) (xy 215.053137 91.45482) (xy 215.148681 91.415245)
(xy 215.234668 91.35779) (xy 215.307794 91.284664) (xy 215.365249 91.198677) (xy 215.404824 91.103133) (xy 215.425 91.001704)
(xy 215.425 90.898288) (xy 215.404824 90.796859) (xy 215.365249 90.701315) (xy 215.307794 90.615328) (xy 215.234668 90.542202)
(xy 215.148681 90.484747) (xy 215.053137 90.445172) (xy 214.951708 90.424996) (xy 214.848292 90.424996) (xy 214.746863 90.445172)
(xy 214.651319 90.484747) (xy 214.565332 90.542202) (xy 214.492206 90.615328) (xy 214.434751 90.701315) (xy 214.395176 90.796859)
(xy 214.375 90.898288) (xy 200.375 90.898288) (xy 200.375 90.048292) (xy 210.675 90.048292) (xy 210.675 90.151708)
(xy 210.695176 90.253137) (xy 210.734751 90.348681) (xy 210.792206 90.434668) (xy 210.865332 90.507794) (xy 210.951319 90.565249)
(xy 211.046863 90.604824) (xy 211.148292 90.625) (xy 211.251708 90.625) (xy 211.353137 90.604824) (xy 211.448681 90.565249)
(xy 211.534668 90.507794) (xy 211.607794 90.434668) (xy 211.665249 90.348681) (xy 211.702688 90.258292) (xy 237.605 90.258292)
(xy 237.605 90.361708) (xy 237.625176 90.463137) (xy 237.664751 90.558681) (xy 237.722206 90.644668) (xy 237.795332 90.717794)
(xy 237.881319 90.775249) (xy 237.976863 90.814824) (xy 238.078292 90.835) (xy 238.181708 90.835) (xy 238.283137 90.814824)
(xy 238.378681 90.775249) (xy 238.464668 90.717794) (xy 238.537794 90.644668) (xy 238.595249 90.558681) (xy 238.634824 90.463137)
(xy 238.655 90.361708) (xy 238.655 90.258292) (xy 238.634824 90.156863) (xy 238.595249 90.061319) (xy 238.537794 89.975332)
(xy 238.464668 89.902206) (xy 238.378681 89.844751) (xy 238.283137 89.805176) (xy 238.181708 89.785) (xy 238.078292 89.785)
(xy 237.976863 89.805176) (xy 237.881319 89.844751) (xy 237.795332 89.902206) (xy 237.722206 89.975332) (xy 237.664751 90.061319)
(xy 237.625176 90.156863) (xy 237.605 90.258292) (xy 211.702688 90.258292) (xy 211.704824 90.253137) (xy 211.725 90.151708)
(xy 211.725 90.048292) (xy 211.704824 89.946863) (xy 211.665249 89.851319) (xy 211.607794 89.765332) (xy 211.534668 89.692206)
(xy 211.448681 89.634751) (xy 211.353137 89.595176) (xy 211.251708 89.575) (xy 211.148292 89.575) (xy 211.046863 89.595176)
(xy 210.951319 89.634751) (xy 210.865332 89.692206) (xy 210.792206 89.765332) (xy 210.734751 89.851319) (xy 210.695176 89.946863)
(xy 210.675 90.048292) (xy 200.375 90.048292) (xy 200.375 89.010421) (xy 200.448292 89.025) (xy 200.551708 89.025)
(xy 200.653137 89.004824) (xy 200.748681 88.965249) (xy 200.834668 88.907794) (xy 200.886307 88.856156) (xy 201.161328 89.131177)
(xy 201.505277 89.360996) (xy 201.887453 89.519298) (xy 202.293168 89.6) (xy 202.706832 89.6) (xy 203.112547 89.519298)
(xy 203.494723 89.360996) (xy 203.513735 89.348292) (xy 230.855 89.348292) (xy 230.855 89.451708) (xy 230.875176 89.553137)
(xy 230.914751 89.648681) (xy 230.972206 89.734668) (xy 231.045332 89.807794) (xy 231.131319 89.865249) (xy 231.226863 89.904824)
(xy 231.328292 89.925) (xy 231.431708 89.925) (xy 231.533137 89.904824) (xy 231.628681 89.865249) (xy 231.714668 89.807794)
(xy 231.787794 89.734668) (xy 231.845249 89.648681) (xy 231.884824 89.553137) (xy 231.905 89.451708) (xy 231.905 89.348292)
(xy 231.884824 89.246863) (xy 231.845249 89.151319) (xy 231.787794 89.065332) (xy 231.780171 89.057709) (xy 231.851319 89.105249)
(xy 231.946863 89.144824) (xy 232.048292 89.165) (xy 232.151708 89.165) (xy 232.253137 89.144824) (xy 232.348681 89.105249)
(xy 232.434668 89.047794) (xy 232.507794 88.974668) (xy 232.565249 88.888681) (xy 232.604824 88.793137) (xy 232.625 88.691708)
(xy 232.625 88.588292) (xy 232.604824 88.486863) (xy 232.565249 88.391319) (xy 232.507794 88.305332) (xy 232.434668 88.232206)
(xy 232.348681 88.174751) (xy 232.253137 88.135176) (xy 232.151708 88.115) (xy 232.048292 88.115) (xy 231.946863 88.135176)
(xy 231.851319 88.174751) (xy 231.765332 88.232206) (xy 231.692206 88.305332) (xy 231.634751 88.391319) (xy 231.595176 88.486863)
(xy 231.575 88.588292) (xy 231.575 88.691708) (xy 231.595176 88.793137) (xy 231.634751 88.888681) (xy 231.692206 88.974668)
(xy 231.699829 88.982291) (xy 231.628681 88.934751) (xy 231.533137 88.895176) (xy 231.431708 88.875) (xy 231.328292 88.875)
(xy 231.226863 88.895176) (xy 231.131319 88.934751) (xy 231.045332 88.992206) (xy 230.972206 89.065332) (xy 230.914751 89.151319)
(xy 230.875176 89.246863) (xy 230.855 89.348292) (xy 203.513735 89.348292) (xy 203.838672 89.131177) (xy 204.131177 88.838672)
(xy 204.360996 88.494723) (xy 204.519298 88.112547) (xy 204.6 87.706832) (xy 204.6 87.293168) (xy 204.519298 86.887453)
(xy 204.360996 86.505277) (xy 204.131177 86.161328) (xy 203.856156 85.886307) (xy 203.907794 85.834668) (xy 203.965249 85.748681)
(xy 204.004824 85.653137) (xy 204.025 85.551708) (xy 204.025 85.448292) (xy 204.010421 85.375) (xy 232.773084 85.375)
)
)
)
(zone (net 1) (net_name +3V3) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.15))
(min_thickness 0.13)
(fill yes (arc_segments 16) (thermal_gap 0.15) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 226.498284 96.198302) (xy 231.25 91.4) (xy 235.25 95.4) (xy 235.25 97.6) (xy 231.25 101.6)
(xy 226.15 96.55)
)
)
(filled_polygon
(pts
(xy 231.043947 92.806053) (xy 231.055017 92.815138) (xy 231.234866 92.994988) (xy 231.243947 93.006053) (xy 231.255011 93.015133)
(xy 231.288105 93.042293) (xy 231.338485 93.069221) (xy 231.382841 93.082677) (xy 231.366691 93.121667) (xy 231.349782 93.206674)
(xy 231.349782 93.293346) (xy 231.366691 93.378353) (xy 231.399859 93.458428) (xy 231.448012 93.530494) (xy 231.509298 93.59178)
(xy 231.581364 93.639933) (xy 231.661439 93.673101) (xy 231.746446 93.69001) (xy 231.785 93.69001) (xy 231.785 93.85)
(xy 231.789131 93.891944) (xy 231.801366 93.932277) (xy 231.821234 93.969448) (xy 231.847972 94.002028) (xy 232.347972 94.502028)
(xy 232.380552 94.528766) (xy 232.417723 94.548634) (xy 232.458056 94.560869) (xy 232.5 94.565) (xy 232.662313 94.565)
(xy 232.717412 94.57596) (xy 232.804084 94.57596) (xy 232.86819 94.563209) (xy 232.891944 94.560869) (xy 232.932277 94.548634)
(xy 232.969448 94.528766) (xy 232.989587 94.512238) (xy 233.041232 94.47773) (xy 233.102518 94.416444) (xy 233.107158 94.4095)
(xy 233.142292 94.374366) (xy 233.144919 94.440383) (xy 233.204828 94.468667) (xy 233.26561 94.481548) (xy 233.270102 94.481604)
(xy 233.273011 94.511141) (xy 233.291023 94.570519) (xy 233.320272 94.625242) (xy 233.359636 94.673207) (xy 233.407601 94.712571)
(xy 233.462324 94.74182) (xy 233.521702 94.759832) (xy 233.552792 94.762894) (xy 233.555854 94.793983) (xy 233.573866 94.853361)
(xy 233.603115 94.908084) (xy 233.642479 94.956049) (xy 233.690444 94.995413) (xy 233.745167 95.024662) (xy 233.804545 95.042674)
(xy 233.835635 95.045736) (xy 233.838697 95.076826) (xy 233.856709 95.136204) (xy 233.885958 95.190927) (xy 233.925322 95.238892)
(xy 233.973287 95.278256) (xy 234.02801 95.307505) (xy 234.087388 95.325517) (xy 234.118477 95.328579) (xy 234.121539 95.359669)
(xy 234.139551 95.419047) (xy 234.1688 95.47377) (xy 234.208164 95.521735) (xy 234.256129 95.561099) (xy 234.310852 95.590348)
(xy 234.37023 95.60836) (xy 234.40132 95.611422) (xy 234.404382 95.642511) (xy 234.422394 95.701889) (xy 234.451643 95.756612)
(xy 234.491007 95.804577) (xy 234.538972 95.843941) (xy 234.593695 95.87319) (xy 234.653073 95.891202) (xy 234.684163 95.894264)
(xy 234.687225 95.925354) (xy 234.705237 95.984732) (xy 234.734486 96.039455) (xy 234.77385 96.08742) (xy 234.821815 96.126784)
(xy 234.876538 96.156033) (xy 234.935916 96.174045) (xy 234.967005 96.177107) (xy 234.970067 96.208197) (xy 234.988079 96.267575)
(xy 235.017328 96.322298) (xy 235.056692 96.370263) (xy 235.104657 96.409627) (xy 235.15938 96.438876) (xy 235.185 96.446648)
(xy 235.185 96.553352) (xy 235.15938 96.561124) (xy 235.104657 96.590373) (xy 235.056692 96.629737) (xy 235.017328 96.677702)
(xy 234.988079 96.732425) (xy 234.970067 96.791803) (xy 234.967005 96.822893) (xy 234.935916 96.825955) (xy 234.876538 96.843967)
(xy 234.821815 96.873216) (xy 234.77385 96.91258) (xy 234.734486 96.960545) (xy 234.705237 97.015268) (xy 234.687225 97.074646)
(xy 234.684163 97.105736) (xy 234.653073 97.108798) (xy 234.593695 97.12681) (xy 234.538972 97.156059) (xy 234.491007 97.195423)
(xy 234.451643 97.243388) (xy 234.422394 97.298111) (xy 234.404382 97.357489) (xy 234.40132 97.388578) (xy 234.37023 97.39164)
(xy 234.310852 97.409652) (xy 234.256129 97.438901) (xy 234.208164 97.478265) (xy 234.1688 97.52623) (xy 234.139551 97.580953)
(xy 234.121539 97.640331) (xy 234.11863 97.669868) (xy 234.114139 97.669924) (xy 234.053357 97.682805) (xy 233.993448 97.711089)
(xy 233.990821 97.777109) (xy 234.431981 98.21827) (xy 234.446124 98.204128) (xy 234.495621 98.253625) (xy 234.481478 98.267767)
(xy 234.485894 98.272182) (xy 234.436396 98.32168) (xy 234.431981 98.317264) (xy 234.417839 98.331407) (xy 234.368342 98.28191)
(xy 234.382484 98.267767) (xy 233.941323 97.826607) (xy 233.875303 97.829234) (xy 233.847019 97.889143) (xy 233.834138 97.949925)
(xy 233.834082 97.954417) (xy 233.804545 97.957326) (xy 233.745167 97.975338) (xy 233.690444 98.004587) (xy 233.642479 98.043951)
(xy 233.603115 98.091916) (xy 233.573866 98.146639) (xy 233.555854 98.206017) (xy 233.552792 98.237106) (xy 233.521702 98.240168)
(xy 233.462324 98.25818) (xy 233.407601 98.287429) (xy 233.359636 98.326793) (xy 233.320272 98.374758) (xy 233.291023 98.429481)
(xy 233.273011 98.488859) (xy 233.269949 98.519949) (xy 233.238859 98.523011) (xy 233.179481 98.541023) (xy 233.124758 98.570272)
(xy 233.076793 98.609636) (xy 233.037429 98.657601) (xy 233.00818 98.712324) (xy 232.990168 98.771702) (xy 232.987106 98.802792)
(xy 232.956017 98.805854) (xy 232.896639 98.823866) (xy 232.841916 98.853115) (xy 232.793951 98.892479) (xy 232.754587 98.940444)
(xy 232.725338 98.995167) (xy 232.707326 99.054545) (xy 232.704264 99.085635) (xy 232.673174 99.088697) (xy 232.613796 99.106709)
(xy 232.559073 99.135958) (xy 232.511108 99.175322) (xy 232.471744 99.223287) (xy 232.442495 99.27801) (xy 232.424483 99.337388)
(xy 232.421421 99.368477) (xy 232.390331 99.371539) (xy 232.330953 99.389551) (xy 232.27623 99.4188) (xy 232.228265 99.458164)
(xy 232.188901 99.506129) (xy 232.159652 99.560852) (xy 232.14164 99.62023) (xy 232.138578 99.65132) (xy 232.107489 99.654382)
(xy 232.048111 99.672394) (xy 231.993388 99.701643) (xy 231.945423 99.741007) (xy 231.906059 99.788972) (xy 231.87681 99.843695)
(xy 231.858798 99.903073) (xy 231.855736 99.934163) (xy 231.824646 99.937225) (xy 231.765268 99.955237) (xy 231.710545 99.984486)
(xy 231.66258 100.02385) (xy 231.623216 100.071815) (xy 231.593967 100.126538) (xy 231.575955 100.185916) (xy 231.573046 100.215452)
(xy 231.568554 100.215508) (xy 231.507772 100.228389) (xy 231.447863 100.256673) (xy 231.445236 100.322693) (xy 231.886396 100.763854)
(xy 231.900539 100.749712) (xy 231.950036 100.799209) (xy 231.935893 100.813351) (xy 231.940309 100.817767) (xy 231.890812 100.867264)
(xy 231.886396 100.862848) (xy 231.688406 101.060838) (xy 231.692822 101.065254) (xy 231.249774 101.508302) (xy 230.887802 101.149879)
(xy 230.899408 101.111622) (xy 230.903604 101.069016) (xy 230.905007 101.054772) (xy 230.903604 101.040527) (xy 230.903604 100.968828)
(xy 231.130126 100.742306) (xy 231.159627 100.706359) (xy 231.188876 100.651637) (xy 231.206888 100.592259) (xy 231.210298 100.557634)
(xy 231.287778 100.557634) (xy 231.299137 100.618718) (xy 231.322195 100.676411) (xy 231.356066 100.728498) (xy 231.638909 101.011341)
(xy 231.836899 100.813351) (xy 231.395738 100.372191) (xy 231.329718 100.374818) (xy 231.301434 100.434727) (xy 231.288553 100.495509)
(xy 231.287778 100.557634) (xy 231.210298 100.557634) (xy 231.21297 100.530508) (xy 231.206888 100.468757) (xy 231.188876 100.40938)
(xy 231.159627 100.354657) (xy 231.120263 100.306692) (xy 231.072298 100.267328) (xy 231.017575 100.238079) (xy 230.958198 100.220067)
(xy 230.927107 100.217005) (xy 230.924045 100.185915) (xy 230.906033 100.126538) (xy 230.876784 100.071815) (xy 230.83742 100.02385)
(xy 230.789455 99.984486) (xy 230.734732 99.955237) (xy 230.675355 99.937225) (xy 230.644264 99.934163) (xy 230.641202 99.903072)
(xy 230.62319 99.843695) (xy 230.593941 99.788972) (xy 230.554577 99.741007) (xy 230.506612 99.701643) (xy 230.451889 99.672394)
(xy 230.392512 99.654382) (xy 230.361422 99.65132) (xy 230.359981 99.636689) (xy 230.428343 99.623091) (xy 230.508418 99.589923)
(xy 230.580484 99.54177) (xy 230.64177 99.480484) (xy 230.689923 99.408418) (xy 230.723091 99.328343) (xy 230.74 99.243336)
(xy 230.74 99.156664) (xy 230.723091 99.071657) (xy 230.689923 98.991582) (xy 230.665 98.954282) (xy 230.665 98.95)
(xy 230.660869 98.908056) (xy 230.648634 98.867723) (xy 230.628766 98.830552) (xy 230.602028 98.797972) (xy 230.202028 98.397972)
(xy 230.169448 98.371234) (xy 230.132277 98.351366) (xy 230.091944 98.339131) (xy 230.05 98.335) (xy 229.3 98.335)
(xy 229.258056 98.339131) (xy 229.217723 98.351366) (xy 229.180552 98.371234) (xy 229.153481 98.393451) (xy 229.124363 98.392292)
(xy 228.683202 98.833452) (xy 228.697345 98.847595) (xy 228.647848 98.897092) (xy 228.633705 98.882949) (xy 228.619563 98.897092)
(xy 228.570066 98.847595) (xy 228.584208 98.833452) (xy 228.386218 98.635462) (xy 228.386218 98.635463) (xy 228.350862 98.600107)
(xy 228.33672 98.61425) (xy 228.287223 98.564753) (xy 228.301365 98.55061) (xy 228.287223 98.536468) (xy 228.33672 98.486971)
(xy 228.350862 98.501113) (xy 228.365004 98.48697) (xy 228.414502 98.536468) (xy 228.400359 98.55061) (xy 228.598349 98.7486)
(xy 228.59835 98.7486) (xy 228.633705 98.783955) (xy 229.074865 98.342794) (xy 229.072238 98.276774) (xy 229.012329 98.24849)
(xy 228.951547 98.235609) (xy 228.94874 98.235574) (xy 228.948705 98.232768) (xy 228.935824 98.171986) (xy 228.918372 98.13502)
(xy 228.978343 98.123091) (xy 229.058418 98.089923) (xy 229.130484 98.04177) (xy 229.19177 97.980484) (xy 229.239923 97.908418)
(xy 229.273091 97.828343) (xy 229.29 97.743336) (xy 229.29 97.69843) (xy 229.298634 97.682277) (xy 229.310869 97.641944)
(xy 229.315 97.6) (xy 229.310869 97.558056) (xy 229.298634 97.517723) (xy 229.278766 97.480552) (xy 229.252028 97.447972)
(xy 228.602028 96.797972) (xy 228.569448 96.771234) (xy 228.532277 96.751366) (xy 228.491944 96.739131) (xy 228.45 96.735)
(xy 227.95 96.735) (xy 227.908056 96.739131) (xy 227.867723 96.751366) (xy 227.830552 96.771234) (xy 227.797972 96.797972)
(xy 227.70368 96.892265) (xy 227.700322 96.888907) (xy 227.660651 96.928578) (xy 227.658024 96.862561) (xy 227.598115 96.834277)
(xy 227.537333 96.821396) (xy 227.534527 96.821361) (xy 227.534492 96.818554) (xy 227.521611 96.757772) (xy 227.493327 96.697863)
(xy 227.427307 96.695236) (xy 226.986146 97.136396) (xy 227.021502 97.171752) (xy 227.021501 97.171752) (xy 227.219491 97.369742)
(xy 227.233633 97.355599) (xy 227.236989 97.358955) (xy 227.159207 97.436737) (xy 227.155852 97.433382) (xy 227.169994 97.419239)
(xy 227.134639 97.383884) (xy 227.134639 97.383883) (xy 226.936649 97.185893) (xy 226.922507 97.200036) (xy 226.87301 97.150539)
(xy 226.887152 97.136396) (xy 226.689162 96.938406) (xy 226.662031 96.965537) (xy 226.584645 96.888909) (xy 226.738659 96.888909)
(xy 226.936649 97.086899) (xy 227.377809 96.645738) (xy 227.375182 96.579718) (xy 227.315273 96.551434) (xy 227.254491 96.538553)
(xy 227.192366 96.537778) (xy 227.131282 96.549137) (xy 227.073589 96.572195) (xy 227.021502 96.606066) (xy 226.738659 96.888909)
(xy 226.584645 96.888909) (xy 226.241925 96.549549) (xy 226.290993 96.5) (xy 228.771218 96.5) (xy 228.775369 96.542147)
(xy 228.787663 96.582675) (xy 228.807627 96.620025) (xy 228.834495 96.652763) (xy 231.097237 98.915505) (xy 231.129975 98.942373)
(xy 231.167325 98.962337) (xy 231.207853 98.974631) (xy 231.25 98.978782) (xy 231.292147 98.974631) (xy 231.332675 98.962337)
(xy 231.370025 98.942373) (xy 231.402763 98.915505) (xy 232.40708 97.911188) (xy 232.458418 97.889923) (xy 232.530484 97.84177)
(xy 232.59177 97.780484) (xy 232.639923 97.708418) (xy 232.661188 97.65708) (xy 233.665505 96.652763) (xy 233.692373 96.620025)
(xy 233.712337 96.582675) (xy 233.724631 96.542147) (xy 233.728782 96.5) (xy 233.724631 96.457853) (xy 233.712337 96.417325)
(xy 233.692373 96.379975) (xy 233.665505 96.347237) (xy 231.402763 94.084495) (xy 231.370025 94.057627) (xy 231.332675 94.037663)
(xy 231.292147 94.025369) (xy 231.25 94.021218) (xy 231.207853 94.025369) (xy 231.167325 94.037663) (xy 231.129975 94.057627)
(xy 231.097237 94.084495) (xy 230.09292 95.088812) (xy 230.041582 95.110077) (xy 229.969516 95.15823) (xy 229.90823 95.219516)
(xy 229.860077 95.291582) (xy 229.838812 95.34292) (xy 228.834495 96.347237) (xy 228.807627 96.379975) (xy 228.787663 96.417325)
(xy 228.775369 96.457853) (xy 228.771218 96.5) (xy 226.290993 96.5) (xy 226.54447 96.244039) (xy 226.676127 96.111091)
(xy 226.738659 96.111091) (xy 227.021502 96.393934) (xy 227.073589 96.427805) (xy 227.131282 96.450863) (xy 227.192366 96.462222)
(xy 227.254491 96.461447) (xy 227.315273 96.448566) (xy 227.375182 96.420282) (xy 227.377809 96.354262) (xy 226.936649 95.913101)
(xy 226.738659 96.111091) (xy 226.676127 96.111091) (xy 226.967594 95.816767) (xy 227.000289 95.849462) (xy 226.986146 95.863604)
(xy 227.427307 96.304764) (xy 227.493327 96.302137) (xy 227.521611 96.242228) (xy 227.534492 96.181446) (xy 227.534548 96.176954)
(xy 227.564085 96.174045) (xy 227.623462 96.156033) (xy 227.678185 96.126784) (xy 227.72615 96.08742) (xy 227.765514 96.039455)
(xy 227.794763 95.984732) (xy 227.812775 95.925355) (xy 227.815837 95.894264) (xy 227.846928 95.891202) (xy 227.906305 95.87319)
(xy 227.961028 95.843941) (xy 228.008993 95.804577) (xy 228.048357 95.756612) (xy 228.077606 95.701889) (xy 228.095618 95.642512)
(xy 228.09868 95.611422) (xy 228.129771 95.60836) (xy 228.189148 95.590348) (xy 228.243871 95.561099) (xy 228.291836 95.521735)
(xy 228.3312 95.47377) (xy 228.360449 95.419047) (xy 228.378461 95.35967) (xy 228.381523 95.328579) (xy 228.412613 95.325517)
(xy 228.47199 95.307505) (xy 228.526713 95.278256) (xy 228.574678 95.238892) (xy 228.614042 95.190927) (xy 228.643291 95.136204)
(xy 228.661303 95.076827) (xy 228.664365 95.045736) (xy 228.695456 95.042674) (xy 228.754833 95.024662) (xy 228.809556 94.995413)
(xy 228.857521 94.956049) (xy 228.896885 94.908084) (xy 228.926134 94.853361) (xy 228.944146 94.793984) (xy 228.947208 94.762894)
(xy 228.978299 94.759832) (xy 229.037676 94.74182) (xy 229.092399 94.712571) (xy 229.140364 94.673207) (xy 229.179728 94.625242)
(xy 229.208977 94.570519) (xy 229.226989 94.511142) (xy 229.230051 94.480051) (xy 229.261142 94.476989) (xy 229.320519 94.458977)
(xy 229.375242 94.429728) (xy 229.423207 94.390364) (xy 229.462571 94.342399) (xy 229.49182 94.287676) (xy 229.509832 94.228299)
(xy 229.512894 94.197208) (xy 229.543984 94.194146) (xy 229.603361 94.176134) (xy 229.658084 94.146885) (xy 229.706049 94.107521)
(xy 229.745413 94.059556) (xy 229.774662 94.004833) (xy 229.792674 93.945456) (xy 229.795583 93.915918) (xy 229.800075 93.915862)
(xy 229.860857 93.902981) (xy 229.920766 93.874697) (xy 229.923393 93.808677) (xy 229.482233 93.367516) (xy 229.468091 93.381659)
(xy 229.423358 93.336926) (xy 229.500761 93.258765) (xy 229.545873 93.303877) (xy 229.53173 93.318019) (xy 229.972891 93.759179)
(xy 230.038911 93.756552) (xy 230.067195 93.696643) (xy 230.080076 93.635861) (xy 230.080132 93.63137) (xy 230.10967 93.628461)
(xy 230.169047 93.610449) (xy 230.22377 93.5812) (xy 230.271735 93.541836) (xy 230.311099 93.493871) (xy 230.340348 93.439148)
(xy 230.35836 93.379771) (xy 230.361422 93.34868) (xy 230.392512 93.345618) (xy 230.451889 93.327606) (xy 230.506612 93.298357)
(xy 230.554577 93.258993) (xy 230.593941 93.211028) (xy 230.62319 93.156305) (xy 230.641202 93.096928) (xy 230.644264 93.065837)
(xy 230.675355 93.062775) (xy 230.734732 93.044763) (xy 230.789455 93.015514) (xy 230.83742 92.97615) (xy 230.876784 92.928185)
(xy 230.906033 92.873462) (xy 230.924045 92.814085) (xy 230.927107 92.782995) (xy 230.958198 92.779933) (xy 231.009692 92.764312)
)
)
(filled_polygon
(pts
(xy 233.637365 93.879289) (xy 233.632949 93.883705) (xy 233.647092 93.897848) (xy 233.597595 93.947345) (xy 233.583452 93.933202)
(xy 233.56931 93.947345) (xy 233.543612 93.921647) (xy 233.608427 93.850351)
)
)
)
(zone (net 3) (net_name +1V1) (layer In2.Cu) (tstamp 0) (hatch edge 0.508)
(priority 1)
(connect_pads yes (clearance 0.13))
(min_thickness 0.13)
(fill yes (arc_segments 16) (thermal_gap 0.13) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 232.15 93.2) (xy 233.55 94.6) (xy 233 95.15) (xy 233 97.2) (xy 230.75 99.45)
(xy 229.2 99.45) (xy 227.55 97.8) (xy 228.2 97.15) (xy 229.1 97.15) (xy 230.05 96.2)
(xy 230.05 95.3)
)
)
(filled_polygon
(pts
(xy 233.458076 94.6) (xy 233.395944 94.662132) (xy 233.321657 94.676909) (xy 233.241582 94.710077) (xy 233.169516 94.75823)
(xy 233.10823 94.819516) (xy 233.060077 94.891582) (xy 233.026909 94.971657) (xy 233.012132 95.045944) (xy 232.954038 95.104038)
(xy 232.945954 95.113888) (xy 232.939948 95.125126) (xy 232.936249 95.137319) (xy 232.935 95.15) (xy 232.935 97.173076)
(xy 232.683598 97.424478) (xy 232.673091 97.371657) (xy 232.639923 97.291582) (xy 232.59177 97.219516) (xy 232.530484 97.15823)
(xy 232.458418 97.110077) (xy 232.378343 97.076909) (xy 232.293336 97.06) (xy 232.206664 97.06) (xy 232.121657 97.076909)
(xy 232.041582 97.110077) (xy 231.969516 97.15823) (xy 231.90823 97.219516) (xy 231.860077 97.291582) (xy 231.826909 97.371657)
(xy 231.81 97.456664) (xy 231.81 97.543336) (xy 231.826909 97.628343) (xy 231.860077 97.708418) (xy 231.90823 97.780484)
(xy 231.969516 97.84177) (xy 232.041582 97.889923) (xy 232.121657 97.923091) (xy 232.174478 97.933598) (xy 230.723076 99.385)
(xy 229.226924 99.385) (xy 227.948588 98.106664) (xy 228.96 98.106664) (xy 228.96 98.193336) (xy 228.976909 98.278343)
(xy 229.010077 98.358418) (xy 229.05823 98.430484) (xy 229.119516 98.49177) (xy 229.191582 98.539923) (xy 229.271657 98.573091)
(xy 229.356664 98.59) (xy 229.443336 98.59) (xy 229.528343 98.573091) (xy 229.608418 98.539923) (xy 229.680484 98.49177)
(xy 229.74177 98.430484) (xy 229.789923 98.358418) (xy 229.823091 98.278343) (xy 229.84 98.193336) (xy 229.84 98.106664)
(xy 229.823091 98.021657) (xy 229.789923 97.941582) (xy 229.74177 97.869516) (xy 229.680484 97.80823) (xy 229.608418 97.760077)
(xy 229.528343 97.726909) (xy 229.443336 97.71) (xy 229.356664 97.71) (xy 229.271657 97.726909) (xy 229.191582 97.760077)
(xy 229.119516 97.80823) (xy 229.05823 97.869516) (xy 229.010077 97.941582) (xy 228.976909 98.021657) (xy 228.96 98.106664)
(xy 227.948588 98.106664) (xy 227.641924 97.8) (xy 228.226924 97.215) (xy 229.1 97.215) (xy 229.112681 97.213751)
(xy 229.124874 97.210052) (xy 229.136112 97.204046) (xy 229.145962 97.195962) (xy 229.63526 96.706664) (xy 230.56 96.706664)
(xy 230.56 96.793336) (xy 230.576909 96.878343) (xy 230.610077 96.958418) (xy 230.65823 97.030484) (xy 230.719516 97.09177)
(xy 230.791582 97.139923) (xy 230.871657 97.173091) (xy 230.956664 97.19) (xy 231.043336 97.19) (xy 231.128343 97.173091)
(xy 231.208418 97.139923) (xy 231.280484 97.09177) (xy 231.34177 97.030484) (xy 231.389923 96.958418) (xy 231.423091 96.878343)
(xy 231.44 96.793336) (xy 231.44 96.706664) (xy 231.435862 96.685862) (xy 231.456664 96.69) (xy 231.543336 96.69)
(xy 231.628343 96.673091) (xy 231.708418 96.639923) (xy 231.780484 96.59177) (xy 231.84177 96.530484) (xy 231.889923 96.458418)
(xy 231.923091 96.378343) (xy 231.94 96.293336) (xy 231.94 96.206664) (xy 231.923091 96.121657) (xy 231.889923 96.041582)
(xy 231.84177 95.969516) (xy 231.780484 95.90823) (xy 231.708418 95.860077) (xy 231.628343 95.826909) (xy 231.543336 95.81)
(xy 231.456664 95.81) (xy 231.371657 95.826909) (xy 231.291582 95.860077) (xy 231.219516 95.90823) (xy 231.15823 95.969516)
(xy 231.110077 96.041582) (xy 231.076909 96.121657) (xy 231.06 96.206664) (xy 231.06 96.293336) (xy 231.064138 96.314138)
(xy 231.043336 96.31) (xy 230.956664 96.31) (xy 230.871657 96.326909) (xy 230.791582 96.360077) (xy 230.719516 96.40823)
(xy 230.65823 96.469516) (xy 230.610077 96.541582) (xy 230.576909 96.621657) (xy 230.56 96.706664) (xy 229.63526 96.706664)
(xy 230.095962 96.245962) (xy 230.104046 96.236112) (xy 230.110052 96.224874) (xy 230.113751 96.212681) (xy 230.115 96.2)
(xy 230.115 95.920334) (xy 230.121657 95.923091) (xy 230.206664 95.94) (xy 230.293336 95.94) (xy 230.378343 95.923091)
(xy 230.458418 95.889923) (xy 230.530484 95.84177) (xy 230.59177 95.780484) (xy 230.639923 95.708418) (xy 230.673091 95.628343)
(xy 230.69 95.543336) (xy 230.69 95.456664) (xy 230.673091 95.371657) (xy 230.639923 95.291582) (xy 230.59177 95.219516)
(xy 230.530484 95.15823) (xy 230.458418 95.110077) (xy 230.378343 95.076909) (xy 230.367226 95.074698) (xy 231.751914 93.69001)
(xy 231.833118 93.69001) (xy 231.918125 93.673101) (xy 231.9982 93.639933) (xy 232.070266 93.59178) (xy 232.131552 93.530494)
(xy 232.179705 93.458428) (xy 232.212873 93.378353) (xy 232.216781 93.358705)
)
)
)
(zone (net 3) (net_name +1V1) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(priority 2)
(connect_pads yes (clearance 0.13))
(min_thickness 0.13)
(fill yes (arc_segments 16) (thermal_gap 0.15) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 227.25 97.65) (xy 227.95 96.95) (xy 228.45 96.95) (xy 229.1 97.6) (xy 228.85 97.85)
(xy 227.45 97.85)
)
)
(filled_polygon
(pts
(xy 229.008076 97.6) (xy 228.823076 97.785) (xy 228.594286 97.785) (xy 228.574678 97.761108) (xy 228.526713 97.721744)
(xy 228.47199 97.692495) (xy 228.412613 97.674483) (xy 228.381523 97.671421) (xy 228.378461 97.64033) (xy 228.360449 97.580953)
(xy 228.3312 97.52623) (xy 228.291836 97.478265) (xy 228.243871 97.438901) (xy 228.189148 97.409652) (xy 228.129771 97.39164)
(xy 228.06802 97.385558) (xy 228.006269 97.39164) (xy 227.946891 97.409652) (xy 227.892169 97.438901) (xy 227.856222 97.468402)
(xy 227.539625 97.785) (xy 227.476924 97.785) (xy 227.388065 97.696141) (xy 227.736013 97.348194) (xy 227.765514 97.312247)
(xy 227.794763 97.257525) (xy 227.812775 97.198147) (xy 227.814851 97.177073) (xy 227.961006 97.030918) (xy 228.006664 97.04)
(xy 228.093336 97.04) (xy 228.178343 97.023091) (xy 228.197876 97.015) (xy 228.423076 97.015)
)
)
)
(zone (net 3) (net_name +1V1) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(priority 2)
(connect_pads yes (clearance 0.13))
(min_thickness 0.13)
(fill yes (arc_segments 16) (thermal_gap 0.15) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 228.75 99.1) (xy 229.3 98.55) (xy 230.05 98.55) (xy 230.45 98.95) (xy 230.45 99.25)
(xy 230.25 99.4) (xy 229.9 99.05) (xy 229.2 99.05) (xy 228.95 99.3)
)
)
(filled_polygon
(pts
(xy 230.385 98.976924) (xy 230.385 99.2175) (xy 230.256099 99.314175) (xy 229.945962 99.004038) (xy 229.936112 98.995954)
(xy 229.924874 98.989948) (xy 229.912681 98.986249) (xy 229.9 98.985) (xy 229.769228 98.985) (xy 229.745413 98.940444)
(xy 229.706049 98.892479) (xy 229.658084 98.853115) (xy 229.603361 98.823866) (xy 229.543984 98.805854) (xy 229.482233 98.799772)
(xy 229.420482 98.805854) (xy 229.361104 98.823866) (xy 229.306382 98.853115) (xy 229.270435 98.882616) (xy 228.947488 99.205564)
(xy 228.841924 99.1) (xy 229.326924 98.615) (xy 230.023076 98.615)
)
)
)
(zone (net 3) (net_name +1V1) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(priority 2)
(connect_pads yes (clearance 0.13))
(min_thickness 0.13)
(fill yes (arc_segments 16) (thermal_gap 0.15) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 233.2 93.35) (xy 232.25 93.35) (xy 232 93.6) (xy 232 93.85) (xy 232.5 94.35)
(xy 232.85 94.35) (xy 233 94.2) (xy 233.5 93.65)
)
)
(filled_polygon
(pts
(xy 232.228265 93.541836) (xy 232.27623 93.5812) (xy 232.330953 93.610449) (xy 232.390331 93.628461) (xy 232.421421 93.631523)
(xy 232.424483 93.662612) (xy 232.442495 93.72199) (xy 232.471744 93.776713) (xy 232.511108 93.824678) (xy 232.559073 93.864042)
(xy 232.613796 93.893291) (xy 232.673174 93.911303) (xy 232.734924 93.917385) (xy 232.796674 93.911303) (xy 232.856052 93.893291)
(xy 232.910775 93.864042) (xy 232.946721 93.834541) (xy 233.269669 93.511593) (xy 233.389878 93.631802) (xy 233.371657 93.650024)
(xy 233.371654 93.650026) (xy 233.013208 94.008473) (xy 233.001185 94.01834) (xy 232.979252 94.045066) (xy 232.961821 94.066305)
(xy 232.952099 94.084495) (xy 232.932571 94.121029) (xy 232.914559 94.180406) (xy 232.913127 94.194949) (xy 232.823076 94.285)
(xy 232.526924 94.285) (xy 232.065 93.823076) (xy 232.065 93.626924) (xy 232.193026 93.498898)
)
)
)
(zone (net 4) (net_name VBUS) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.15))
(min_thickness 0.15)
(fill yes (arc_segments 16) (thermal_gap 0.15) (thermal_bridge_width 0.25))
(polygon
(pts
(xy 203.5 96) (xy 204.85 96) (xy 205.35 95.5) (xy 206.85 95.5) (xy 207.15 95.5)
(xy 210.1 95.5) (xy 210.3 95.7) (xy 210.3 96.4) (xy 210.2 96.5) (xy 206.15 96.5)
(xy 203.5 96.5)
)
)
(filled_polygon
(pts
(xy 210.225 95.731066) (xy 210.225 96.368934) (xy 210.168934 96.425) (xy 210.105591 96.425) (xy 210.105 96.30625)
(xy 210.04875 96.25) (xy 209.15 96.25) (xy 209.15 96.27) (xy 209.05 96.27) (xy 209.05 96.25)
(xy 208.15125 96.25) (xy 208.095 96.30625) (xy 208.094409 96.425) (xy 208.065599 96.425) (xy 208.065 96.32125)
(xy 208.00875 96.265) (xy 207.57 96.265) (xy 207.57 96.285) (xy 207.47 96.285) (xy 207.47 96.265)
(xy 207.03125 96.265) (xy 206.975 96.32125) (xy 206.974401 96.425) (xy 206.242707 96.425) (xy 206.236321 96.422355)
(xy 206.149382 96.405061) (xy 206.144939 96.405061) (xy 206.144939 96.400618) (xy 206.127645 96.313679) (xy 206.093724 96.231784)
(xy 206.044477 96.158081) (xy 205.981797 96.095401) (xy 205.908094 96.046154) (xy 205.826199 96.012233) (xy 205.73926 95.994939)
(xy 205.650618 95.994939) (xy 205.563679 96.012233) (xy 205.481784 96.046154) (xy 205.408081 96.095401) (xy 205.345401 96.158081)
(xy 205.296154 96.231784) (xy 205.262233 96.313679) (xy 205.248613 96.382148) (xy 205.205761 96.425) (xy 205.111127 96.425)
(xy 205.113589 96.4) (xy 205.1125 96.30625) (xy 205.05625 96.25) (xy 204.2625 96.25) (xy 204.2625 96.27)
(xy 204.1625 96.27) (xy 204.1625 96.25) (xy 204.1425 96.25) (xy 204.1425 96.15) (xy 204.1625 96.15)
(xy 204.1625 96.13) (xy 204.2625 96.13) (xy 204.2625 96.15) (xy 205.05625 96.15) (xy 205.1125 96.09375)
(xy 205.113589 96) (xy 205.109245 95.955892) (xy 205.098358 95.92) (xy 206.973911 95.92) (xy 206.975 96.10875)
(xy 207.03125 96.165) (xy 207.47 96.165) (xy 207.47 95.75125) (xy 207.57 95.75125) (xy 207.57 96.165)
(xy 208.00875 96.165) (xy 208.065 96.10875) (xy 208.066089 95.92) (xy 208.061745 95.875892) (xy 208.061475 95.875)
(xy 208.093911 95.875) (xy 208.095 96.09375) (xy 208.15125 96.15) (xy 209.05 96.15) (xy 209.05 95.70625)
(xy 209.15 95.70625) (xy 209.15 96.15) (xy 210.04875 96.15) (xy 210.105 96.09375) (xy 210.106089 95.875)
(xy 210.101745 95.830892) (xy 210.088879 95.788479) (xy 210.067986 95.749392) (xy 210.039869 95.715131) (xy 210.005608 95.687014)
(xy 209.966521 95.666121) (xy 209.924108 95.653255) (xy 209.88 95.648911) (xy 209.20625 95.65) (xy 209.15 95.70625)
(xy 209.05 95.70625) (xy 208.99375 95.65) (xy 208.32 95.648911) (xy 208.275892 95.653255) (xy 208.233479 95.666121)
(xy 208.194392 95.687014) (xy 208.160131 95.715131) (xy 208.132014 95.749392) (xy 208.111121 95.788479) (xy 208.098255 95.830892)
(xy 208.093911 95.875) (xy 208.061475 95.875) (xy 208.048879 95.833479) (xy 208.027986 95.794392) (xy 207.999869 95.760131)
(xy 207.965608 95.732014) (xy 207.926521 95.711121) (xy 207.884108 95.698255) (xy 207.84 95.693911) (xy 207.62625 95.695)
(xy 207.57 95.75125) (xy 207.47 95.75125) (xy 207.41375 95.695) (xy 207.2 95.693911) (xy 207.155892 95.698255)
(xy 207.113479 95.711121) (xy 207.074392 95.732014) (xy 207.040131 95.760131) (xy 207.012014 95.794392) (xy 206.991121 95.833479)
(xy 206.978255 95.875892) (xy 206.973911 95.92) (xy 205.098358 95.92) (xy 205.096379 95.913479) (xy 205.077641 95.878425)
(xy 205.381066 95.575) (xy 210.068934 95.575)
)
)
)
(zone (net 1) (net_name +3V3) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.15))
(min_thickness 0.15)
(fill yes (arc_segments 16) (thermal_gap 0.15) (thermal_bridge_width 0.25))
(polygon
(pts
(xy 210.7 96.65) (xy 210.7 95.75) (xy 210.95 95.5) (xy 213.85 95.5) (xy 214.15 95.8)
(xy 214.15 96.5) (xy 214 96.65) (xy 212.95 96.65) (xy 212.8 96.65)
)
)
(filled_polygon
(pts
(xy 214.075 95.831066) (xy 214.075 96.468934) (xy 213.978226 96.565708) (xy 213.981745 96.554108) (xy 213.986089 96.51)
(xy 213.985 96.32125) (xy 213.92875 96.265) (xy 213.49 96.265) (xy 213.49 96.285) (xy 213.39 96.285)
(xy 213.39 96.265) (xy 212.95125 96.265) (xy 212.895 96.32125) (xy 212.893911 96.51) (xy 212.898255 96.554108)
(xy 212.904593 96.575) (xy 212.799958 96.575) (xy 212.801745 96.569108) (xy 212.806089 96.525) (xy 212.805 96.30625)
(xy 212.74875 96.25) (xy 211.85 96.25) (xy 211.85 96.27) (xy 211.75 96.27) (xy 211.75 96.25)
(xy 210.85125 96.25) (xy 210.795 96.30625) (xy 210.793911 96.525) (xy 210.798255 96.569108) (xy 210.800042 96.575)
(xy 210.775 96.575) (xy 210.775 95.875) (xy 210.793911 95.875) (xy 210.795 96.09375) (xy 210.85125 96.15)
(xy 211.75 96.15) (xy 211.75 95.70625) (xy 211.85 95.70625) (xy 211.85 96.15) (xy 212.74875 96.15)
(xy 212.805 96.09375) (xy 212.805864 95.92) (xy 212.893911 95.92) (xy 212.895 96.10875) (xy 212.95125 96.165)
(xy 213.39 96.165) (xy 213.39 95.75125) (xy 213.49 95.75125) (xy 213.49 96.165) (xy 213.92875 96.165)
(xy 213.985 96.10875) (xy 213.986089 95.92) (xy 213.981745 95.875892) (xy 213.968879 95.833479) (xy 213.947986 95.794392)
(xy 213.919869 95.760131) (xy 213.885608 95.732014) (xy 213.846521 95.711121) (xy 213.804108 95.698255) (xy 213.76 95.693911)
(xy 213.54625 95.695) (xy 213.49 95.75125) (xy 213.39 95.75125) (xy 213.33375 95.695) (xy 213.12 95.693911)
(xy 213.075892 95.698255) (xy 213.033479 95.711121) (xy 212.994392 95.732014) (xy 212.960131 95.760131) (xy 212.932014 95.794392)
(xy 212.911121 95.833479) (xy 212.898255 95.875892) (xy 212.893911 95.92) (xy 212.805864 95.92) (xy 212.806089 95.875)
(xy 212.801745 95.830892) (xy 212.788879 95.788479) (xy 212.767986 95.749392) (xy 212.739869 95.715131) (xy 212.705608 95.687014)
(xy 212.666521 95.666121) (xy 212.624108 95.653255) (xy 212.58 95.648911) (xy 211.90625 95.65) (xy 211.85 95.70625)
(xy 211.75 95.70625) (xy 211.69375 95.65) (xy 211.02 95.648911) (xy 210.975892 95.653255) (xy 210.933479 95.666121)
(xy 210.894392 95.687014) (xy 210.860131 95.715131) (xy 210.832014 95.749392) (xy 210.811121 95.788479) (xy 210.798255 95.830892)
(xy 210.793911 95.875) (xy 210.775 95.875) (xy 210.775 95.781066) (xy 210.981066 95.575) (xy 213.818934 95.575)
)
)
)
(zone (net 2) (net_name GND) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads yes (clearance 0.15))
(min_thickness 0.15)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 206.95 96.8) (xy 214.3 96.8) (xy 214.3 97.5) (xy 206.95 97.5)
)
)
(filled_polygon
(pts
(xy 214.225 97.425) (xy 207.025 97.425) (xy 207.025 96.875) (xy 214.225 96.875)
)
)
)
)
| KiCad | 5 | lab-mathias-claussen/PicoDVI | hardware/board/picodvi.kicad_pcb | [
"BSD-3-Clause"
] |
module openconfig-ate-flow {
yang-version "1";
namespace "http://openconfig.net/yang/ate-flow";
prefix "oc-flow";
import openconfig-extensions { prefix "oc-ext"; }
import openconfig-yang-types { prefix "oc-yang"; }
import openconfig-types { prefix "oc-types"; }
import openconfig-inet-types { prefix "oc-inet"; }
import openconfig-mpls-types { prefix "oc-mplst"; }
organization
"OpenConfig working group";
contact
"OpenConfig working group
[email protected]";
description
"This module defines telemetry that relates to flows that are tracked
by a network device, or automated test equipment. A flow is an arbitrary
stream of packets whose definition is outside of the context of this
module.";
oc-ext:openconfig-version "0.2.0";
revision 2019-08-07 {
description
"Add additional flow statistics to support ONDATRA ATEs.";
reference "0.2.0";
}
revision 2019-06-11 {
description "Initial revision.";
reference "0.1.0";
}
// Boilerplate for OpenConfig modules to indicate catalog, telemetry
// origin and declare pattern statements to be POSIX regexps.
oc-ext:catalog-organization "openconfig";
oc-ext:origin "openconfig";
grouping flow-top {
description
"Top-level structural grouping for flow entries.";
container flows {
description
"Flow statistics collected by the network device. A flow is defined to
be an arbitrary stream of packets whose definition is outside of the
context of the module.";
list flow {
config false;
description
"A flow of packets between one or more internal and external sources
and one or more internal and external destinations that the target
is able to track and report statistics on. Each flow is identified by
an arbitrary string identifier.";
key "name";
leaf name {
type leafref {
path "../state/name";
}
description
"Reference to the flow's name, acting as a key of the flow list.";
}
container state {
config false;
description
"Operational state of the individual flow.";
uses flow-params;
uses flow-state;
container counters {
description
"Counters that correspond to the individual flow.";
uses flow-counters-state;
}
}
container ingress-tracking {
config false;
description
"Flow statistics grouped by ingress tracking filter.";
uses flow-ingress-tracking;
}
container egress-tracking {
config false;
description
"Flow statistics grouped by egress tracking filter.";
uses flow-egress-tracking;
}
}
}
}
grouping flow-params {
description
"Parameters of an individual flow.";
leaf name {
type string;
description
"An arbitary name used for the flow tracked by the system. This
name must be unique for the flows tracked and exported by the target.";
}
leaf src-port {
type string;
description
"Value of the source port for ingress tracking.";
}
leaf dst-port {
type string;
description
"Value of the destination port for ingress tracking.";
}
leaf mpls-label {
type oc-mplst:mpls-label;
description
"Value of the MPLS label for ingress tracking.";
}
leaf src-ipv4 {
type oc-inet:ipv4-address;
description
"The source IPv4 value of the traffic header.";
}
leaf dst-ipv4 {
type oc-inet:ipv4-address;
description
"The destination IPv4 value of the traffic header.";
}
leaf src-ipv6 {
type oc-inet:ipv6-address;
description
"The source IPv6 value of the traffic header.";
}
leaf dst-ipv6 {
type oc-inet:ipv6-address;
description
"The destination IPv6 value of the traffic header.";
}
leaf filter {
type string;
description
"Name of the filter on which the egress stats are tracked";
}
}
grouping flow-state {
description
"Operational state of the individual flow.";
leaf loss-pct {
type oc-types:ieeefloat32;
description
"The percentage of transmitted packets that were not received by the
destinations of the flow.";
}
leaf out-frame-rate {
type oc-types:ieeefloat32;
description
"The rate, measured in frames per second, at which frames are being
transmitted for the flow.";
}
leaf in-frame-rate {
type oc-types:ieeefloat32;
description
"The rate, measured in frames per second, at which frames are being
received for the flow.";
}
leaf out-rate {
type oc-types:ieeefloat32;
description
"The rate, measured in bits per second, at which the flow is being
transmitted.";
}
leaf in-rate {
type oc-types:ieeefloat32;
description
"The rate, measured in bits per second, at which the flow is being
received.";
}
}
grouping flow-counters-state {
description
"Counters that correspond to an individual flow.";
leaf in-octets {
type oc-yang:counter64;
description
"The total number of bytes received by the target for the flow.";
}
leaf in-pkts {
type oc-yang:counter64;
description
"The total number of packets received by the target for the flow.";
}
leaf out-octets {
type oc-yang:counter64;
description
"The total number of bytes sent by the target for the flow. These
packets may be generated or forwarded by the target.";
}
leaf out-pkts {
type oc-yang:counter64;
description
"The total number of packets sent by the target for the flow. These
packets may be generated or forwarded by the target.";
}
}
grouping flow-ingress-tracking {
description
"Flow statistics grouped by ingress tracking filter.";
list ingress-tracking {
config false;
description
"If the ATE is configured to track incoming frames by their header
fields, this list will map combinations of values of those header
fields to the flow statistics specific to frames that match that
combination.";
key "src-port dst-port mpls-label src-ipv4 dst-ipv4 src-ipv6 dst-ipv6";
leaf src-port {
type leafref {
path "../state/src-port";
}
description
"Value of the source port for ingress tracking.";
}
leaf dst-port {
type leafref {
path "../state/dst-port";
}
description
"Value of the destination port for ingress tracking.";
}
leaf mpls-label {
type leafref {
path "../state/mpls-label";
}
description
"The MPLS label value of the traffic header.";
}
leaf src-ipv4 {
type leafref {
path "../state/src-ipv4";
}
description
"The src IPv4 value of the traffic header.";
}
leaf dst-ipv4 {
type leafref {
path "../state/dst-ipv4";
}
description
"The dst IPv4 value of the traffic header.";
}
leaf src-ipv6 {
type leafref {
path "../state/src-ipv6";
}
description
"The src IPv6 value of the traffic header.";
}
leaf dst-ipv6 {
type leafref {
path "../state/dst-ipv6";
}
description
"The dst IPv6 value of the traffic header.";
}
container state {
config false;
description
"Operational state of the flow by ingress tracking filter.";
uses flow-params;
uses flow-state;
container counters {
description
"Counters that correspond to the flow by ingress tracking filter.";
uses flow-counters-state;
}
}
container egress-tracking {
config false;
description
"Flow statistics grouped by egress tracking filter.";
uses flow-egress-tracking;
}
}
}
grouping flow-egress-tracking {
description
"Flow statistics grouped by egress tracking filter.";
list egress-tracking {
config false;
description
"If the ATE is configured to track outgoing frames by a header field,
this list will map values of that header field to the flow statistics
specific to frames that match that value.";
key "filter";
leaf filter {
type leafref {
path "../state/filter";
}
description
"The filter value of the egress tracking configuration.";
}
container state {
description
"Operational state of the flow by egress tracking filter.";
config false;
leaf filter {
type string;
description
"Value of the filter on which the egress stats are tracked";
}
uses flow-state;
container counters {
description
"Counters that correspond to the flow by egress tracking filter.";
uses flow-counters-state;
}
}
}
}
uses flow-top;
}
| YANG | 5 | awebsters/public | release/models/ate/openconfig-ate-flow.yang | [
"Apache-2.0"
] |
(ns fw.lib.fw
(:require
[fw.lib.series :refer [series each-series map-series]]
[fw.lib.parallel :refer [parallel each map each-parallel map-parallel]]
[fw.lib.whilst :refer [whilst]]))
(def ^:private fw exports)
(set! (.-VERSION fw) :0.1.2)
(set! (.-series fw) series)
(set! (.-each-series fw) each-series)
(set! (.-map-series fw) map-series)
(set! (.-parallel fw) parallel)
(set! (.-each fw) each)
(set! (.-map fw) map)
(set! (.-map-parallel fw) map-parallel)
(set! (.-each-parallel fw) each-parallel)
(set! (.-whilst fw) whilst)
| wisp | 4 | h2non/fw | src/fw.wisp | [
"MIT"
] |
//@target: ES6
class Foo { x: number }
class Bar extends Foo { y: string }
class Baz { z: number }
var g3: () => Iterable<Foo> = function* () {
yield;
yield new Bar;
yield new Baz;
yield *[new Bar];
yield *[new Baz];
} | TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck25.ts | [
"Apache-2.0"
] |
"""
Project Euler Problem 4: https://projecteuler.net/problem=4
Largest palindrome product
A palindromic number reads the same both ways. The largest palindrome made
from the product of two 2-digit numbers is 9009 = 91 × 99.
Find the largest palindrome made from the product of two 3-digit numbers.
References:
- https://en.wikipedia.org/wiki/Palindromic_number
"""
def solution(n: int = 998001) -> int:
"""
Returns the largest palindrome made from the product of two 3-digit
numbers which is less than n.
>>> solution(20000)
19591
>>> solution(30000)
29992
>>> solution(40000)
39893
>>> solution(10000)
Traceback (most recent call last):
...
ValueError: That number is larger than our acceptable range.
"""
# fetches the next number
for number in range(n - 1, 9999, -1):
str_number = str(number)
# checks whether 'str_number' is a palindrome.
if str_number == str_number[::-1]:
divisor = 999
# if 'number' is a product of two 3-digit numbers
# then number is the answer otherwise fetch next number.
while divisor != 99:
if (number % divisor == 0) and (len(str(number // divisor)) == 3.0):
return number
divisor -= 1
raise ValueError("That number is larger than our acceptable range.")
if __name__ == "__main__":
print(f"{solution() = }")
| Python | 5 | NavpreetDevpuri/Python | project_euler/problem_004/sol1.py | [
"MIT"
] |
KIDS Distribution saved on Sep 13, 2017@21:45:12
Initial form mapping file 311.11 for VA-PALS
**KIDS**:sami*1.0*002^
**INSTALL NAME**
sami*1.0*002
"BLD",10472,0)
sami*1.0*002^^0^3170913^y
"BLD",10472,1,0)
^^1^1^3170913^
"BLD",10472,1,1,0)
file definition of the SAMI FORM MAPPING file 311.11 ^SAMI(311.11,
"BLD",10472,4,0)
^9.64PA^311.11^1
"BLD",10472,4,311.11,0)
311.11
"BLD",10472,4,311.11,222)
y^y^f^^^^n
"BLD",10472,4,"B",311.11,311.11)
"BLD",10472,6.3)
1
"BLD",10472,"KRN",0)
^9.67PA^779.2^20
"BLD",10472,"KRN",.4,0)
.4
"BLD",10472,"KRN",.401,0)
.401
"BLD",10472,"KRN",.402,0)
.402
"BLD",10472,"KRN",.403,0)
.403
"BLD",10472,"KRN",.5,0)
.5
"BLD",10472,"KRN",.84,0)
.84
"BLD",10472,"KRN",3.6,0)
3.6
"BLD",10472,"KRN",3.8,0)
3.8
"BLD",10472,"KRN",9.2,0)
9.2
"BLD",10472,"KRN",9.8,0)
9.8
"BLD",10472,"KRN",19,0)
19
"BLD",10472,"KRN",19.1,0)
19.1
"BLD",10472,"KRN",101,0)
101
"BLD",10472,"KRN",409.61,0)
409.61
"BLD",10472,"KRN",771,0)
771
"BLD",10472,"KRN",779.2,0)
779.2
"BLD",10472,"KRN",870,0)
870
"BLD",10472,"KRN",8989.51,0)
8989.51
"BLD",10472,"KRN",8989.52,0)
8989.52
"BLD",10472,"KRN",8994,0)
8994
"BLD",10472,"KRN","B",.4,.4)
"BLD",10472,"KRN","B",.401,.401)
"BLD",10472,"KRN","B",.402,.402)
"BLD",10472,"KRN","B",.403,.403)
"BLD",10472,"KRN","B",.5,.5)
"BLD",10472,"KRN","B",.84,.84)
"BLD",10472,"KRN","B",3.6,3.6)
"BLD",10472,"KRN","B",3.8,3.8)
"BLD",10472,"KRN","B",9.2,9.2)
"BLD",10472,"KRN","B",9.8,9.8)
"BLD",10472,"KRN","B",19,19)
"BLD",10472,"KRN","B",19.1,19.1)
"BLD",10472,"KRN","B",101,101)
"BLD",10472,"KRN","B",409.61,409.61)
"BLD",10472,"KRN","B",771,771)
"BLD",10472,"KRN","B",779.2,779.2)
"BLD",10472,"KRN","B",870,870)
"BLD",10472,"KRN","B",8989.51,8989.51)
"BLD",10472,"KRN","B",8989.52,8989.52)
"BLD",10472,"KRN","B",8994,8994)
"FIA",311.11)
SAMI FORM MAPPING
"FIA",311.11,0)
^SAMI(311.11,
"FIA",311.11,0,0)
311.11
"FIA",311.11,0,1)
y^y^f^^^^n
"FIA",311.11,0,10)
"FIA",311.11,0,11)
"FIA",311.11,0,"RLRO")
"FIA",311.11,311.11)
0
"FIA",311.11,311.11001)
0
"MBREQ")
0
"QUES","XPF1",0)
Y
"QUES","XPF1","??")
^D REP^XPDH
"QUES","XPF1","A")
Shall I write over your |FLAG| File
"QUES","XPF1","B")
YES
"QUES","XPF1","M")
D XPF1^XPDIQ
"QUES","XPF2",0)
Y
"QUES","XPF2","??")
^D DTA^XPDH
"QUES","XPF2","A")
Want my data |FLAG| yours
"QUES","XPF2","B")
YES
"QUES","XPF2","M")
D XPF2^XPDIQ
"QUES","XPI1",0)
YO
"QUES","XPI1","??")
^D INHIBIT^XPDH
"QUES","XPI1","A")
Want KIDS to INHIBIT LOGONs during the install
"QUES","XPI1","B")
NO
"QUES","XPI1","M")
D XPI1^XPDIQ
"QUES","XPM1",0)
PO^VA(200,:EM
"QUES","XPM1","??")
^D MG^XPDH
"QUES","XPM1","A")
Enter the Coordinator for Mail Group '|FLAG|'
"QUES","XPM1","B")
"QUES","XPM1","M")
D XPM1^XPDIQ
"QUES","XPO1",0)
Y
"QUES","XPO1","??")
^D MENU^XPDH
"QUES","XPO1","A")
Want KIDS to Rebuild Menu Trees Upon Completion of Install
"QUES","XPO1","B")
NO
"QUES","XPO1","M")
D XPO1^XPDIQ
"QUES","XPZ1",0)
Y
"QUES","XPZ1","??")
^D OPT^XPDH
"QUES","XPZ1","A")
Want to DISABLE Scheduled Options, Menu Options, and Protocols
"QUES","XPZ1","B")
NO
"QUES","XPZ1","M")
D XPZ1^XPDIQ
"QUES","XPZ2",0)
Y
"QUES","XPZ2","??")
^D RTN^XPDH
"QUES","XPZ2","A")
Want to MOVE routines to other CPUs
"QUES","XPZ2","B")
NO
"QUES","XPZ2","M")
D XPZ2^XPDIQ
"SEC","^DIC",311.11,311.11,0,"AUDIT")
@
"SEC","^DIC",311.11,311.11,0,"DD")
@
"SEC","^DIC",311.11,311.11,0,"DEL")
@
"SEC","^DIC",311.11,311.11,0,"LAYGO")
@
"SEC","^DIC",311.11,311.11,0,"RD")
@
"SEC","^DIC",311.11,311.11,0,"WR")
@
"VER")
8.0^22.2
"^DD",311.11,311.11,0)
FIELD^^.02^5
"^DD",311.11,311.11,0,"DT")
3170913
"^DD",311.11,311.11,0,"IX","B",311.11,.01)
"^DD",311.11,311.11,0,"NM","SAMI FORM MAPPING")
"^DD",311.11,311.11,.01,0)
FORM^RF^^0;1^K:$L(X)>30!(X?.N)!($L(X)<3)!'(X'?1P.E) X
"^DD",311.11,311.11,.01,.1)
FORM NAME
"^DD",311.11,311.11,.01,1,0)
^.1
"^DD",311.11,311.11,.01,1,1,0)
311.11^B
"^DD",311.11,311.11,.01,1,1,1)
S ^SAMI(311.11,"B",$E(X,1,30),DA)=""
"^DD",311.11,311.11,.01,1,1,2)
K ^SAMI(311.11,"B",$E(X,1,30),DA)
"^DD",311.11,311.11,.01,3)
NAME MUST BE 3-30 CHARACTERS, NOT NUMERIC OR STARTING WITH PUNCTUATION
"^DD",311.11,311.11,.01,"DT")
3170913
"^DD",311.11,311.11,.02,0)
INDEXED BY^FJ20^^2;1^K:$L(X)>20!($L(X)<1) X
"^DD",311.11,311.11,.02,3)
MUMPS variable to use for lookup and indexing
"^DD",311.11,311.11,.02,21,0)
^^1^1^3170913^
"^DD",311.11,311.11,.02,21,1,0)
MUMPS symbol to use for lookup and indexing ie. studyid or DFN
"^DD",311.11,311.11,.02,"DT")
3170913
"^DD",311.11,311.11,.5,0)
FILEMAN FILE (DEFAULT)^P1'^DIC(^0;2^Q
"^DD",311.11,311.11,.5,.1)
DEFAULT FILEMAN FILE FOR MAPPING
"^DD",311.11,311.11,.5,"DT")
3170913
"^DD",311.11,311.11,.7,0)
GRAPH^P17.040801^%wd(17.040801,^0;3^Q
"^DD",311.11,311.11,.7,.1)
DEFAULT GRAPH FOR INTERMEDIATE STORAGE
"^DD",311.11,311.11,.7,"DT")
3170913
"^DD",311.11,311.11,1,0)
VARIABLE^311.11001A^^1;0
"^DD",311.11,311.11001,0)
VARIABLE SUB-FIELD^^5^8
"^DD",311.11,311.11001,0,"DT")
3170913
"^DD",311.11,311.11001,0,"IX","B",311.11001,.01)
"^DD",311.11,311.11001,0,"NM","VARIABLE")
"^DD",311.11,311.11001,0,"UP")
311.11
"^DD",311.11,311.11001,.01,0)
VARIABLE^MFJ90^^0;1^K:$L(X)>90!($L(X)<1) X
"^DD",311.11,311.11001,.01,1,0)
^.1
"^DD",311.11,311.11001,.01,1,1,0)
311.11001^B
"^DD",311.11,311.11001,.01,1,1,1)
S ^SAMI(311.11,DA(1),1,"B",$E(X,1,30),DA)=""
"^DD",311.11,311.11001,.01,1,1,2)
K ^SAMI(311.11,DA(1),1,"B",$E(X,1,30),DA)
"^DD",311.11,311.11001,.01,3)
Answer must be 1-90 characters in length.
"^DD",311.11,311.11001,.01,"DT")
3170913
"^DD",311.11,311.11001,.02,0)
TITLE^FJ90^^0;4^K:$L(X)>90!($L(X)<1) X
"^DD",311.11,311.11001,.02,3)
Answer must be 1-90 characters in length.
"^DD",311.11,311.11001,.02,21,0)
^^1^1^3170913^
"^DD",311.11,311.11001,.02,21,1,0)
Dictionary title of this variable
"^DD",311.11,311.11001,.02,"DT")
3170913
"^DD",311.11,311.11001,.5,0)
FILEMAN FILE^P1'^DIC(^0;2^Q
"^DD",311.11,311.11001,.5,"DT")
3170913
"^DD",311.11,311.11001,1,0)
FILEMAN FIELD^NJ17,7^^0;3^K:+X'=X!(X>999999999)!(X<0)!(X?.E1"."8N.N) X
"^DD",311.11,311.11001,1,3)
Fileman field number which maps to this variable
"^DD",311.11,311.11001,1,21,0)
^^1^1^3170913^
"^DD",311.11,311.11001,1,21,1,0)
Fileman field number which maps to this variable
"^DD",311.11,311.11001,1,"DT")
3170913
"^DD",311.11,311.11001,2,0)
DATA TYPE^FJ30^^0;5^K:$L(X)>30!($L(X)<1) X
"^DD",311.11,311.11001,2,3)
Dictionary data type of this variable
"^DD",311.11,311.11001,2,21,0)
^^1^1^3170913^
"^DD",311.11,311.11001,2,21,1,0)
Dictionary data type of this variable
"^DD",311.11,311.11001,2,"DT")
3170913
"^DD",311.11,311.11001,3,0)
REQUIRED^S^1:YES;0:NO;^0;6^Q
"^DD",311.11,311.11001,3,3)
Is this variable required?
"^DD",311.11,311.11001,3,21,0)
^^1^1^3170913^
"^DD",311.11,311.11001,3,21,1,0)
Dictionary definition of whether the variable is required
"^DD",311.11,311.11001,3,"DT")
3170913
"^DD",311.11,311.11001,4,0)
ELCAP FIELD NUMBER^NJ13,7^^1;1^K:+X'=X!(X>99999)!(X<0)!(X?.E1"."8N.N) X
"^DD",311.11,311.11001,4,3)
ELCAP field number of this variable, if available
"^DD",311.11,311.11001,4,21,0)
^^2^2^3170913^
"^DD",311.11,311.11001,4,21,1,0)
Dictionary value of the ELCAP field number for this variable. May not be ava
"^DD",311.11,311.11001,4,21,2,0)
May not be available.
"^DD",311.11,311.11001,4,"DT")
3170913
"^DD",311.11,311.11001,5,0)
COMMENTS^FJ90^^1;2^K:$L(X)>90!($L(X)<1) X
"^DD",311.11,311.11001,5,3)
Answer must be 1-90 characters in length.
"^DD",311.11,311.11001,5,21,0)
^^1^1^3170913^
"^DD",311.11,311.11001,5,21,1,0)
Dictionary definition/comments about the variable
"^DD",311.11,311.11001,5,"DT")
3170913
"^DIC",311.11,311.11,0)
SAMI FORM MAPPING^311.11
"^DIC",311.11,311.11,0,"GL")
^SAMI(311.11,
"^DIC",311.11,311.11,"%",0)
^1.005^^
"^DIC",311.11,311.11,"%D",0)
^^2^2^3170913^
"^DIC",311.11,311.11,"%D",1,0)
This is a form mapping file created by gpl for the VA-PALS project
"^DIC",311.11,311.11,"%D",2,0)
It maps the variable names used in the ELCAP forms to field numbers in fileman files
"^DIC",311.11,"B","SAMI FORM MAPPING",311.11)
**END**
**END**
| Genshi | 2 | OSEHRA/SAMI-VAPALS-ELCAP | dist/0/sami-form-mapping-file-v1.kid | [
"Apache-2.0"
] |
program_name='math'
#if_not_defined __NCL_LIB_MATH
#define __NCL_LIB_MATH
define_constant
double MATH_E = 2.718281828459045
double MATH_PI = 3.141592653589793
// Precision required for processor intensive math functions. If accuracy is
// not integral to their use this may be increased to improve performance.
double MATH_PRECISION = 1.0e-13
define_variable
// Psuedo constants for non-normal numbers - these are injected with their
// relevant bit patterns on boot
volatile double MATH_NaN
volatile double MATH_POSITIVE_INFINITY
volatile double MATH_NEGATIVE_INFINITY
volatile double MATH_TWO_52
/**
* Load 4 bytes of big endian data contained in a character array into a long.
*
* Note: Array position 1 should contain MSB.
*
* @param x a 4 byte character array containg the data to load
* @return a long filled with the passed data
*/
define_function long math_raw_be_to_long(char x[4])
{
return x[1] << 24 + x[2] << 16 + x[3] << 8 + x[4]
}
/**
* Load 4 bytes of little endian data contained in a character array into a long.
*
* Note: Array position 4 should contain MSB / position 1 should contain LSB
*
* @param x a 4 byte character array containg the data to load
* @return a long filled with the passed data
*/
define_function long math_raw_le_to_long(char x[4])
{
return x[4] << 24 + x[3] << 16 + x[2] << 8 + x[1]
}
/**
* Load a float value's IEEE 754 bit pattern into a long.
*
* @param x the float to load
* @return a long filled with the IEEE 754 bit pattern of the float
*/
define_function long math_float_to_bits(float x)
{
return math_raw_be_to_long(raw_be(x))
}
/**
* Load the raw data stored in bits 63 - 32 of a DOUBLE into a LONG.
*
* @param x the double to load
* @return a long filled binary data stored in the high DWord of the double
*/
define_function long math_double_high_to_bits(double x)
{
stack_var char raw[8]
raw = raw_be(x)
return math_raw_be_to_long("raw[1], raw[2], raw[3], raw[4]")
}
/**
* Load the raw data stored in bits 31 - 0 of a DOUBLE into a LONG.
*
* @param x the double to load
* @return a long filled binary data stored in the low DWord of the double
*/
define_function long math_double_low_to_bits(double x)
{
stack_var char raw[8]
raw = raw_be(x)
return math_raw_be_to_long("raw[5], raw[6], raw[7], raw[8]")
}
/**
* Build a float using a IEEE754 bit pattern stored in a long.
*
* @param x a long containg the raw data
* @return a float built from the passed data
*/
define_function float math_build_float(long x)
{
stack_var char serialized[6]
stack_var float ret
serialized = "$E3, raw_be(x)"
string_to_variable(ret, serialized, 1)
return ret
}
/**
* Build a double using the binary info stored across two longs. It is assumed
* that the data is stored as per the IEEE754 standard.
*
* @param hi a long containg bits 63 - 32
* @param low a long containing bits 31 - 0
* @return a double built from the passed data
*/
define_function double math_build_double(long hi, long low)
{
stack_var char serialized[10] // For some reason the buffer
stack_var double ret // passed to string_to_variable()
serialized = "$E4, raw_be(hi), raw_be(low)" // has to have an extra trailing byte
string_to_variable(ret, serialized, 1)
return ret
}
/**
* Right shift (>>) a double 1 bit.
*
* @todo allow for shift by an arbitary number of bits
* @param x the double to shift
* @return the passed value >> 1
*/
define_function double math_rshift_double(double x)
{
stack_var long hi
stack_var long low
hi = math_double_high_to_bits(x)
low = math_double_low_to_bits(x)
low = low >> 1 + (hi & 1) << 15
hi = hi >> 1
return math_build_double(hi, low)
}
/**
* Left shift (<<) a double 1 bit.
*
* @todo allow for shift by an arbitary number of bits
* @param x the double to shift
* @return the passed value << 1
*/
define_function double math_lshift_double(double x)
{
stack_var long hi
stack_var long low
hi = math_double_high_to_bits(x)
low = math_double_low_to_bits(x)
hi = (hi & $7FFFFFFF) << 1 + (low & $80000000) >> 15
low = (low & $7FFFFFFF) << 1
return math_build_double(hi, low)
}
/**
* Returns true if the argument has no decimal component, otherwise returns
* false. +/-Inf and 0 will return true, subnormal and NaN's will return
* false.
*
* @param x the double to check
* @return a boolean, true if x is a mathematical integer
*/
define_function char is_int(double x)
{
stack_var char i
stack_var sinteger exp
stack_var long hi
stack_var long m
stack_var long mask
if (is_NaN(x)) {
return false
}
if (x >= MATH_TWO_52) {
return true
}
if (abs_value(x) < 1.0) {
return (abs_value(x) == 0)
}
hi = math_double_high_to_bits(x)
exp = type_cast((hi & $7FF00000) >> 20 - 1023)
if (exp > 20) {
m = math_double_low_to_bits(x)
} else {
m = hi & $FFFFF
}
for (i = type_cast(32 + (exp > 20) * 20 - exp); i; i--) {
mask = mask + 1 << (i - 1)
}
return (m & mask == 0)
}
/**
* Checks if a value is NaN.
*
* @param x a double to check
* @return a boolean, true is x is NaN
*/
define_function char is_NaN(double x)
{
stack_var long hi
hi = math_double_high_to_bits(x)
return (hi & $7FF00000) >> 20 == $7FF &&
(hi & $FFFFF || math_double_low_to_bits(x))
}
/**
* Checks if a value is either positive infinity or negative infinity.
*
* @param x a double to check
* @return a boolean, true is x is infinite
*/
define_function char is_infinite(double x)
{
stack_var long hi
hi = math_double_high_to_bits(x)
return (hi & $7FF00000) >> 20 == $7FF &&
!(hi & $FFFFF || math_double_low_to_bits(x))
}
/**
* Checks if a string value contains only a numeric value.
*
* @param a a string to check
* @return a boolean, true is a is numeric
* @todo support signed numbers
*/
define_function char is_numeric(char a[])
{
stack_var integer i
for (i = 1; i <= length_string(a); i++) {
if (!(a[i] >= $30 && a[i] <= $39)) {
return 0
}
}
return 1
}
/**
* Compares two numbers and return true if they are within MATH_PRECISION of
* each other.
*
* @param x a number to compare
* @param y another number to compare to x
* @return a boolean specifying if x and y are within MATH_PRECISION
* of each other
*/
define_function char math_near(double x, double y)
{
return abs_value(x - y) <= MATH_PRECISION
}
/**
* Returns the smallest (closest to negative infinity) long value that is not
* less than the argument and is equal to a mathematical integer.
*
* @param x the double to round
* @return a double containing the rounded number
*/
define_function double ceil(double x)
{
return -floor(-x)
}
/**
* Returns the largest (closest to positive infinity) long value that is not
* greater than the argument and is equal to a mathematical integer.
*
* @todo remove dependancy on type_cast'ing to a slong to allow for
* correct operation over all possible inputs
* @param x a double to round
* @return a double containing the rounded number
*/
define_function double floor(double x)
{
stack_var double tmp
stack_var slong ret
tmp = abs_value(x)
if (is_int(tmp)) {
return x
}
if (tmp < 1) {
if (x >= 0) {
return 0.0 * x
} else {
return -1.0
}
}
if (x < 0) {
ret = type_cast(x - 1.0)
} else {
ret = type_cast(x)
}
return ret
}
/**
* Rounds a flouting point number to it's closest whole number.
*
* @param x a double to round
* @return a double containing the rounded number
*/
define_function double round(double x)
{
return floor(x + 0.5)
}
/**
* Computes the remainder operation on two arguments as prescribed by the
* IEEE 754 standard.
*
* @param x a dividend
* @param y a divisor
* @return a double equal to x - (y Q), where Q is the quotient of
* x / y rounded to the nearest integer (if y = 0, NaN is
* returned
*/
define_function double IEEEremainder(double x, double y)
{
if (y == 0) {
return MATH_NaN
}
return x - y * round(x / y)
}
/**
* Returns a double value with a positive sign, greater than or equal to 0.0
* and less than 1.0.
*
* @return a pseudorandom double greater than or equal to 0.0 and
* less than 1.0
*/
define_function double random()
{
stack_var char i
stack_var long hi
stack_var long low
for (i = 32; i; i--) {
low = low + random_number(2) << (i - 1)
}
for (i = 20; i; i--) {
hi = hi + random_number(2) << (i - 1)
}
hi = hi + 1023 << 20
return math_build_double(hi, low) - 1
}
/**
* Calculate the square root of the passed number.
*
* This function takes a log base 2 approximation then iterates a Babylonian
* refinement until the answer is within the math libraries defined precision
* or exceeds 1000 steps of refinement.
*
* @todo re-write to allow for accurate (and faster) operation on
* small (< 1.0e-5) input values
* @param x the double to find the square root of
* @return a double containing the square root
*/
define_function double sqrt(double x)
{
stack_var long hi
stack_var long low
stack_var double i
stack_var double tmp
if (x < 0) {
return MATH_NaN
}
if (x == 0 ||
x == 1 ||
is_NaN(x) ||
is_infinite(x)) {
return x
}
tmp = math_rshift_double(x)
hi = 1 << 29 + math_double_high_to_bits(tmp) - 1 << 19
low = math_double_low_to_bits(tmp)
tmp = math_build_double(hi, low)
while (!math_near(tmp * tmp, x) && i < 1000) {
tmp = 0.5 * (tmp + x / tmp)
i++
}
return tmp
}
/**
* Approximate the inverse square root of the passed number.
*
* This method uses a integer shift and single Newton refinement aka Quake 3
* method. Original algorithm by Greg Walsh.
*
* @param x the double to find the inverse square root of
* @return a double containing an approximation of the inverse square root
*/
define_function double fast_inv_sqrt(double x)
{
stack_var long hi
stack_var long low
stack_var long t_hi
stack_var long t_low
stack_var double res
stack_var double tmp
tmp = math_rshift_double(x)
t_hi = math_double_high_to_bits(tmp)
t_low = math_double_low_to_bits(tmp)
hi = $5FE6EC85 - t_hi
if (t_low > $E7DE30DA) {
hi = hi - (t_low - $E7DE30DA)
low = 0
} else {
low = $E7DE30DA - t_low
}
res = math_build_double(hi, low)
return res * (1.5 - 0.5 * x * res * res)
}
/**
* Approximate the square root of the passed number based on the inverse square
* root algorithm in fast_inv_sqrt(x). This is MUCH faster than sqrt(x) and
* recommended over sqrt() for use anywhere a precise square root is not
* required. Error is approx +/-0.17%.
*
* @param x the double to find the square root of
* @return a double containing an approximation of the square root
*/
define_function double fast_sqrt(double x)
{
return x * fast_inv_sqrt(x)
}
/**
* Calcultate the logarithm of the passed number in the specified base.
*
* @param x the float to find the log of
* @param base the base to use
* @return a float containing the passed numbers logarithm
*/
define_function float math_log(float x, float base)
{
stack_var float tmp
stack_var integer int
stack_var float partial
stack_var float decimal
if (x < 1 && base < 1) {
return -1.0 // cannot compute
}
tmp = x + 0.0
while (tmp < 1) {
int = int - 1
tmp = tmp * base
}
while (tmp >= base) {
int = int + 1
tmp = tmp / base
}
partial = 0.5
tmp = tmp * tmp
while (!math_near(partial, 0)) {
if (tmp >= base) {
decimal = decimal + partial
tmp = tmp / base
}
partial = partial * 0.5
tmp = tmp * tmp
}
return int + decimal
}
/**
* Calcultate the natural logarithm of the passed number.
*
* @param x the float to find the natural log of
* @return a float containing the passed numbers log base e
*/
define_function float math_ln(float x)
{
return math_log(x, MATH_E)
}
/**
* Calcultate the binary logarithm of the passed number.
*
* @param x the float to find the natural log of
* @return a float containing the passed numbers log base 2
*/
define_function float math_log2(float x)
{
return math_log(x, 2)
}
/**
* Calcultate the base 10 logarithm of the passed number.
*
* @param x the float to find the natural log of
* @return a float containing the passed numbers log base 10
*/
define_function float math_log10(float x)
{
return math_log(x, 10)
}
/**
* Calcultate x raised to the n.
*
* @param x the float to find the natural log of
* @param n the power to raise x to
* @return a float containing the x^n
*/
define_function float math_power(float x, integer n)
{
stack_var float result
stack_var float base
stack_var integer exp
result = 1.0
base = x + 0.0
exp = n + 0
while (exp > 0) {
if (exp & 1) {
result = result * base
exp = exp - 1
}
base = base * base
exp = type_cast(round(exp * 0.5))
}
return result
}
/**
* Encode a decimal value as binary-coded decimal (BCD).
*
* @param x an integer to encode as BCD
* @return a long containing the BCD representation of x
*/
define_function long math_dec_to_bcd(integer x)
{
stack_var long tmp
stack_var char i
stack_var char j
for (i = 16; i; i--) {
for (j = 0; j < 5; j++) {
if ((tmp >> (4 * j) & $F) > 4) {
tmp = tmp + (3 << (4 * j))
}
}
tmp = tmp << 1 | (x >> (i - 1) & 1)
}
return tmp
}
/**
* Map a value within a set of original bounds to its equivalent given a
* secondady set of bound.
*
* @param x the float to map
* @param fromMin the original lower bound
* @param fomMax the original upper bound
* @param toMin the lower bound to map to
* @param toMax the upper bound to map to
* @return a float containing x mapped to its equivalent value within
* the new bounds
*/
define_function float math_map_range(float x, float fromMin, float fromMax,
float toMin, float toMax) {
return (x - fromMin) * (toMax - toMin) / (fromMax - fromMin) + toMin
}
define_start
{
MATH_NaN = math_build_double($7FFFFFFF, $FFFFFFFF)
MATH_POSITIVE_INFINITY = math_build_double($7FF00000, $00000000)
MATH_NEGATIVE_INFINITY = math_build_double($FFF00000, $00000000)
MATH_TWO_52 = 1 << 52
}
#end_if | NetLinx | 4 | KimBurgess/netlinx-common-libraries | math.axi | [
"MIT"
] |
size: 1024px 60px;
dpi: 96;
margin: 1em;
axis {
label-placement: linear-alignat(1 0.5);
limit: 0 16;
}
| CLIPS | 0 | asmuth-archive/travistest | test/examples/charts_reference_scale_layout_linear_alignat.clp | [
"Apache-2.0"
] |
import { IRouteComponentProps } from 'umi';
// only export isBrowser for user
export { isBrowser } from '{{{ SSRUtils }}}';
interface IParams<Params> extends Pick<IRouteComponentProps<Params>, 'match'> {
isServer: Boolean;
[k: string]: any;
}
export type IGetInitialProps<
T = any,
Params extends {
[K in keyof Params]?: string;
} = {}
> = (params: IParams<Params>) => Promise<T>;
| Smarty | 4 | Dolov/umi | packages/preset-built-in/src/plugins/features/ssr/templates/clientExports.tpl | [
"MIT"
] |
.bytecode 50.0
.class A
.super java/lang/Object
.method m()V
invokestatic T/a()V
invokestatic T/b()V
invokestatic T/c()I
pop
invokestatic T/d()I
pop
return
.limit locals -1
.limit stack -1
.end method
| Jasmin | 1 | Mrack/dex2jar | dex-tools/src/test/resources/weave/c-before.j | [
"Apache-2.0"
] |
$ write sys$output "*** TEST CALL ***"
$ on warning then continue
$ set verify
$ call label1 "This is P1"
$ call label1 /output=call.lis "This is P1"
$ type call.lis
$ delete call.lis /log
$
$label1: subroutine
$ write sys$output p1
$ exit
$ endsubroutine
$!
| Clean | 3 | MichelValentin/PC-DCL | examples/call.dcl | [
"BSD-3-Clause"
] |
%{--
- Copyright 2016 SimplifyOps, Inc. (http://simplifyops.com)
-
- 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.
--}%
<%@ page import="com.dtolabs.rundeck.plugins.ServiceNameConstants; com.dtolabs.rundeck.core.plugins.configuration.PropertyScope; com.dtolabs.rundeck.core.plugins.configuration.Description" %>
<g:if test="${orchestratorPlugins}">
<div class="form-group">
<div class="${labelColSize} control-label text-form-label">
<g:message code="scheduledExecution.property.orchestrator.label"/>
</div>
<g:set var="setOrchestrator" value="${params?.orchestratorId ?: scheduledExecution?.orchestrator?.type}"/>
<div class="${fieldColSize}">
<select name="orchestratorId" value="${setOrchestrator}" class="form-control">
<option name="" ${!setOrchestrator ? 'selected' : ''}></option>
<g:each in="${orchestratorPlugins}" var="plugin">
<option value="${plugin.name}" ${setOrchestrator == plugin.name ? 'selected' :
''}><stepplugin:message
service="Orchestrator"
name="${plugin.name}"
code="plugin.title"
default="${plugin.title ?: plugin.name}"/></option>
</g:each>
</select>
<span class="help-block">
<g:message code="scheduledExecution.property.orchestrator.description"/>
</span>
<g:each in="${orchestratorPlugins}" var="pluginDescription">
<g:set var="pluginName" value="${pluginDescription.name}"/>
<g:set var="prefix" value="${('orchestratorPlugin.'+ pluginName + '.config.')}"/>
<g:set var="definedNotif" value="${setOrchestrator == pluginName ? scheduledExecution?.orchestrator : null}"/>
<g:set var="definedConfig"
value="${params.orchestratorPlugin?.get(pluginName)?.config ?: definedNotif?.configuration}"/>
<span data-orchestrator="${pluginName}" style="${wdgt.styleVisible(if: setOrchestrator == pluginName ? true : false)}"
class="orchestratorPlugin">
<span class="text-info">
<g:render template="/scheduledExecution/description"
model="[description: stepplugin.messageText(
service: ServiceNameConstants.Orchestrator,
name: pluginName,
code: 'plugin.description',
default: pluginDescription.description
),
textCss : '',
mode : 'collapsed',
moreText : message(code: 'more.information'),
rkey : g.rkey()]"/>
</span>
<div>
<g:render template="/framework/pluginConfigPropertiesInputs" model="${[
service : ServiceNameConstants.Orchestrator,
provider : pluginDescription.name,
properties : pluginDescription?.properties,
report :null,
prefix :prefix,
values :definedConfig,
fieldnamePrefix :prefix,
origfieldnamePrefix:'orig.' + prefix,
allowedScope :PropertyScope.Instance
]}"/>
</div>
</span>
</g:each>
<g:javascript>jQuery(function () {
"use strict";
jQuery('[name="orchestratorId"]').on('change', function (d) {
jQuery('.orchestratorPlugin').hide();
var val = jQuery(this).val();
if (val) {
jQuery('.orchestratorPlugin[data-orchestrator="' + val+'"]').show();
}
});
});
</g:javascript>
</div>
</div>
</g:if> | Groovy Server Pages | 4 | kbens/rundeck | rundeckapp/grails-app/views/scheduledExecution/_editOrchestratorForm.gsp | [
"Apache-2.0"
] |
from libc cimport math
cimport cython
import numpy as np
cimport numpy as np
from libc.stdio cimport printf
np.import_array()
cdef extern from "numpy/npy_math.h":
float NPY_INFINITY
cdef float EPSILON_DBL = 1e-8
cdef float PERPLEXITY_TOLERANCE = 1e-5
cpdef np.ndarray[np.float32_t, ndim=2] _binary_search_perplexity(
np.ndarray[np.float32_t, ndim=2] sqdistances,
float desired_perplexity,
int verbose):
"""Binary search for sigmas of conditional Gaussians.
This approximation reduces the computational complexity from O(N^2) to
O(uN).
Parameters
----------
sqdistances : array-like, shape (n_samples, n_neighbors)
Distances between training samples and their k nearest neighbors.
When using the exact method, this is a square (n_samples, n_samples)
distance matrix. The TSNE default metric is "euclidean" which is
interpreted as squared euclidean distance.
desired_perplexity : float
Desired perplexity (2^entropy) of the conditional Gaussians.
verbose : int
Verbosity level.
Returns
-------
P : array, shape (n_samples, n_samples)
Probabilities of conditional Gaussian distributions p_i|j.
"""
# Maximum number of binary search steps
cdef long n_steps = 100
cdef long n_samples = sqdistances.shape[0]
cdef long n_neighbors = sqdistances.shape[1]
cdef int using_neighbors = n_neighbors < n_samples
# Precisions of conditional Gaussian distributions
cdef double beta
cdef double beta_min
cdef double beta_max
cdef double beta_sum = 0.0
# Use log scale
cdef double desired_entropy = math.log(desired_perplexity)
cdef double entropy_diff
cdef double entropy
cdef double sum_Pi
cdef double sum_disti_Pi
cdef long i, j, k, l
# This array is later used as a 32bit array. It has multiple intermediate
# floating point additions that benefit from the extra precision
cdef np.ndarray[np.float64_t, ndim=2] P = np.zeros(
(n_samples, n_neighbors), dtype=np.float64)
for i in range(n_samples):
beta_min = -NPY_INFINITY
beta_max = NPY_INFINITY
beta = 1.0
# Binary search of precision for i-th conditional distribution
for l in range(n_steps):
# Compute current entropy and corresponding probabilities
# computed just over the nearest neighbors or over all data
# if we're not using neighbors
sum_Pi = 0.0
for j in range(n_neighbors):
if j != i or using_neighbors:
P[i, j] = math.exp(-sqdistances[i, j] * beta)
sum_Pi += P[i, j]
if sum_Pi == 0.0:
sum_Pi = EPSILON_DBL
sum_disti_Pi = 0.0
for j in range(n_neighbors):
P[i, j] /= sum_Pi
sum_disti_Pi += sqdistances[i, j] * P[i, j]
entropy = math.log(sum_Pi) + beta * sum_disti_Pi
entropy_diff = entropy - desired_entropy
if math.fabs(entropy_diff) <= PERPLEXITY_TOLERANCE:
break
if entropy_diff > 0.0:
beta_min = beta
if beta_max == NPY_INFINITY:
beta *= 2.0
else:
beta = (beta + beta_max) / 2.0
else:
beta_max = beta
if beta_min == -NPY_INFINITY:
beta /= 2.0
else:
beta = (beta + beta_min) / 2.0
beta_sum += beta
if verbose and ((i + 1) % 1000 == 0 or i + 1 == n_samples):
print("[t-SNE] Computed conditional probabilities for sample "
"%d / %d" % (i + 1, n_samples))
if verbose:
print("[t-SNE] Mean sigma: %f"
% np.mean(math.sqrt(n_samples / beta_sum)))
return P
| Cython | 4 | MaiRajborirug/scikit-learn | sklearn/manifold/_utils.pyx | [
"BSD-3-Clause"
] |
record R { type t; }
class MyClass { }
class MyGenericClass { type t; }
proc check(param arg:bool) {
if !arg then
compilerError("check failed");
}
check(R == R);
check(R <= R);
check(isSubtype(R, R));
check(borrowed MyClass == borrowed MyClass);
check(borrowed MyClass <= borrowed MyClass);
check(borrowed MyClass != unmanaged MyClass);
check(borrowed MyClass != owned MyClass);
check(isSubtype(borrowed MyClass, borrowed MyClass));
check(MyClass == MyClass);
check(MyClass <= MyClass);
check(isSubtype(MyClass, MyClass));
check(borrowed MyClass != MyClass);
check(borrowed MyClass <= MyClass);
check(isSubtype(borrowed MyClass, MyClass));
check(owned MyClass != MyClass);
check(owned MyClass <= MyClass);
check(isSubtype(owned MyClass, MyClass));
check(borrowed MyGenericClass == borrowed MyGenericClass);
check(borrowed MyGenericClass <= borrowed MyGenericClass);
check(isSubtype(borrowed MyGenericClass, borrowed MyGenericClass));
check(MyGenericClass == MyGenericClass);
check(MyGenericClass <= MyGenericClass);
check(isSubtype(MyGenericClass, MyGenericClass));
check(borrowed MyGenericClass != MyGenericClass);
check(borrowed MyGenericClass <= MyGenericClass);
check(isSubtype(borrowed MyGenericClass, MyGenericClass));
| Chapel | 3 | jhh67/chapel | test/classes/delete-free/undecorated-generic/comparing-generic-types.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
#!/bin/csh
#cd $2
#cmsRun $1.cfg >& $1.log
setenv PROD $1
setenv SM $2
#echo "Coucou" $PROD $SM
setenv MAILBOX MailBox
rm -r -f ${PROD}/${SM}
echo "Create directory structure for ECAL module " ${SM}
mkdir ${PROD}/${SM}
mkdir ${PROD}/${SM}/Laser
mkdir ${PROD}/${SM}/Laser/Detected
mkdir ${PROD}/${SM}/Laser/Analyzed
mkdir ${PROD}/${SM}/Laser/Analyzed/Failed
mkdir ${PROD}/${SM}/TestPulse
mkdir ${PROD}/${SM}/TestPulse/Detected
mkdir ${PROD}/${SM}/TestPulse/Analyzed
mkdir ${PROD}/${SM}/TestPulse/Analyzed/Failed
mkdir ${PROD}/${SM}/Runs
#mkdir ${PROD}/${SM}/Pedestal
#mkdir ${PROD}/${SM}/Pedestal/Detected
#mkdir ${PROD}/${SM}/Pedestal/Analyzed
#mkdir ${PROD}/${SM}/Pedestal/Analyzed/Failed
#mkdir ${PROD}/${SM}/LED
#mkdir ${PROD}/${SM}/LED/Detected
#mkdir ${PROD}/${SM}/LED/Analyzed
#mkdir ${PROD}/${SM}/LED/Analyzed/Failed
| Tcsh | 4 | ckamtsikis/cmssw | CalibCalorimetry/EcalLaserAnalyzer/scripts/createDirs.csh | [
"Apache-2.0"
] |
name: hol-combin
version: 1.0
description: Interface between OpenTheory Standard Library and HOL4 combinTheory
author: Ramana Kumar <[email protected]>
license: GPL
show: "Data.Bool"
requires: bool
requires: function
requires: hol-bool
combin {
article: "HOL4combin.ot.art"
}
main {
import: combin
article: "../../combin/combin.ot.art"
}
| Isabelle | 3 | dwRchyngqxs/HOL | src/opentheory/compat/hol-combin.thy | [
"BSD-3-Clause"
] |
# Copyright 2021 The Google Research 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.
#!/bin/bash
set -e
set -x
virtualenv -p python3 .
source ./bin/activate
pip install -r norml/requirements.txt
wget -P norml/example_checkpoints/move_point_rotate_sparse/norml/ https://storage.googleapis.com/gresearch/norml/example_checkpoints/move_point_rotate_sparse/norml/all_weights.ckpt-991.data-00000-of-00001
wget -P norml/example_checkpoints/move_point_rotate_sparse/norml/ https://storage.googleapis.com/gresearch/norml/example_checkpoints/move_point_rotate_sparse/norml/all_weights.ckpt-991.index
wget -P norml/example_checkpoints/move_point_rotate_sparse/norml/ https://storage.googleapis.com/gresearch/norml/example_checkpoints/move_point_rotate_sparse/norml/all_weights.ckpt-991.meta
wget -P norml/example_checkpoints/move_point_rotate_sparse/norml/ https://storage.googleapis.com/gresearch/norml/example_checkpoints/move_point_rotate_sparse/norml/config.yaml
python -m norml.eval_maml --model_dir example_checkpoints/move_point_rotate_sparse/norml/all_weights.ckpt-991 --output_dir /usr/local/google/home/yxyang/temp --render=False --num_finetune_steps 1 --test_task_index 0 --eval_finetune=True
| Shell | 3 | deepneuralmachine/google-research | norml/run.sh | [
"Apache-2.0"
] |
% Simple Refinement Types
Simple Refinement Types
-----------------------
\begin{code}
module SimpleRefinements where
import Language.Haskell.Liquid.Prelude
\end{code}
Simple Refinement Types
-----------------------
We use special comments to give specifications,
as *refinement types*.
This type describes `Int` values that equal `0`.
\begin{code}
{-@ zero :: {v:Int | v = 0} @-}
zero :: Int
zero = 0
\end{code}
Refinements are *logical formulas*
----------------------------------
If
- refinement of `T1` **implies** refinement of `T2`
- `p1 => p2`
Then
- `T1` is a **subtype** of `T2`
- `{v:t | p1} <: {v:t | p2}`
Refinements are *logical formulas*
----------------------------------
For example, since
- `v = 0` *implies* `v >= 0`
Therefore
- `{v:Int | v = 0} <: {v:Int | v >= 0}`
Refinements are *logical formulas*
----------------------------------
\begin{code} So we can have a type for natural numbers: <br>
type Nat = {v:Int | v >= 0}
\end{code}
<br>
And, via SMT based subtyping LiquidHaskell verifies:
<br>
\begin{code}
{-@ zero' :: Nat @-}
zero' :: Int
zero' = 0
\end{code}
Lists: Universal Invariants
---------------------------
Constructors enable *universally quantified* invariants.
For example, we define a list:
\begin{code}
infixr `C`
data L a = N | C a (L a)
\end{code}
<br>
And specify that, *every element* in a list is non-negative:
\begin{code}
{-@ natList :: L Nat @-}
natList :: L Int
natList = 0 `C` 1 `C` 3 `C` N
\end{code}
<a href="http://goto.ucsd.edu:8090/index.html#?demo=HaskellSimpleRefinements.hs" target= "_blank">Demo:</a>
Lets see what happens if `natList` contained a negative number.
Refinement Function Types
-------------------------
Consider a `safeDiv` operator: <br>
\begin{code}
safeDiv :: Int -> Int -> Int
safeDiv x y = x `div` y
\end{code}
<br>
We can use refinements to specify a **precondition**: divisor is **non-zero** <br>
\begin{code}
{-@ safeDiv :: Int -> {v:Int | v != 0} -> Int @-}
\end{code}
<br>
<a href="http://goto.ucsd.edu:8090/index.html#?demo=HaskellSimpleRefinements.hs" target= "_blank">Demo:</a>
Lets see what happens if the preconditions cannot be
proven.
Dependent Function Types
------------------------
\begin{code} Consider a list indexing function:
(!!) :: L a -> Int -> a
(C x _) !! 0 = x
(C _ xs)!! n = xs!!(n-1)
_ !! _ = liquidError "This should not happen!"
\end{code}
<br>
We desire a **precondition** that index `i` be between `0` and **list length**.
We use **measures** to talk about the length of a list in **logic**.
| Literate Haskell | 5 | curiousleo/liquidhaskell | docs/slides/niki/lhs/SimpleRefinements.lhs | [
"MIT",
"BSD-3-Clause"
] |