view runtime/vimlogo.eps @ 32936:c517845bd10e v9.0.1776

patch 9.0.1776: No support for stable Python 3 ABI Commit: https://github.com/vim/vim/commit/c13b3d1350b60b94fe87f0761ea31c0e7fb6ebf3 Author: Yee Cheng Chin <ychin.git@gmail.com> Date: Sun Aug 20 21:18:38 2023 +0200 patch 9.0.1776: No support for stable Python 3 ABI Problem: No support for stable Python 3 ABI Solution: Support Python 3 stable ABI Commits: 1) Support Python 3 stable ABI to allow mixed version interoperatbility Vim currently supports embedding Python for use with plugins, and the "dynamic" linking option allows the user to specify a locally installed version of Python by setting `pythonthreedll`. However, one caveat is that the Python 3 libs are not binary compatible across minor versions, and mixing versions can potentially be dangerous (e.g. let's say Vim was linked against the Python 3.10 SDK, but the user sets `pythonthreedll` to a 3.11 lib). Usually, nothing bad happens, but in theory this could lead to crashes, memory corruption, and other unpredictable behaviors. It's also difficult for the user to tell something is wrong because Vim has no way of reporting what Python 3 version Vim was linked with. For Vim installed via a package manager, this usually isn't an issue because all the dependencies would already be figured out. For prebuilt Vim binaries like MacVim (my motivation for working on this), AppImage, and Win32 installer this could potentially be an issue as usually a single binary is distributed. This is more tricky when a new Python version is released, as there's a chicken-and-egg issue with deciding what Python version to build against and hard to keep in sync when a new Python version just drops and we have a mix of users of different Python versions, and a user just blindly upgrading to a new Python could lead to bad interactions with Vim. Python 3 does have a solution for this problem: stable ABI / limited API (see https://docs.python.org/3/c-api/stable.html). The C SDK limits the API to a set of functions that are promised to be stable across versions. This pull request adds an ifdef config that allows us to turn it on when building Vim. Vim binaries built with this option should be safe to freely link with any Python 3 libraies without having the constraint of having to use the same minor version. Note: Python 2 has no such concept and this doesn't change how Python 2 integration works (not that there is going to be a new version of Python 2 that would cause compatibility issues in the future anyway). --- Technical details: ====== The stable ABI can be accessed when we compile with the Python 3 limited API (by defining `Py_LIMITED_API`). The Python 3 code (in `if_python3.c` and `if_py_both.h`) would now handle this and switch to limited API mode. Without it set, Vim will still use the full API as before so this is an opt-in change. The main difference is that `PyType_Object` is now an opaque struct that we can't directly create "static types" out of, and we have to create type objects as "heap types" instead. This is because the struct is not stable and changes from version to version (e.g. 3.8 added a `tp_vectorcall` field to it). I had to change all the types to be allocated on the heap instead with just a pointer to them. Other functions are also simply missing in limited API, or they are introduced too late (e.g. `PyUnicode_AsUTF8AndSize` in 3.10) to it that we need some other ways to do the same thing, so I had to abstract a few things into macros, and sometimes re-implement functions like `PyObject_NEW`. One caveat is that in limited API, `OutputType` (used for replacing `sys.stdout`) no longer inherits from `PyStdPrinter_Type` which I don't think has any real issue other than minor differences in how they convert to a string and missing a couple functions like `mode()` and `fileno()`. Also fixed an existing bug where `tp_basicsize` was set incorrectly for `BufferObject`, `TabListObject, `WinListObject`. Technically, there could be a small performance drop, there is a little more indirection with accessing type objects, and some APIs like `PyUnicode_AsUTF8AndSize` are missing, but in practice I didn't see any difference, and any well-written Python plugin should try to avoid excessing callbacks to the `vim` module in Python anyway. I only tested limited API mode down to Python 3.7, which seemes to compile and work fine. I haven't tried earlier Python versions. 2) Fix PyIter_Check on older Python vers / type##Ptr unused warning For PyIter_Check, older versions exposed them as either macros (used in full API), or a function (for use in limited API). A previous change exposed PyIter_Check to the dynamic build because Python just moved it to function-only in 3.10 anyway. Because of that, just make sure we always grab the function in dynamic builds in earlier versions since that's what Python eventually did anyway. 3) Move Py_LIMITED_API define to configure script Can now use --with-python-stable-abi flag to customize what stable ABI version to target. Can also use an env var to do so as well. 4) Show +python/dyn-stable in :version, and allow has() feature query Not sure if the "/dyn-stable" suffix would break things, or whether we should do it another way. Or just don't show it in version and rely on has() feature checking. 5) Documentation first draft. Still need to implement v:python3_version 6) Fix PyIter_Check build breaks when compiling against Python 3.8 7) Add CI coverage stable ABI on Linux/Windows / make configurable on Windows This adds configurable options for Windows make files (both MinGW and MSVC). CI will also now exercise both traditional full API and stable ABI for Linux and Windows in the matrix for coverage. Also added a "dynamic" option to Linux matrix as a drive-by change to make other scripting languages like Ruby / Perl testable under both static and dynamic builds. 8) Fix inaccuracy in Windows docs Python's own docs are confusing but you don't actually want to use `python3.dll` for the dynamic linkage. 9) Add generated autoconf file 10) Add v:python3_version support This variable indicates the version of Python3 that Vim was built against (PY_VERSION_HEX), and will be useful to check whether the Python library you are loading in dynamically actually fits it. When built with stable ABI, it will be the limited ABI version instead (`Py_LIMITED_API`), which indicates the minimum version of Python 3 the user should have, rather than the exact match. When stable ABI is used, we won't be exposing PY_VERSION_HEX in this var because it just doesn't seem necessary to do so (the whole point of stable ABI is the promise that it will work across versions), and I don't want to confuse the user with too many variables. Also, cleaned up some documentation, and added help tags. 11) Fix Python 3.7 compat issues Fix a couple issues when using limited API < 3.8 - Crash on exit: In Python 3.7, if a heap-allocated type is destroyed before all instances are, it would cause a crash later. This happens when we destroyed `OptionsType` before calling `Py_Finalize` when using the limited API. To make it worse, later versions changed the semantics and now each instance has a strong reference to its own type and the recommendation has changed to have each instance de-ref its own type and have its type in GC traversal. To avoid dealing with these cross-version variations, we just don't free the heap type. They are static types in non-limited-API anyway and are designed to last through the entirety of the app, and we also don't restart the Python runtime and therefore do not need it to have absolutely 0 leaks. See: - https://docs.python.org/3/whatsnew/3.8.html#changes-in-the-c-api - https://docs.python.org/3/whatsnew/3.9.html#changes-in-the-c-api - PyIter_Check: This function is not provided in limited APIs older than 3.8. Previously I was trying to mock it out using manual PyType_GetSlot() but it was brittle and also does not actually work properly for static types (it will generate a Python error). Just return false. It does mean using limited API < 3.8 is not recommended as you lose the functionality to handle iterators, but from playing with plugins I couldn't find it to be an issue. - Fix loading of PyIter_Check so it will be done when limited API < 3.8. Otherwise loading a 3.7 Python lib will fail even if limited API was specified to use it. 12) Make sure to only load `PyUnicode_AsUTF8AndSize` in needed in limited API We don't use this function unless limited API >= 3.10, but we were loading it regardless. Usually it's ok in Unix-like systems where Python just has a single lib that we load from, but in Windows where there is a separate python3.dll this would not work as the symbol would not have been exposed in this more limited DLL file. This makes it much clearer under what condition is this function needed. closes: #12032 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Sun, 20 Aug 2023 21:30:04 +0200
parents 9521463d4fc1
children
line wrap: on
line source

%!PS-Adobe-3.0 EPSF-3.0
%%For: 
%%Title: 
%%Creator: Scribus1.4.2
%%Pages: 1
%%BoundingBox: 0 0 282 282
%%HiResBoundingBox: 0 0 282 282
%%LanguageLevel: 3
%%EndComments
%%BeginProlog
/Scribusdict 100 dict def
Scribusdict begin
/sp {showpage} bind def
/oldsetgray /setgray load def
/cmyk {setcmykcolor} def
/m {moveto} bind def
/l {lineto} bind def
/li {lineto} bind def
/cu {curveto} bind def
/cl {closepath} bind def
/gs {gsave} bind def
/gr {grestore} bind def
/tr {translate} bind def
/ro {rotate} bind def
/sh {show} bind def
/shg {setcmykcolor moveto glyphshow} def
/shgsp {moveto glyphshow} def
/sc {scale} bind def
/se {selectfont} bind def
/sf {setfont} bind def
/sw {setlinewidth} bind def
/f  {findfont} bind def
/fi {fill} bind def
/st {stroke} bind def
/shgf {gs dup scale begin cvx exec fill end gr} bind def
/shgs {gs dup 1 exch div currentlinewidth mul sw dup scale
       begin cvx exec st end gr} bind def
/bEPS {
    /b4_Inc_state save def
    /dict_count countdictstack def
    /op_count count 1 sub def
    userdict begin
    /showpage { } def
    0 setgray 0 setlinecap
    1 setlinewidth 0 setlinejoin
    10 setmiterlimit [ ] 0 setdash newpath
    /languagelevel where
    {pop languagelevel
    1 ne
    {false setstrokeadjust false setoverprint
    } if } if } bind def
/eEPS { count op_count sub {pop} repeat
    countdictstack dict_count sub {end} repeat
    b4_Inc_state restore } bind def
    end
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%PageOrientation: Portrait
Scribusdict begin
save
/DeviceCMYK setcolorspace
0 0 tr
0 0 m
282 0 li
282 282 li
0 282 li cl clip newpath
gs
0.708406 281.428 m
281.58 281.428 li
281.58 0.556 li
0.708406 0.556 li
0.708406 281.428 li
cl
eoclip newpath
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
0.816406 281.32 tr
280.656 -138.888 m
138.888 0 li
0 -141.696 li
138.888 -280.656 li
280.656 -138.888 li
cl
0 0 0 1 cmyk eofill
280.656 -138.888 m
138.888 0 li
0 -141.696 li
138.888 -280.656 li
280.656 -138.888 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
139.704 142.432 tr
127.584 0 m
136.08 0 li
0 -136.08 li
0 -127.584 li
127.584 0 li
cl
0.6 0 0.4 0.580392 cmyk eofill
127.584 0 m
136.08 0 li
0 -136.08 li
0 -127.584 li
127.584 0 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
6.50391 139.624 tr
0 0 m
8.49609 0 li
133.2 -124.776 li
133.2 -133.272 li
0 0 li
cl
0.6 0 0.4 0.509804 cmyk eofill
0 0 m
8.49609 0 li
133.2 -124.776 li
133.2 -133.272 li
0 0 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
6.50391 275.632 tr
133.2 -8.42384 m
133.2 0 li
0 -136.008 li
8.49609 -136.008 li
133.2 -8.42384 li
cl
0.6 0 0.4 0 cmyk eofill
133.2 -8.42384 m
133.2 0 li
0 -136.008 li
8.49609 -136.008 li
133.2 -8.42384 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
139.704 275.632 tr
0 0 m
0 -8.42384 li
127.584 -133.2 li
136.08 -133.2 li
0 0 li
cl
0.729412 0 0.988235 0 cmyk eofill
0 0 m
0 -8.42384 li
127.584 -133.2 li
136.08 -133.2 li
0 0 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
15 267.208 tr
124.704 -252.36 m
252.288 -124.776 li
124.704 0 li
0 -127.584 li
124.704 -252.36 li
cl
0.6 0 0.4 0.4 cmyk eofill
124.704 -252.36 m
252.288 -124.776 li
124.704 0 li
0 -127.584 li
124.704 -252.36 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
18.8164 270.016 tr
147.384 -31.1758 m
155.88 -39.7431 li
97.2716 -99.2156 li
97.2716 -39.7431 li
102.96 -39.7431 li
111.456 -31.1758 li
111.456 -8.5674 li
102.96 0 li
8.4951 0 li
0 -8.5674 li
0 -31.1758 li
8.4951 -39.7431 li
15.1191 -39.7431 li
15.1191 -232.488 li
25.4873 -240.984 li
54.792 -240.984 li
257.904 -31.1758 li
257.904 -8.5674 li
249.408 0 li
156.816 0 li
147.384 -8.5674 li
147.384 -31.1758 li
cl
0 0 0 1 cmyk eofill
147.384 -31.1758 m
155.88 -39.7431 li
97.2716 -99.2156 li
97.2716 -39.7431 li
102.96 -39.7431 li
111.456 -31.1758 li
111.456 -8.5674 li
102.96 0 li
8.4951 0 li
0 -8.5674 li
0 -31.1758 li
8.4951 -39.7431 li
15.1191 -39.7431 li
15.1191 -232.488 li
25.4873 -240.984 li
54.792 -240.984 li
257.904 -31.1758 li
257.904 -8.5674 li
249.408 0 li
156.816 0 li
147.384 -8.5674 li
147.384 -31.1758 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
24.4316 264.4 tr
5.6885 -28.4404 m
0 -22.752 li
0 -5.7608 li
5.6885 -0.0723 li
94.5364 0 li
100.152 -5.7608 li
94.5364 -8.4961 li
91.6564 -5.7608 li
5.6885 -19.8721 li
5.6885 -28.4404 li
cl
0 0 0 0 cmyk eofill
5.6885 -28.4404 m
0 -22.752 li
0 -5.7608 li
5.6885 -0.0723 li
94.5364 0 li
100.152 -5.7608 li
94.5364 -8.4961 li
91.6564 -5.7608 li
5.6885 -19.8721 li
5.6885 -28.4404 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
40.4883 241.648 tr
6.624 -206.928 m
0 -201.24 li
0 -5.6162 li
6.624 0 li
6.624 -206.928 li
cl
0 0 0 0 cmyk eofill
6.624 -206.928 m
0 -201.24 li
0 -5.6162 li
6.624 0 li
6.624 -206.928 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
100.032 241.648 tr
88.848 -5.6884 m
94.536 0 li
94.536 -11.3759 li
0 -107.712 li
10.44 -85.0324 li
88.848 -5.6884 li
cl
0 0 0 0 cmyk eofill
88.848 -5.6884 m
94.536 0 li
94.536 -11.3759 li
0 -107.712 li
10.44 -85.0324 li
88.848 -5.6884 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
30.1201 247.336 tr
18.9356 -2.8798 m
16.9922 -5.6875 li
10.3682 -11.3759 li
0 -11.3759 li
0 0 li
18.9356 -2.8798 li
cl
0 0 0 0.501961 cmyk eofill
18.9356 -2.8798 m
16.9922 -5.6875 li
10.3682 -11.3759 li
0 -11.3759 li
0 0 li
18.9356 -2.8798 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
100.032 258.64 tr
10.44 -22.6796 m
10.44 -102.024 li
0 -124.632 li
0 -16.9199 li
16.056 -16.9199 li
18.936 -14.1113 li
16.056 0 li
24.552 0 li
24.552 -16.9912 li
18.936 -22.6796 li
10.44 -22.6796 li
cl
0 0 0 0.501961 cmyk eofill
10.44 -22.6796 m
10.44 -102.024 li
0 -124.632 li
0 -16.9199 li
16.056 -16.9199 li
18.936 -14.1113 li
16.056 0 li
24.552 0 li
24.552 -16.9912 li
18.936 -22.6796 li
10.44 -22.6796 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
171.888 264.328 tr
5.616 -28.3681 m
0 -22.6797 li
0 -5.6885 li
6.552 0 li
92.592 0 li
99.216 -5.6885 li
89.712 -14.1845 li
5.616 -19.7998 li
5.616 -28.3681 li
cl
0 0 0 0 cmyk eofill
5.616 -28.3681 m
0 -22.6797 li
0 -5.6885 li
6.552 0 li
92.592 0 li
99.216 -5.6885 li
89.712 -14.1845 li
5.616 -19.7998 li
5.616 -28.3681 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
47.1123 258.64 tr
223.992 -16.9912 m
24.5518 -223.92 li
0 -223.92 li
0 -215.424 li
18 -215.424 li
217.368 -11.3037 li
214.488 0 li
223.992 0 li
223.992 -16.9912 li
cl
0 0 0 0.501961 cmyk eofill
223.992 -16.9912 m
24.5518 -223.92 li
0 -223.92 li
0 -215.424 li
18 -215.424 li
217.368 -11.3037 li
214.488 0 li
223.992 0 li
223.992 -16.9912 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
177.504 247.336 tr
18.936 -2.8798 m
16.992 -5.6875 li
11.376 -11.3759 li
0 -11.3759 li
0 0 li
18.936 -2.8798 li
cl
0 0 0 0.501961 cmyk eofill
18.936 -2.8798 m
16.992 -5.6875 li
11.376 -11.3759 li
0 -11.3759 li
0 0 li
18.936 -2.8798 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
30.1201 258.712 tr
69.9119 -124.704 m
69.9119 -16.9922 li
85.9679 -16.9922 li
88.8479 -14.1836 li
88.8479 -2.8076 li
85.9679 0 li
2.8076 0 li
0 -2.8076 li
0 -14.1836 li
2.8076 -16.9922 li
16.9922 -16.9922 li
16.9922 -215.496 li
20.6641 -218.304 li
36.8643 -218.304 li
235.296 -11.376 li
235.296 -3.2402 li
232.416 0 li
150.264 0 li
147.384 -2.8076 li
147.384 -14.2558 li
150.264 -17.0635 li
164.448 -17.0635 li
164.448 -28.4394 li
69.9119 -124.704 li
cl
0 0 0 0.2 cmyk eofill
69.9119 -124.704 m
69.9119 -16.9922 li
85.9679 -16.9922 li
88.8479 -14.1836 li
88.8479 -2.8076 li
85.9679 0 li
2.8076 0 li
0 -2.8076 li
0 -14.1836 li
2.8076 -16.9922 li
16.9922 -16.9922 li
16.9922 -215.496 li
20.6641 -218.304 li
36.8643 -218.304 li
235.296 -11.376 li
235.296 -3.2402 li
232.416 0 li
150.264 0 li
147.384 -2.8076 li
147.384 -14.2558 li
150.264 -17.0635 li
164.448 -17.0635 li
164.448 -28.4394 li
69.9119 -124.704 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
145.896 139.552 tr
5.688 -5.688 m
12.312 0 li
29.304 0 li
34.056 -5.688 li
28.368 -22.68 li
21.816 -28.368 li
4.824 -28.368 li
0 -22.68 li
5.688 -5.688 li
cl
0 0 0 1 cmyk eofill
5.688 -5.688 m
12.312 0 li
29.304 0 li
34.056 -5.688 li
28.368 -22.68 li
21.816 -28.368 li
4.824 -28.368 li
0 -22.68 li
5.688 -5.688 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
157.272 108.376 tr
0 -68.04 m
17.064 -17.064 li
11.376 -17.064 li
17.064 0 li
42.48 0 li
48.168 -5.688 li
51.984 -5.688 li
57.6 0 li
76.536 0 li
82.224 -5.688 li
85.968 -5.688 li
91.656 0 li
112.392 0 li
119.952 -11.376 li
107.568 -51.696 li
113.184 -51.696 li
107.712 -68.04 li
73.656 -68.04 li
86.976 -28.368 li
78.48 -28.368 li
70.632 -51.552 li
76.248 -51.552 li
70.92 -68.04 li
36.864 -68.04 li
50.112 -28.368 li
41.616 -28.368 li
33.696 -51.696 li
39.384 -51.696 li
34.056 -68.04 li
0 -68.04 li
cl
0 0 0 1 cmyk eofill
0 -68.04 m
17.064 -17.064 li
11.376 -17.064 li
17.064 0 li
42.48 0 li
48.168 -5.688 li
51.984 -5.688 li
57.6 0 li
76.536 0 li
82.224 -5.688 li
85.968 -5.688 li
91.656 0 li
112.392 0 li
119.952 -11.376 li
107.568 -51.696 li
113.184 -51.696 li
107.712 -68.04 li
73.656 -68.04 li
86.976 -28.368 li
78.48 -28.368 li
70.632 -51.552 li
76.248 -51.552 li
70.92 -68.04 li
36.864 -68.04 li
50.112 -28.368 li
41.616 -28.368 li
33.696 -51.696 li
39.384 -51.696 li
34.056 -68.04 li
0 -68.04 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
164.832 102.688 tr
102.24 0 m
106.632 -6.264 li
92.664 -51.048 li
98.28 -51.048 li
96.408 -56.664 li
73.728 -56.664 li
86.976 -16.992 li
67.104 -16.992 li
55.8 -51.048 li
61.416 -51.048 li
59.544 -56.664 li
36.864 -56.664 li
50.112 -16.992 li
30.24 -16.992 li
18.936 -51.048 li
24.624 -51.048 li
22.68 -56.664 li
0 -56.664 li
17.064 -5.688 li
11.376 -5.688 li
13.248 0 li
34.056 0 li
39.744 -5.688 li
45.36 -5.688 li
51.048 0 li
68.04 0 li
73.728 -5.688 li
79.416 -5.688 li
85.104 0 li
102.24 0 li
cl
0 0 0 0.2 cmyk eofill
102.24 0 m
106.632 -6.264 li
92.664 -51.048 li
98.28 -51.048 li
96.408 -56.664 li
73.728 -56.664 li
86.976 -16.992 li
67.104 -16.992 li
55.8 -51.048 li
61.416 -51.048 li
59.544 -56.664 li
36.864 -56.664 li
50.112 -16.992 li
30.24 -16.992 li
18.936 -51.048 li
24.624 -51.048 li
22.68 -56.664 li
0 -56.664 li
17.064 -5.688 li
11.376 -5.688 li
13.248 0 li
34.056 0 li
39.744 -5.688 li
45.36 -5.688 li
51.048 0 li
68.04 0 li
73.728 -5.688 li
79.416 -5.688 li
85.104 0 li
102.24 0 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
120.408 108.376 tr
51.048 0 m
33.696 -51.624 li
39.6 -51.624 li
33.984 -68.04 li
0 -68.04 li
16.992 -17.064 li
11.304 -17.064 li
51.048 0 li
cl
11.304 -17.064 m
16.992 0 li
51.048 0 li
11.304 -17.064 li
cl
0 0 0 1 cmyk eofill
51.048 0 m
33.696 -51.624 li
39.6 -51.624 li
33.984 -68.04 li
0 -68.04 li
16.992 -17.064 li
11.304 -17.064 li
51.048 0 li
cl
11.304 -17.064 m
16.992 0 li
51.048 0 li
11.304 -17.064 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
127.968 102.688 tr
22.68 -56.664 m
24.552 -51.048 li
18.864 -51.048 li
35.928 0 li
12.312 0 li
10.368 -5.688 li
16.992 -5.688 li
0 -56.664 li
22.68 -56.664 li
cl
0 0 0 0.2 cmyk eofill
22.68 -56.664 m
24.552 -51.048 li
18.864 -51.048 li
35.928 0 li
12.312 0 li
10.368 -5.688 li
16.992 -5.688 li
0 -56.664 li
22.68 -56.664 li
cl
0 0 0 1 cmyk st
gr
gs
0.216 sw
0 setlinecap
0 setlinejoin
[] 0 setdash
152.52 133.864 tr
16.992 -14.184 m
20.808 -2.808 li
18.936 0 li
7.56 0 li
3.816 -2.808 li
0 -14.184 li
1.944 -16.992 li
13.32 -16.992 li
16.992 -14.184 li
cl
0 0 0 0.2 cmyk eofill
16.992 -14.184 m
20.808 -2.808 li
18.936 0 li
7.56 0 li
3.816 -2.808 li
0 -14.184 li
1.944 -16.992 li
13.32 -16.992 li
16.992 -14.184 li
cl
0 0 0 1 cmyk st
gr
gr
%%PageTrailer
restore
gs
gr
sp
end
%%Trailer
%%EOF